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/factory.rb

206 lines
5.2 KiB
Ruby
Raw Normal View History

require "active_support/core_ext/hash/keys"
require "active_support/inflector"
module FactoryGirl
class Factory
attr_reader :name, :definition #:nodoc:
2011-08-12 10:35:41 -04:00
def initialize(name, options = {}) #:nodoc:
assert_valid_options(options)
@name = name.is_a?(Symbol) ? name : name.to_s.underscore.to_sym
2011-09-23 16:33:39 -04:00
@parent = options[:parent]
@aliases = options[:aliases] || []
@class_name = options[:class]
@default_strategy = options[:default_strategy]
@definition = Definition.new(@name)
inherit_traits(options[:traits] || [])
end
delegate :add_callback, :declare_attribute, :to_create, :define_trait,
:defined_traits, :traits, :inherit_traits, :to => :@definition
2011-10-14 22:34:51 -04:00
def factory_name
2011-10-09 17:03:22 -04:00
$stderr.puts "DEPRECATION WARNING: factory.factory_name is deprecated; use factory.name instead."
name
end
def build_class #:nodoc:
2011-11-18 08:42:05 -05:00
class_name.to_s.camelize.constantize
end
def default_strategy #:nodoc:
@default_strategy || parent.default_strategy
end
def run(proxy_class, overrides, &block) #:nodoc:
2011-11-20 21:42:59 -05:00
block ||= lambda {|result| result }
runner_options = {
:attributes => attributes,
:callbacks => callbacks,
:to_create => to_create,
:build_class => build_class,
:proxy_class => proxy_class,
:overrides => overrides.dup
}
block[Runner.new(runner_options).run]
end
2009-09-15 15:47:47 -04:00
def human_names
names.map {|name| name.to_s.humanize.downcase }
2009-09-15 15:47:47 -04:00
end
def associations
attributes.select {|attribute| attribute.association? }
end
# Names for this factory, including aliases.
#
# Example:
#
# factory :user, :aliases => [:author] do
# # ...
# end
#
# FactoryGirl.create(:author).class
# # => User
#
# Because an attribute defined without a value or block will build an
# association with the same name, this allows associations to be defined
# without factories, such as:
#
# factory :user, :aliases => [:author] do
# # ...
# end
#
# factory :post do
# author
# end
#
# FactoryGirl.create(:post).author.class
# # => User
def names
2011-09-23 16:33:39 -04:00
[name] + @aliases
end
def compile
2011-10-28 21:23:06 -04:00
parent.defined_traits.each {|trait| define_trait(trait) }
parent.compile
@definition.compile
end
def with_traits(traits)
self.clone.tap do |factory_with_traits|
factory_with_traits.inherit_traits traits
end
end
protected
def class_name #:nodoc:
2011-10-28 21:23:06 -04:00
@class_name || parent.class_name || name
end
2011-10-07 16:43:36 -04:00
def attributes
compile
AttributeList.new(@name).tap do |list|
traits.each do |trait|
list.apply_attributes(trait.attributes)
2011-10-07 16:43:36 -04:00
end
list.apply_attributes(@definition.attributes)
list.apply_attributes(parent.attributes)
2011-10-07 16:43:36 -04:00
end
end
2011-10-07 16:06:28 -04:00
def callbacks
[parent.callbacks, traits.map(&:callbacks).reverse, @definition.callbacks].flatten
2011-10-07 16:06:28 -04:00
end
private
def assert_valid_options(options)
options.assert_valid_keys(:class, :parent, :default_strategy, :aliases, :traits)
2011-01-19 19:26:27 -05:00
if options[:default_strategy]
2011-10-20 16:21:50 -04:00
Proxy.ensure_strategy_exists!(options[:default_strategy])
2011-10-09 17:03:22 -04:00
$stderr.puts "DEPRECATION WARNING: default_strategy is deprecated."
$stderr.puts "Override to_create if you need to prevent a call to #save!."
2011-01-19 19:26:27 -05:00
end
end
2010-06-07 15:51:18 -04:00
def parent
2011-10-28 21:23:06 -04:00
if @parent
FactoryGirl.factory_by_name(@parent)
else
NullFactory.new
end
end
def initialize_copy(source)
super
@definition = @definition.clone
end
class Runner
def initialize(options = {})
@attributes = options[:attributes]
@callbacks = options[:callbacks]
@to_create = options[:to_create]
@build_class = options[:build_class]
@proxy_class = options[:proxy_class]
@overrides = options[:overrides]
end
def run
apply_attributes
2011-10-20 12:00:01 -04:00
apply_remaining_overrides
proxy.result(@to_create)
end
private
def apply_attributes
@attributes.each do |attribute|
if overrides_for_attribute(attribute).any?
2011-10-20 12:00:01 -04:00
handle_attribute_with_overrides(attribute)
else
handle_attribute_without_overrides(attribute)
end
end
end
2011-10-20 12:00:01 -04:00
def apply_remaining_overrides
@overrides.each { |attr, val| add_static_attribute(attr, val) }
2011-10-20 12:00:01 -04:00
end
def overrides_for_attribute(attribute)
2011-11-25 21:06:50 -05:00
@overrides.select { |attr, val| attribute.alias_for?(attr) }
end
2011-10-20 12:00:01 -04:00
def handle_attribute_with_overrides(attribute)
overrides_for_attribute(attribute).each do |attr, val|
add_static_attribute(attr, val, attribute.ignored)
@overrides.delete(attr)
end
end
def add_static_attribute(attr, val, ignored = false)
2011-11-30 22:13:55 -05:00
proxy.set(Attribute::Static.new(attr, val, ignored))
end
def handle_attribute_without_overrides(attribute)
2011-11-30 22:13:55 -05:00
proxy.set(attribute)
end
def proxy
@proxy ||= @proxy_class.new(@build_class, @callbacks)
end
end
end
end