mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
bef5a01b31
Instead of calling before_create, after_build, after_create, or after_stub, you can now call: before(:create) {|instance| instance.name = "overridden!" } after(:create) {|instance| instance.name = "overridden!" } after(:build) {|instance| instance.name = "overridden!" } after(:stub) {|instance| instance.name = "overridden!" } Additionally, you can declare callbacks longhand: callback(:after_stub) {|instance| instance.name = "overridden!" } This allows for custom callbacks to be defined: callback(:custom_callback) {|instance| instance.name = "overridden!" } Which can then be used from a custom strategy: class CustomStrategy def association(runner); end def result(evaluation) evaluation.object.tap do |instance| evaluation.notify(:custom_callback, instance) end end end FactoryGirl.register_strategy(:custom, CustomStrategy) This would allow for calling: FactoryGirl.custom(:user) Which would return the user instance but execute the :custom_callback callback on the user instance first.
184 lines
4.4 KiB
Ruby
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
|
|
expect {
|
|
FactoryGirl.modify do
|
|
factory :unknown_factory
|
|
end
|
|
}.to raise_error(ArgumentError)
|
|
end
|
|
end
|