在Factory_girl / machinist的Singleton工厂?

时间:2010-11-30 19:48:04

标签: singleton factory-bot machinist

在工厂女孩/机械师的工厂中是否有一些配置迫使它在测试用例期间只创建一次具有相同工厂名称的对象并一直返回相同的实例?我知道,我可以这样做:

def singleton name
    @@singletons ||= {}
    @@singletons[name] ||= Factory name
end
...
Factory.define :my_model do |m|
   m.singleton_model { singleton :singleton_model }
end

但也许有更好的方法。

3 个答案:

答案 0 :(得分:20)

您可以使用工厂内的initialize_with宏并检查对象是否已存在,然后不要重新创建它。当所述工厂被协会引用时,这也有效:

FactoryGirl.define do
  factory :league, :aliases => [:euro_cup] do
    id 1
    name "European Championship"
    owner "UEFA"
    initialize_with { League.find_or_create_by_id(id)}
  end
end

这里有一个类似的问题,有更多选择:Using factory_girl in Rails with associations that have unique constraints. Getting duplicate errors

答案 1 :(得分:1)

不确定这对您是否有用。

使用此设置,您可以使用工厂'singleton_product'创建n个产品。所有这些产品都将拥有相同的平台(即平台'FooBar')。

factory :platform do
  name 'Test Platform'
end

factory :product do
  name 'Test Product'
  platform

  trait :singleton do
    platform{
      search = Platform.find_by_name('FooBar')
      if search.blank?
        FactoryGirl.create(:platform, :name => 'FooBar')
      else
        search
      end
    }
  end

  factory :singleton_product, :traits => [:singleton]
end

您仍然可以使用标准产品工厂'产品'来创建具有平台'测试平台'的产品,但是当您调用它来创建第二个产品时(如果平台名称设置为唯一的),它将失败。 / p>

答案 2 :(得分:0)

@CubaLibre的FactoryBot版本5答案:

FactoryGirl.define do
  factory :league do
    initialize_with { League.find_or_initialize_by(id: id) }
    sequence(:id)
    name "European Championship"
  end
end