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/lib/factory_girl/definition_proxy.rb

160 lines
4.7 KiB
Ruby
Raw Normal View History

module FactoryGirl
class DefinitionProxy
2011-07-05 18:29:55 -04:00
UNPROXIED_METHODS = %w(__send__ __id__ nil? send object_id extend instance_eval initialize block_given? raise)
(instance_methods + private_instance_methods).each do |method|
undef_method(method) unless UNPROXIED_METHODS.include?(method.to_s)
end
attr_reader :child_factories
2011-08-12 14:49:21 -04:00
def initialize(definition, ignore = false)
@definition = definition
@ignore = ignore
@child_factories = []
end
# Adds an attribute that should be assigned on generated instances for this
# factory.
#
# This method should be called with either a value or block, but not both. If
# called with a block, the attribute will be generated "lazily," whenever an
# instance is generated. Lazy attribute blocks will not be called if that
# attribute is overridden for a specific instance.
#
2012-02-08 10:17:57 -05:00
# When defining lazy attributes, an instance of FactoryGirl::Strategy will
# be yielded, allowing associations to be built using the correct build
# strategy.
#
# Arguments:
# * name: +Symbol+ or +String+
2011-02-07 17:48:00 -05:00
# The name of this attribute. This will be assigned using "name=" for
# generated instances.
# * value: +Object+
# If no block is given, this value will be used for this attribute.
def add_attribute(name, value = nil, &block)
2011-10-09 17:14:40 -04:00
raise AttributeDefinitionError, "Both value and block given" if value && block_given?
declaration = if block_given?
Declaration::Dynamic.new(name, @ignore, block)
else
2011-10-09 17:14:40 -04:00
Declaration::Static.new(name, value, @ignore)
end
@definition.declare_attribute(declaration)
end
def ignore(&block)
proxy = DefinitionProxy.new(@definition, true)
proxy.instance_eval(&block)
end
# Calls add_attribute using the missing method name as the name of the
# attribute, so that:
#
2010-10-01 18:50:01 -04:00
# factory :user do
# name 'Billy Idol'
# end
#
# and:
#
2010-10-01 18:50:01 -04:00
# factory :user do
# add_attribute :name, 'Billy Idol'
# end
#
2011-07-01 19:08:03 -04:00
# are equivalent.
2010-10-01 18:50:01 -04:00
#
# If no argument or block is given, factory_girl will look for a sequence
# or association with the same name. This means that:
#
# factory :user do
# email { create(:email) }
2010-10-01 18:50:01 -04:00
# association :account
# end
#
# and:
#
# factory :user do
# email
# account
# end
#
2011-07-01 19:08:03 -04:00
# are equivalent.
def method_missing(name, *args, &block)
if args.empty? && block.nil?
@definition.declare_attribute(Declaration::Implicit.new(name, @definition, @ignore))
elsif args.first.is_a?(Hash) && args.first.has_key?(:factory)
association(name, *args)
elsif FactoryGirl.callback_names.include?(name)
@definition.add_callback(Callback.new(name, block))
else
add_attribute(name, *args, &block)
end
end
# Adds an attribute that will have unique values generated by a sequence with
# a specified format.
#
# The result of:
2010-10-01 18:50:01 -04:00
# factory :user do
# sequence(:email) { |n| "person#{n}@example.com" }
# end
#
# Is equal to:
2010-10-01 18:50:01 -04:00
# sequence(:email) { |n| "person#{n}@example.com" }
#
2010-10-01 18:50:01 -04:00
# factory :user do
# email { FactoryGirl.create(:email) }
# end
#
# Except that no globally available sequence will be defined.
2012-04-06 14:41:13 -04:00
def sequence(name, *args, &block)
sequence = Sequence.new(name, *args, &block)
add_attribute(name) { sequence.next }
end
# Adds an attribute that builds an association. The associated instance will
# be built using the same build strategy as the parent instance.
#
# Example:
2010-10-01 18:50:01 -04:00
# factory :user do
# name 'Joey'
# end
#
2010-10-01 18:50:01 -04:00
# factory :post do
2012-03-09 17:20:38 -05:00
# association :author, factory: :user
# end
#
# Arguments:
# * name: +Symbol+
# The name of this attribute.
# * options: +Hash+
#
# Options:
# * factory: +Symbol+ or +String+
# The name of the factory to use when building the associated instance.
# If no name is given, the name of the attribute is assumed to be the
# name of the factory. For example, a "user" association will by
# default use the "user" factory.
def association(name, options = {})
@definition.declare_attribute(Declaration::Association.new(name, options))
end
def to_create(&block)
@definition.to_create(&block)
end
def factory(name, options = {}, &block)
@child_factories << [name, options, block]
end
2011-08-12 14:49:21 -04:00
2011-08-12 16:16:17 -04:00
def trait(name, &block)
@definition.define_trait(Trait.new(name, &block))
2011-08-09 20:29:02 -04:00
end
def initialize_with(&block)
@definition.define_constructor(&block)
end
end
end