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/modify_factories_spec.rb
Joshua Clayton 7fdf1a8858 Registries are named
This allows for easier debugging when code attempts to access traits,
sequences, or factories and doesn't find what it was looking for.

Closes #212
2011-10-15 02:01:16 -04:00

184 lines
4.4 KiB
Ruby

require "spec_helper"
describe "modifying factories" do
include FactoryGirl::Syntax::Methods
before do
define_model('User', :name => :string, :admin => :boolean, :email => :string, :login => :string)
FactoryGirl.define do
sequence(:email) {|n| "user#{n}@example.com" }
factory :user do
email
after_create do |user|
user.login = user.name.upcase if user.name
end
factory :admin do
admin true
end
end
end
end
context "simple modification" do
before do
FactoryGirl.modify do
factory :user do
name "Great User"
end
end
end
subject { create(:user) }
its(:name) { should == "Great User" }
its(:login) { should == "GREAT USER" }
it "doesn't allow the factory to be subsequently defined" do
expect do
FactoryGirl.define { factory :user }
end.to raise_error(FactoryGirl::DuplicateDefinitionError, "Factory already registered: user")
end
it "does allow the factory to be subsequently modified" do
FactoryGirl.modify do
factory :user do
name "Overridden again!"
end
end
create(:user).name.should == "Overridden again!"
end
end
context "adding callbacks" do
before do
FactoryGirl.modify do
factory :user do
name "Great User"
after_create do |user|
user.name = user.name.downcase
user.login = nil
end
end
end
end
subject { create(:user) }
its(:name) { should == "great user" }
its(:login) { should be_nil }
end
context "reusing traits" do
before do
FactoryGirl.define do
trait :rockstar do
name "Johnny Rockstar!!!"
end
end
FactoryGirl.modify do
factory :user do
rockstar
email { "#{name}@example.com" }
end
end
end
subject { create(:user) }
its(:name) { should == "Johnny Rockstar!!!" }
its(:email) { should == "Johnny Rockstar!!!@example.com" }
its(:login) { should == "JOHNNY ROCKSTAR!!!" }
end
context "redefining attributes" do
before do
FactoryGirl.modify do
factory :user do
email { "#{name}-modified@example.com" }
name "Great User"
end
end
end
context "creating user" do
context "without overrides" do
subject { create(:user) }
its(:name) { should == "Great User" }
its(:email) { should == "Great User-modified@example.com" }
end
context "overriding dynamic attributes" do
subject { create(:user, :email => "perfect@example.com") }
its(:name) { should == "Great User" }
its(:email) { should == "perfect@example.com" }
end
context "overriding static attributes" do
subject { create(:user, :name => "wonderful") }
its(:name) { should == "wonderful" }
its(:email) { should == "wonderful-modified@example.com" }
end
end
context "creating admin" do
context "without overrides" do
subject { create(:admin) }
its(:name) { should == "Great User" }
its(:email) { should == "Great User-modified@example.com" }
its(:admin) { should be_true }
end
context "overriding dynamic attributes" do
subject { create(:admin, :email => "perfect@example.com") }
its(:name) { should == "Great User" }
its(:email) { should == "perfect@example.com" }
its(:admin) { should be_true }
end
context "overriding static attributes" do
subject { create(:admin, :name => "wonderful") }
its(:name) { should == "wonderful" }
its(:email) { should == "wonderful-modified@example.com" }
its(:admin) { should be_true }
end
end
end
it "doesn't overwrite already defined child's attributes" do
FactoryGirl.modify do
factory :user do
admin false
end
end
create(:admin).should be_admin
end
it "allows for overriding child classes" do
FactoryGirl.modify do
factory :admin do
admin false
end
end
create(:admin).should_not be_admin
end
it "raises an exception if the factory was not defined before" do
lambda {
FactoryGirl.modify do
factory :unknown_factory
end
}.should raise_error(ArgumentError)
end
end