1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/spec/acceptance/transient_attributes_spec.rb
Joshua Clayton dc32fd69e8 Change syntax for ignoring attributes to use block syntax instead of
calling ignore on individual declarations.

Old syntax:

    factory :user do
      rockstar(true).ignore
      four { 2 + 2 }.ignore

      name { "John Doe#{" - Rockstar" if rockstar}" }
    end

New syntax:

    factory :user do
      ignore do
        rockstar true
        four     { 2 + 2 }
      end

      name { "John Doe#{" - Rockstar" if rockstar}" }
    end
2011-10-09 16:46:57 -04:00

110 lines
3.1 KiB
Ruby

require "spec_helper"
describe "transient attributes" do
before do
define_model("User", :name => :string, :email => :string)
FactoryGirl.define do
sequence(:name) {|n| "John #{n}" }
factory :user do
ignore do
four { 2 + 2 }
rockstar true
upcased false
end
name { "#{FactoryGirl.generate(:name)}#{" - Rockstar" if rockstar}" }
email { "#{name.downcase}#{four}@example.com" }
after_create do |user, proxy|
user.name.upcase! if proxy.upcased
end
end
end
end
context "returning attributes for a factory" do
subject { FactoryGirl.attributes_for(:user, :rockstar => true) }
it { should_not have_key(:four) }
it { should_not have_key(:rockstar) }
it { should_not have_key(:upcased) }
it { should have_key(:name) }
it { should have_key(:email) }
end
context "with a transient variable assigned" do
let(:rockstar) { FactoryGirl.create(:user, :rockstar => true, :four => "1234") }
let(:rockstar_with_name) { FactoryGirl.create(:user, :name => "Jane Doe", :rockstar => true) }
let(:upcased_rockstar) { FactoryGirl.create(:user, :rockstar => true, :upcased => true) }
let(:groupie) { FactoryGirl.create(:user, :rockstar => false) }
it "generates the correct attributes on a rockstar" do
rockstar.name.should == "John 1 - Rockstar"
rockstar.email.should == "john 1 - rockstar1234@example.com"
end
it "generates the correct attributes on an upcased rockstar" do
upcased_rockstar.name.should == "JOHN 1 - ROCKSTAR"
upcased_rockstar.email.should == "john 1 - rockstar4@example.com"
end
it "generates the correct attributes on a groupie" do
groupie.name.should == "John 1"
groupie.email.should == "john 14@example.com"
end
it "generates the correct attributes on a rockstar with a name" do
rockstar_with_name.name.should == "Jane Doe"
rockstar_with_name.email.should == "jane doe4@example.com"
end
end
context "without transient variables assigned" do
let(:rockstar) { FactoryGirl.create(:user) }
it "uses the default value of the attribute" do
rockstar.name.should == "John 1 - Rockstar"
end
end
end
describe "deprecated way of ignoring attributes" do
before do
define_model("User", :name => :string)
FactoryGirl.define do
factory :user do
rockstar(false).ignore
name { "John Doe#{" Rockstar" if rockstar}" }
end
end
end
it "assigns attributes correctly" do
FactoryGirl.build(:user, :rockstar => true).name.should == "John Doe Rockstar"
FactoryGirl.build(:user).name.should == "John Doe"
end
end
describe "transient sequences" do
before do
define_model("User", :name => :string)
FactoryGirl.define do
factory :user do
ignore do
sequence(:counter)
end
name { "John Doe #{counter}" }
end
end
end
it "increments sequences correctly" do
FactoryGirl.build(:user).name.should == "John Doe 1"
FactoryGirl.build(:user).name.should == "John Doe 2"
end
end