FactoryGirl'de has_many derneği ile fabrika nasıl kurulur


90

Kuruluma yanlış yoldan gidersem birisi bana söyleyebilir mi?

Has_many.through ilişkilendirmeleri olan aşağıdaki modellere sahibim:

class Listing < ActiveRecord::Base
  attr_accessible ... 

  has_many :listing_features
  has_many :features, :through => :listing_features

  validates_presence_of ...
  ...  
end


class Feature < ActiveRecord::Base
  attr_accessible ...

  validates_presence_of ...
  validates_uniqueness_of ...

  has_many :listing_features
  has_many :listings, :through => :listing_features
end


class ListingFeature < ActiveRecord::Base
  attr_accessible :feature_id, :listing_id

  belongs_to :feature  
  belongs_to :listing
end

Rails 3.1.rc4, FactoryGirl 2.0.2, factory_girl_rails 1.1.0 ve rspec kullanıyorum. :listingFabrika için temel rspec rspec akıl sağlığı kontrolüm :

it "creates a valid listing from factory" do
  Factory(:listing).should be_valid
end

İşte Fabrika (: listeleme)

FactoryGirl.define do
  factory :listing do
    headline    'headline'
    home_desc   'this is the home description'
    association :user, :factory => :user
    association :layout, :factory => :layout
    association :features, :factory => :feature
  end
end

:listing_featureVe :featurefabrikalar benzer ayarlanmıştır.
Eğer association :featureshat iptal edilmiştir, daha sonra tüm testleri geçmektedir.
Ne zaman

association :features, :factory => :feature

hata mesajı undefined method 'each' for #<Feature> bana mantıklı geldiğini düşündüğüm çünkü listing.featuresbir dizi döndürüyor. Ben de değiştirdim

association :features, [:factory => :feature]

ve şimdi aldığım hata şu: ArgumentError: Not registered: features Bu şekilde fabrika nesneleri üretmek mantıklı değil mi, yoksa neyi kaçırıyorum? Tüm girdiler için çok teşekkürler!

Yanıtlar:


58

Bu tür ilişkilendirmeler oluşturmak, FactoryGirl'in geri aramalarını kullanmayı gerektirir.

Mükemmel bir örnek seti burada bulunabilir.

https://thoughtbot.com/blog/aint-no-calla-back-girl

Onu örneğinize getirmek için.

Factory.define :listing_with_features, :parent => :listing do |listing|
  listing.after_create { |l| Factory(:feature, :listing => l)  }
  #or some for loop to generate X features
end

ilişkilendirme: özellikler, [: fabrika =>: özellik] kullanmaya başladınız mı?
davidtingsu

110

Alternatif olarak, bir blok kullanabilir ve associationanahtar kelimeyi atlayabilirsiniz . Bu, veritabanına kaydetmeden nesneler oluşturmayı mümkün kılar (aksi takdirde, bir has_many ilişkilendirmesi, buildbunun yerine işlevi kullansanız bile kayıtlarınızı veritabanına kaydeder create).

FactoryGirl.define do
  factory :listing_with_features, :parent => :listing do |listing|
    features { build_list :feature, 3 }
  end
end

5
Bu kedinin miyavı. İkisini birden yapabilme buildve createonu en çok yönlü model yapar. Ardından, kontrolör eylemlerini test ederken bu özel FG oluşturma stratejisini gist.github.com/Bartuz/74ee5834a36803d712b7 kullanınpost nested_attributes_foraccepts_nested_attributes_for
Chris Beck

4
olumlu oy verildi, kabul edilen cevaptan çok daha okunabilir ve çok yönlü IMO
m_x

1
FactoryBot 5 itibariyle, associationanahtar kelime üst ve alt öğe için aynı oluşturma stratejisini kullanır. Böylece, veritabanına kaydetmeden nesneler oluşturabilir.
Nick

30

Şunları kullanabilirsiniz trait:

FactoryGirl.define do
  factory :listing do
    ...

    trait :with_features do
      features { build_list :feature, 3 }
    end
  end
end

İle callbackDB oluşturma gerekirse,:

...

trait :with_features do
  after(:create) do |listing|
    create_list(:feature, 3, listing: listing)
  end
end

Özelliklerinizde şu şekilde kullanın:

let(:listing) { create(:listing, :with_features) }

Bu, fabrikalarınızdaki kopyaları kaldıracak ve daha yeniden kullanılabilir hale gelecektir.

https://robots.thoughtbot.com/remove-duplication-with-factorygirls-traits


20

Birkaç farklı yaklaşım denedim ve bu benim için en güvenilir şekilde işe yarayan (davanıza uyarlanmış)

FactoryGirl.define do
  factory :user do
    # some details
  end

  factory :layout do
    # some details
  end

  factory :feature do
    # some details
  end

  factory :listing do
    headline    'headline'
    home_desc   'this is the home description'
    association :user, factory: :user
    association :layout, factory: :layout
    after(:create) do |liztng|
      FactoryGirl.create_list(:feature, 1, listing: liztng)
    end
  end
end

0

İşte benimkini nasıl kurdum:

# Model 1 PreferenceSet
class PreferenceSet < ActiveRecord::Base
  belongs_to :user
  has_many :preferences, dependent: :destroy
end

#Model 2 Preference

class Preference < ActiveRecord::Base    
  belongs_to :preference_set
end



# factories/preference_set.rb

FactoryGirl.define do
  factory :preference_set do
    user factory: :user
    filter_name "market, filter_structure"

    factory :preference_set_with_preferences do
      after(:create) do |preference|
        create(:preference, preference_set: preference)
        create(:filter_structure_preference, preference_set: preference)
      end
    end
  end

end

# factories/preference.rb

FactoryGirl.define do
  factory :preference do |p|
    filter_name "market"
    filter_value "12"
  end

  factory :filter_structure_preference, parent: :preference do
    filter_name "structure"
    filter_value "7"
  end
end

Ve sonra testlerinizde şunları yapabilirsiniz:

@preference_set = FactoryGirl.create(:preference_set_with_preferences)

Umarım yardımcı olur.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.