2010-06-24 09:45:57 -04:00
|
|
|
module FactoryGirl
|
2010-06-10 14:58:47 -04:00
|
|
|
class DefinitionProxy
|
|
|
|
instance_methods.each do |method|
|
|
|
|
undef_method(method) unless method =~ /(^__|^nil\?$|^send$|^object_id$|^extend$|^instance_eval$)/
|
|
|
|
end
|
|
|
|
|
2011-06-29 16:49:45 -04:00
|
|
|
attr_reader :child_factories
|
|
|
|
|
2010-06-10 14:58:47 -04:00
|
|
|
def initialize(factory)
|
|
|
|
@factory = factory
|
2011-06-29 16:49:45 -04:00
|
|
|
@child_factories = []
|
2010-06-10 14:58:47 -04:00
|
|
|
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.
|
|
|
|
#
|
2010-10-01 18:50:01 -04:00
|
|
|
# When defining lazy attributes, an instance of FactoryGirl::Proxy will
|
2010-06-10 14:58:47 -04:00
|
|
|
# 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
|
2010-06-10 14:58:47 -04:00
|
|
|
# generated instances.
|
|
|
|
# * value: +Object+
|
|
|
|
# If no block is given, this value will be used for this attribute.
|
2010-07-06 21:15:16 -04:00
|
|
|
def add_attribute(name, value = nil, &block)
|
2010-06-10 14:58:47 -04:00
|
|
|
if block_given?
|
|
|
|
if value
|
|
|
|
raise AttributeDefinitionError, "Both value and block given"
|
|
|
|
else
|
|
|
|
attribute = Attribute::Dynamic.new(name, block)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
attribute = Attribute::Static.new(name, value)
|
|
|
|
end
|
|
|
|
|
|
|
|
@factory.define_attribute(attribute)
|
|
|
|
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'
|
2010-06-10 14:58:47 -04:00
|
|
|
# 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
|
2011-01-25 17:55:40 -05:00
|
|
|
# email { create(:email) }
|
2010-10-01 18:50:01 -04:00
|
|
|
# association :account
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# and:
|
|
|
|
#
|
|
|
|
# factory :user do
|
|
|
|
# email
|
|
|
|
# account
|
2010-06-10 14:58:47 -04:00
|
|
|
# end
|
|
|
|
#
|
2011-07-01 19:08:03 -04:00
|
|
|
# are equivalent.
|
2010-07-06 21:15:16 -04:00
|
|
|
def method_missing(name, *args, &block)
|
|
|
|
if args.empty? && block.nil?
|
2011-05-19 10:56:45 -04:00
|
|
|
@factory.define_attribute(Attribute::Implicit.new(name))
|
2010-07-06 21:15:16 -04:00
|
|
|
else
|
|
|
|
add_attribute(name, *args, &block)
|
|
|
|
end
|
2010-06-10 14:58:47 -04:00
|
|
|
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" }
|
2010-06-10 14:58:47 -04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Is equal to:
|
2010-10-01 18:50:01 -04:00
|
|
|
# sequence(:email) { |n| "person#{n}@example.com" }
|
2010-06-10 14:58:47 -04:00
|
|
|
#
|
2010-10-01 18:50:01 -04:00
|
|
|
# factory :user do
|
2011-01-25 17:55:40 -05:00
|
|
|
# email { FactoryGirl.create(:email) }
|
2010-06-10 14:58:47 -04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Except that no globally available sequence will be defined.
|
2010-08-12 22:42:18 -04:00
|
|
|
def sequence(name, start_value = 1, &block)
|
2011-01-25 17:55:40 -05:00
|
|
|
sequence = Sequence.new(name, start_value, &block)
|
2011-05-19 10:56:45 -04:00
|
|
|
add_attribute(name) { sequence.next }
|
2010-06-10 14:58:47 -04:00
|
|
|
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'
|
2010-06-10 14:58:47 -04:00
|
|
|
# end
|
|
|
|
#
|
2010-10-01 18:50:01 -04:00
|
|
|
# factory :post do
|
|
|
|
# association :author, :factory => :user
|
2010-06-10 14:58:47 -04:00
|
|
|
# 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 = {})
|
|
|
|
factory_name = options.delete(:factory) || name
|
|
|
|
@factory.define_attribute(Attribute::Association.new(name, factory_name, options))
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_build(&block)
|
|
|
|
@factory.add_callback(:after_build, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_create(&block)
|
|
|
|
@factory.add_callback(:after_create, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_stub(&block)
|
|
|
|
@factory.add_callback(:after_stub, &block)
|
|
|
|
end
|
2010-11-12 16:21:16 -05:00
|
|
|
|
|
|
|
def to_create(&block)
|
|
|
|
@factory.to_create(&block)
|
|
|
|
end
|
2011-06-29 16:49:45 -04:00
|
|
|
|
|
|
|
def factory(name, options = {}, &block)
|
|
|
|
@child_factories << [name, options, block]
|
|
|
|
end
|
2010-06-10 14:58:47 -04:00
|
|
|
end
|
|
|
|
end
|