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/traits_spec.rb

801 lines
21 KiB
Ruby
Raw Normal View History

2011-08-12 16:16:17 -04:00
describe "an instance generated by a factory with multiple traits" do
before do
2011-08-12 10:35:41 -04:00
define_model("User",
2012-03-09 17:20:38 -05:00
name: :string,
admin: :boolean,
gender: :string,
email: :string,
date_of_birth: :date,
great: :string)
2011-08-12 10:35:41 -04:00
FactoryBot.define do
2012-03-09 17:20:38 -05:00
factory :user_without_admin_scoping, class: User do
2011-08-12 16:16:17 -04:00
admin_trait
2011-08-12 10:35:41 -04:00
end
factory :user do
name { "John" }
2011-08-12 16:16:17 -04:00
trait :great do
great { "GREAT!!!" }
2011-08-12 15:05:38 -04:00
end
2011-08-12 16:16:17 -04:00
trait :admin do
admin { true }
end
2011-08-12 16:16:17 -04:00
trait :admin_trait do
admin { true }
2011-08-12 10:35:41 -04:00
end
2011-08-12 16:16:17 -04:00
trait :male do
name { "Joe" }
gender { "Male" }
end
2011-08-12 16:16:17 -04:00
trait :female do
name { "Jane" }
gender { "Female" }
end
2011-08-12 15:05:38 -04:00
factory :great_user do
great
end
2012-03-09 17:20:38 -05:00
factory :admin, traits: [:admin]
2011-08-12 10:35:41 -04:00
2011-08-10 23:33:50 -04:00
factory :male_user do
male
2011-08-12 15:05:38 -04:00
factory :child_male_user do
date_of_birth { Date.parse("1/1/2000") }
end
2011-08-10 23:33:50 -04:00
end
2011-08-12 10:35:41 -04:00
2012-03-09 17:20:38 -05:00
factory :female, traits: [:female] do
2011-08-12 16:16:17 -04:00
trait :admin do
admin { true }
name { "Judy" }
2011-08-10 14:11:53 -04:00
end
2011-08-12 10:35:41 -04:00
factory :female_great_user do
great
end
2012-03-09 17:20:38 -05:00
factory :female_admin_judy, traits: [:admin]
2011-08-10 14:11:53 -04:00
end
2011-08-12 10:35:41 -04:00
2012-03-09 17:20:38 -05:00
factory :female_admin, traits: [:female, :admin]
factory :female_after_male_admin, traits: [:male, :female, :admin]
factory :male_after_female_admin, traits: [:female, :male, :admin]
end
2011-08-12 10:35:41 -04:00
2011-08-12 16:16:17 -04:00
trait :email do
2011-08-10 14:11:53 -04:00
email { "#{name}@example.com" }
end
2011-08-12 10:35:41 -04:00
2012-03-09 17:20:38 -05:00
factory :user_with_email, class: User, traits: [:email] do
name { "Bill" }
2011-08-10 14:11:53 -04:00
end
end
end
context "the parent class" do
subject { FactoryBot.create(:user) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "John" }
its(:gender) { should be_nil }
2011-08-12 10:35:41 -04:00
it { should_not be_admin }
end
2011-08-12 10:35:41 -04:00
2011-08-12 16:16:17 -04:00
context "the child class with one trait" do
subject { FactoryBot.create(:admin) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "John" }
its(:gender) { should be_nil }
2011-08-12 10:35:41 -04:00
it { should be_admin }
end
2011-08-12 10:35:41 -04:00
2011-08-12 16:16:17 -04:00
context "the other child class with one trait" do
subject { FactoryBot.create(:female) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Jane" }
its(:gender) { should eq "Female" }
2011-08-12 10:35:41 -04:00
it { should_not be_admin }
end
2011-08-12 10:35:41 -04:00
2011-08-12 16:16:17 -04:00
context "the child with multiple traits" do
subject { FactoryBot.create(:female_admin) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Jane" }
its(:gender) { should eq "Female" }
2011-08-12 10:35:41 -04:00
it { should be_admin }
end
2011-08-12 10:35:41 -04:00
2011-08-12 16:16:17 -04:00
context "the child with multiple traits and overridden attributes" do
subject { FactoryBot.create(:female_admin, name: "Jill", gender: nil) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Jill" }
its(:gender) { should be_nil }
2011-08-12 10:35:41 -04:00
it { should be_admin }
end
2011-08-12 10:35:41 -04:00
2011-08-12 16:16:17 -04:00
context "the child with multiple traits who override the same attribute" do
context "when the male assigns name after female" do
subject { FactoryBot.create(:male_after_female_admin) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Joe" }
its(:gender) { should eq "Male" }
2011-08-12 10:35:41 -04:00
it { should be_admin }
end
2011-08-12 10:35:41 -04:00
context "when the female assigns name after male" do
subject { FactoryBot.create(:female_after_male_admin) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Jane" }
its(:gender) { should eq "Female" }
2011-08-12 10:35:41 -04:00
it { should be_admin }
end
end
2011-08-12 10:35:41 -04:00
2011-08-12 16:16:17 -04:00
context "child class with scoped trait and inherited trait" do
subject { FactoryBot.create(:female_admin_judy) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Judy" }
its(:gender) { should eq "Female" }
2011-08-12 10:35:41 -04:00
it { should be_admin }
2011-08-10 14:11:53 -04:00
end
2011-08-12 10:35:41 -04:00
2011-08-12 16:16:17 -04:00
context "factory using global trait" do
subject { FactoryBot.create(:user_with_email) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Bill" }
its(:email) { should eq "Bill@example.com" }
2011-08-10 14:11:53 -04:00
end
2011-08-12 10:35:41 -04:00
2011-08-12 16:16:17 -04:00
context "factory created with alternate syntax for specifying trait" do
subject { FactoryBot.create(:male_user) }
2013-01-18 13:27:57 -05:00
its(:gender) { should eq "Male" }
2011-08-10 23:33:50 -04:00
context "where trait name and attribute are the same" do
subject { FactoryBot.create(:great_user) }
its(:great) { should eq "GREAT!!!" }
end
2011-08-12 15:05:38 -04:00
context "where trait name and attribute are the same and attribute is overridden" do
subject { FactoryBot.create(:great_user, great: "SORT OF!!!") }
its(:great) { should eq "SORT OF!!!" }
end
2011-08-12 15:05:38 -04:00
end
2011-08-12 16:16:17 -04:00
context "child factory created where trait attributes are inherited" do
subject { FactoryBot.create(:child_male_user) }
2013-01-18 13:27:57 -05:00
its(:gender) { should eq "Male" }
its(:date_of_birth) { should eq Date.parse("1/1/2000") }
2011-08-12 15:05:38 -04:00
end
2011-08-12 10:35:41 -04:00
context "factory outside of scope" do
subject { FactoryBot.create(:user_without_admin_scoping) }
it "raises an error" do
expect { subject }.
to raise_error(KeyError, "Trait not registered: \"admin_trait\"")
end
2011-08-12 10:35:41 -04:00
end
context "child factory using grandparents' trait" do
subject { FactoryBot.create(:female_great_user) }
2013-01-18 13:27:57 -05:00
its(:great) { should eq "GREAT!!!" }
end
end
describe "trait indifferent access" do
context "when trait is defined as a string" do
it "can be invoked with a string" do
build_user_factory_with_admin_trait("admin")
user = FactoryBot.build(:user, "admin")
expect(user).to be_admin
end
it "can be invoked with a symbol" do
build_user_factory_with_admin_trait("admin")
user = FactoryBot.build(:user, :admin)
expect(user).to be_admin
end
end
context "when trait is defined as a symbol" do
it "can be invoked with a string" do
build_user_factory_with_admin_trait(:admin)
user = FactoryBot.build(:user, "admin")
expect(user).to be_admin
end
it "can be invoked with a symbol" do
build_user_factory_with_admin_trait(:admin)
user = FactoryBot.build(:user, :admin)
expect(user).to be_admin
end
end
def build_user_factory_with_admin_trait(trait_name)
define_model("User", admin: :boolean)
FactoryBot.define do
factory :user do
admin { false }
trait trait_name do
admin { true }
end
end
end
end
end
describe "looking up traits that don't exist" do
it "raises a KeyError" do
define_class("User")
FactoryBot.define do
factory :user
end
expect { FactoryBot.build(:user, double("not a trait")) }.
to raise_error(KeyError)
end
end
describe "traits with callbacks" do
before do
2012-03-09 17:20:38 -05:00
define_model("User", name: :string)
FactoryBot.define do
factory :user do
name { "John" }
trait :great do
after(:create) { |user| user.name.upcase! }
end
trait :awesome do
after(:create) { |user| user.name = "awesome" }
end
2012-03-09 17:20:38 -05:00
factory :caps_user, traits: [:great]
factory :awesome_user, traits: [:great, :awesome]
factory :caps_user_implicit_trait do
great
end
end
end
end
context "when the factory has a trait passed via arguments" do
subject { FactoryBot.create(:caps_user) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "JOHN" }
end
context "when the factory has an implicit trait" do
subject { FactoryBot.create(:caps_user_implicit_trait) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "JOHN" }
end
it "executes callbacks in the order assigned" do
expect(FactoryBot.create(:awesome_user).name).to eq "awesome"
end
end
2012-02-08 10:17:57 -05:00
describe "traits added via strategy" do
before do
2012-03-09 17:20:38 -05:00
define_model("User", name: :string, admin: :boolean)
FactoryBot.define do
factory :user do
name { "John" }
trait :admin do
admin { true }
end
trait :great do
after(:create) { |user| user.name.upcase! }
end
end
end
end
context "adding traits in create" do
subject { FactoryBot.create(:user, :admin, :great, name: "Joe") }
2015-09-11 09:16:23 -04:00
its(:admin) { should be true }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "JOE" }
it "doesn't modify the user factory" do
subject
expect(FactoryBot.create(:user)).not_to be_admin
expect(FactoryBot.create(:user).name).to eq "John"
end
end
context "adding traits in build" do
subject { FactoryBot.build(:user, :admin, :great, name: "Joe") }
2015-09-11 09:16:23 -04:00
its(:admin) { should be true }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Joe" }
end
context "adding traits in attributes_for" do
subject { FactoryBot.attributes_for(:user, :admin, :great) }
2015-09-11 09:16:23 -04:00
its([:admin]) { should be true }
2013-01-18 13:27:57 -05:00
its([:name]) { should eq "John" }
end
context "adding traits in build_stubbed" do
subject { FactoryBot.build_stubbed(:user, :admin, :great, name: "Jack") }
2015-09-11 09:16:23 -04:00
its(:admin) { should be true }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Jack" }
end
context "adding traits in create_list" do
subject { FactoryBot.create_list(:user, 2, :admin, :great, name: "Joe") }
2013-01-18 13:27:57 -05:00
its(:length) { should eq 2 }
it "creates all the records" do
subject.each do |record|
2015-09-11 09:16:23 -04:00
expect(record.admin).to be true
2013-01-18 13:27:57 -05:00
expect(record.name).to eq "JOE"
end
end
end
context "adding traits in build_list" do
subject { FactoryBot.build_list(:user, 2, :admin, :great, name: "Joe") }
2013-01-18 13:27:57 -05:00
its(:length) { should eq 2 }
it "builds all the records" do
subject.each do |record|
2015-09-11 09:16:23 -04:00
expect(record.admin).to be true
2013-01-18 13:27:57 -05:00
expect(record.name).to eq "Joe"
end
end
end
end
describe "traits and dynamic attributes that are applied simultaneously" do
before do
2012-03-09 17:20:38 -05:00
define_model("User", name: :string, email: :string, combined: :string)
FactoryBot.define do
trait :email do
email { "#{name}@example.com" }
end
factory :user do
name { "John" }
email
combined { "#{name} <#{email}>" }
end
end
end
subject { FactoryBot.build(:user) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "John" }
its(:email) { should eq "John@example.com" }
its(:combined) { should eq "John <John@example.com>" }
end
describe "applying inline traits" do
before do
define_model("User") do
has_many :posts
end
2012-03-09 17:20:38 -05:00
define_model("Post", user_id: :integer) do
belongs_to :user
end
FactoryBot.define do
factory :user do
trait :with_post do
posts { [Post.new] }
end
end
end
end
it "applies traits only to the instance generated for that call" do
expect(FactoryBot.create(:user, :with_post).posts).not_to be_empty
expect(FactoryBot.create(:user).posts).to be_empty
expect(FactoryBot.create(:user, :with_post).posts).not_to be_empty
end
end
describe "inline traits overriding existing attributes" do
before do
2012-03-09 17:20:38 -05:00
define_model("User", status: :string)
FactoryBot.define do
factory :user do
status { "pending" }
trait(:accepted) { status { "accepted" } }
trait(:declined) { status { "declined" } }
2012-03-09 17:20:38 -05:00
factory :declined_user, traits: [:declined]
factory :extended_declined_user, traits: [:declined] do
status { "extended_declined" }
end
end
end
end
it "returns the default status" do
expect(FactoryBot.build(:user).status).to eq "pending"
end
it "prefers inline trait attributes over default attributes" do
expect(FactoryBot.build(:user, :accepted).status).to eq "accepted"
end
it "prefers traits on a factory over default attributes" do
expect(FactoryBot.build(:declined_user).status).to eq "declined"
end
it "prefers inline trait attributes over traits on a factory" do
expect(FactoryBot.build(:declined_user, :accepted).status).to eq "accepted"
end
it "prefers attributes on factories over attributes from non-inline traits" do
expect(FactoryBot.build(:extended_declined_user).status).to eq "extended_declined"
end
it "prefers inline traits over attributes on factories" do
expect(FactoryBot.build(:extended_declined_user, :accepted).status).to eq "accepted"
end
it "prefers overridden attributes over attributes from traits, inline traits, or attributes on factories" do
user = FactoryBot.build(:extended_declined_user, :accepted, status: "completely overridden")
expect(user.status).to eq "completely overridden"
end
end
describe "making sure the factory is properly compiled the first time we want to instantiate it" do
before do
2012-03-09 17:20:38 -05:00
define_model("User", role: :string, gender: :string, age: :integer)
FactoryBot.define do
factory :user do
trait(:female) { gender { "female" } }
trait(:admin) { role { "admin" } }
factory :female_user do
female
end
end
end
end
it "can honor traits on the very first call" do
user = FactoryBot.build(:female_user, :admin, age: 30)
expect(user.gender).to eq "female"
2013-01-18 13:27:57 -05:00
expect(user.age).to eq 30
expect(user.role).to eq "admin"
end
end
describe "traits with to_create" do
before do
define_model("User", name: :string)
FactoryBot.define do
factory :user do
trait :with_to_create do
to_create { |instance| instance.name = "to_create" }
end
factory :sub_user do
to_create { |instance| instance.name = "sub" }
factory :child_user
end
factory :sub_user_with_trait do
with_to_create
factory :child_user_with_trait
end
factory :sub_user_with_trait_and_override do
with_to_create
to_create { |instance| instance.name = "sub with trait and override" }
factory :child_user_with_trait_and_override
end
end
end
end
it "can apply to_create from traits" do
expect(FactoryBot.create(:user, :with_to_create).name).to eq "to_create"
end
it "can apply to_create from the definition" do
expect(FactoryBot.create(:sub_user).name).to eq "sub"
expect(FactoryBot.create(:child_user).name).to eq "sub"
end
it "gives additional traits higher priority than to_create from the definition" do
expect(FactoryBot.create(:sub_user, :with_to_create).name).to eq "to_create"
expect(FactoryBot.create(:child_user, :with_to_create).name).to eq "to_create"
end
it "gives base traits normal priority" do
expect(FactoryBot.create(:sub_user_with_trait).name).to eq "to_create"
expect(FactoryBot.create(:child_user_with_trait).name).to eq "to_create"
end
it "gives base traits lower priority than overrides" do
expect(FactoryBot.create(:sub_user_with_trait_and_override).name).to eq "sub with trait and override"
expect(FactoryBot.create(:child_user_with_trait_and_override).name).to eq "sub with trait and override"
end
it "gives additional traits higher priority than base traits and factory definition" do
FactoryBot.define do
trait :overridden do
to_create { |instance| instance.name = "completely overridden" }
end
end
sub_user = FactoryBot.create(:sub_user_with_trait_and_override, :overridden)
child_user = FactoryBot.create(:child_user_with_trait_and_override, :overridden)
expect(sub_user.name).to eq "completely overridden"
expect(child_user.name).to eq "completely overridden"
end
end
describe "traits with initialize_with" do
before do
define_class("User") do
attr_reader :name
def initialize(name)
@name = name
end
end
FactoryBot.define do
factory :user do
trait :with_initialize_with do
initialize_with { new("initialize_with") }
end
factory :sub_user do
initialize_with { new("sub") }
factory :child_user
end
factory :sub_user_with_trait do
with_initialize_with
factory :child_user_with_trait
end
factory :sub_user_with_trait_and_override do
with_initialize_with
initialize_with { new("sub with trait and override") }
factory :child_user_with_trait_and_override
end
end
end
end
it "can apply initialize_with from traits" do
expect(FactoryBot.build(:user, :with_initialize_with).name).to eq "initialize_with"
end
it "can apply initialize_with from the definition" do
expect(FactoryBot.build(:sub_user).name).to eq "sub"
expect(FactoryBot.build(:child_user).name).to eq "sub"
end
it "gives additional traits higher priority than initialize_with from the definition" do
expect(FactoryBot.build(:sub_user, :with_initialize_with).name).to eq "initialize_with"
expect(FactoryBot.build(:child_user, :with_initialize_with).name).to eq "initialize_with"
end
it "gives base traits normal priority" do
expect(FactoryBot.build(:sub_user_with_trait).name).to eq "initialize_with"
expect(FactoryBot.build(:child_user_with_trait).name).to eq "initialize_with"
end
it "gives base traits lower priority than overrides" do
expect(FactoryBot.build(:sub_user_with_trait_and_override).name).to eq "sub with trait and override"
expect(FactoryBot.build(:child_user_with_trait_and_override).name).to eq "sub with trait and override"
end
it "gives additional traits higher priority than base traits and factory definition" do
FactoryBot.define do
trait :overridden do
initialize_with { new("completely overridden") }
end
end
sub_user = FactoryBot.build(:sub_user_with_trait_and_override, :overridden)
child_user = FactoryBot.build(:child_user_with_trait_and_override, :overridden)
expect(sub_user.name).to eq "completely overridden"
expect(child_user.name).to eq "completely overridden"
end
end
describe "nested implicit traits" do
before do
define_class("User") do
attr_accessor :gender, :role
attr_reader :name
def initialize(name)
@name = name
end
end
end
shared_examples_for "assigning data from traits" do
it "assigns the correct values" do
user = FactoryBot.create(:user, :female_admin)
2013-01-18 13:27:57 -05:00
expect(user.gender).to eq "FEMALE"
expect(user.role).to eq "ADMIN"
expect(user.name).to eq "Jane Doe"
end
end
context "defined outside the factory" do
before do
FactoryBot.define do
trait :female do
gender { "female" }
to_create { |instance| instance.gender = instance.gender.upcase }
end
trait :jane_doe do
initialize_with { new("Jane Doe") }
end
trait :admin do
role { "admin" }
after(:build) { |instance| instance.role = instance.role.upcase }
end
trait :female_admin do
female
admin
jane_doe
end
factory :user
end
end
it_should_behave_like "assigning data from traits"
end
context "defined inside the factory" do
before do
FactoryBot.define do
factory :user do
trait :female do
gender { "female" }
to_create { |instance| instance.gender = instance.gender.upcase }
end
trait :jane_doe do
initialize_with { new("Jane Doe") }
end
trait :admin do
role { "admin" }
after(:build) { |instance| instance.role = instance.role.upcase }
end
trait :female_admin do
female
admin
jane_doe
end
end
end
end
it_should_behave_like "assigning data from traits"
end
end
describe "implicit traits containing callbacks" do
before do
define_model("User", value: :integer)
FactoryBot.define do
factory :user do
value { 0 }
trait :trait_with_callback do
after(:build) { |user| user.value += 1 }
end
factory :user_with_trait_with_callback do
trait_with_callback
end
end
end
end
it "only runs the callback once" do
expect(FactoryBot.build(:user_with_trait_with_callback).value).to eq 1
end
end
describe "traits used in associations" do
before do
define_model("User", admin: :boolean, name: :string)
define_model("Comment", user_id: :integer) do
belongs_to :user
end
define_model("Order", creator_id: :integer) do
belongs_to :creator, class_name: "User"
end
define_model("Post", author_id: :integer) do
belongs_to :author, class_name: "User"
end
FactoryBot.define do
factory :user do
admin { false }
trait :admin do
admin { true }
end
end
factory :post do
association :author, factory: [:user, :admin], name: "John Doe"
end
factory :comment do
association :user, :admin, name: "Joe Slick"
end
factory :order do
association :creator, :admin, factory: :user, name: "Joe Creator"
end
end
end
it "allows assigning traits for the factory of an association" do
author = FactoryBot.create(:post).author
2013-01-18 13:27:57 -05:00
expect(author).to be_admin
expect(author.name).to eq "John Doe"
end
it "allows inline traits with the default association" do
user = FactoryBot.create(:comment).user
2013-01-18 13:27:57 -05:00
expect(user).to be_admin
expect(user.name).to eq "Joe Slick"
end
it "allows inline traits with a specific factory for an association" do
creator = FactoryBot.create(:order).creator
2013-01-18 13:27:57 -05:00
expect(creator).to be_admin
expect(creator.name).to eq "Joe Creator"
end
end