Skip to content

Instantly share code, notes, and snippets.

@rorcraft
Created June 21, 2011 00:08
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rorcraft/1036930 to your computer and use it in GitHub Desktop.
Save rorcraft/1036930 to your computer and use it in GitHub Desktop.
Factory_girl singleton monkey patch
# I put this as spec/support/factory_girl_singleton.rb
# this get required from spec_helper.rb
# creates a class variable for factories that should be only created once
class Factory
@@singletons = {}
def self.singleton(factory_key)
begin
@@singletons[factory_key] = Factory.create factory_key
rescue ActiveRecord::RecordInvalid, ActiveRecord::RecordNotUnique
end
return @@singletons[factory_key]
end
end
# Usage example
# ---------------------------
# User belongs to school
Factory.define :user do |f|
f.sequence(:login) { |n| Faker::Internet.user_name }
f.school { Factory.singleton(:school) }
end
# School admin belongs to same school
Factory.define(:school_admin, :class => "User") do |f|
f.sequence(:login) { |n| Faker::Internet.user_name }
f.role "school_admin"
f.school { Factory.singleton(:school) }
end
@AlbertGrimley
Copy link

Trying to use this but getting the following error: Factory is not a class (TypeError)

Rails 3.2.2

@AlbertGrimley
Copy link

After reading this: http://stackoverflow.com/questions/9678365/factorygirl-in-rails-associations-w-unique-constraints

I changed the singleton implementation to the following, which works.

module FactoryGirl

  class Singleton
    @@singletons = {}

    def self.execute(factory_key)
      begin
        @@singletons[factory_key] = FactoryGirl.create(factory_key)
      rescue ActiveRecord::RecordInvalid, ActiveRecord::RecordNotUnique
        # already in DB so return nil
      end

      return @@singletons[factory_key]
    end
  end

end

And now you can call it like this:

FactoryGirl.define do
  factory :test, :class => Test do
    name "Test X"
    active true
  end

  factory :test_rule, :class => TestRule do
    rule { |rule| FactoryGirl::Singleton.execute(:rule_with_params) }
    test { |test| FactoryGirl::Singleton.execute(:test) }
    value "test value"
  end
end

@knorrli
Copy link

knorrli commented Jul 10, 2012

Not sure if I understand this correctly, but the above implementation still creates new Instances when I use it like that. I had to change line 7 to the following:

    @@singletons[factory_key] ||= FactoryGirl.create(factory_key)

to stop creating new Instances if they already existed.

@AlbertGrimley
Copy link

I do not experience the same behavior. I added a puts inside of the rescue and it shows up in ruby console on subsequent executions.

@knorrli
Copy link

knorrli commented Jul 11, 2012

I did the same, the rescue gets never executed. The reason for this are most certainly our messed up configurations, since we just upgraded form 3.0 to 3.2. Thanks for your reply tough, I'll post the reason if I find it.

@diego-aslz
Copy link

I think the reason is pretty obvious. The method proposed will only work in models that have an uniqueness validation (validates_uniqueness_of), and won't, for sure, be created twice since AR will complain about it. If the model doesn't have/need this kind of validation, the line:

@@singletons[factory_key] = FactoryGirl.create(factory_key)

Will always succeed and no exception will be raised. I did this:

module FactoryGirl
  @@singletons = {}
  def self.singleton(factory_key,factory=nil)
    @@singletons[factory_key] ||= FactoryGirl.create(factory || factory_key)
  end
end

This way, I can do this:

FactoryGirl.define do
  factory :person do
    name "Test"
    domain { FactoryGirl.singleton :domain }

    factory :another_person do
      domain { FactoryGirl.singleton :second_domain, :domain }
    end
  end

  factory :product do
    name "A product"
    domain { FactoryGirl.singleton :domain }
  end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment