2008-05-28 18:20:25 -04:00
|
|
|
class Factory
|
2008-07-22 19:46:01 -04:00
|
|
|
|
2008-12-11 15:54:33 -05:00
|
|
|
class << self
|
|
|
|
attr_accessor :factories #:nodoc:
|
|
|
|
|
|
|
|
# An Array of strings specifying locations that should be searched for
|
|
|
|
# factory definitions. By default, factory_girl will attempt to require
|
|
|
|
# "factories," "test/factories," and "spec/factories." Only the first
|
|
|
|
# existing file will be loaded.
|
|
|
|
attr_accessor :definition_file_paths
|
|
|
|
end
|
2008-05-28 18:54:54 -04:00
|
|
|
|
2008-12-11 15:54:33 -05:00
|
|
|
self.factories = {}
|
2008-08-20 10:20:41 -04:00
|
|
|
self.definition_file_paths = %w(factories test/factories spec/factories)
|
|
|
|
|
2008-06-23 18:17:01 -04:00
|
|
|
attr_reader :factory_name
|
2009-01-02 15:45:34 -05:00
|
|
|
attr_reader :attributes #:nodoc:
|
2008-05-28 18:54:54 -04:00
|
|
|
|
2008-05-31 18:16:59 -04:00
|
|
|
# Defines a new factory that can be used by the build strategies (create and
|
|
|
|
# build) to build new objects.
|
2008-05-28 18:54:54 -04:00
|
|
|
#
|
|
|
|
# Arguments:
|
|
|
|
# name: (Symbol)
|
|
|
|
# A unique name used to identify this factory.
|
2008-05-28 21:07:51 -04:00
|
|
|
# options: (Hash)
|
|
|
|
# class: the class that will be used when generating instances for this
|
2008-05-29 01:11:33 -04:00
|
|
|
# factory. If not specified, the class will be guessed from the
|
|
|
|
# factory name.
|
2008-05-28 18:54:54 -04:00
|
|
|
#
|
|
|
|
# Yields:
|
|
|
|
# The newly created factory (Factory)
|
2008-05-28 21:07:51 -04:00
|
|
|
def self.define (name, options = {})
|
|
|
|
instance = Factory.new(name, options)
|
2008-05-28 18:54:54 -04:00
|
|
|
yield(instance)
|
2008-07-29 14:22:18 -04:00
|
|
|
self.factories[instance.factory_name] = instance
|
2008-05-28 18:54:54 -04:00
|
|
|
end
|
|
|
|
|
2008-05-29 01:11:33 -04:00
|
|
|
def build_class #:nodoc:
|
2008-07-29 16:20:44 -04:00
|
|
|
@build_class ||= class_for(@options[:class] || factory_name)
|
2008-05-28 21:07:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def initialize (name, options = {}) #:nodoc:
|
2008-12-11 15:54:33 -05:00
|
|
|
assert_valid_options(options)
|
2008-07-29 16:20:44 -04:00
|
|
|
@factory_name = factory_name_for(name)
|
2008-06-23 18:17:01 -04:00
|
|
|
@options = options
|
2008-07-30 13:46:06 -04:00
|
|
|
@attributes = []
|
2008-05-28 20:00:46 -04:00
|
|
|
end
|
|
|
|
|
2008-05-31 18:16:59 -04:00
|
|
|
# Adds an attribute that should be assigned on generated instances for this
|
|
|
|
# factory.
|
2008-05-28 20:00:46 -04:00
|
|
|
#
|
|
|
|
# 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 overriden for a specific instance.
|
|
|
|
#
|
2009-01-02 16:27:58 -05:00
|
|
|
# When defining lazy attributes, an instance of Factory::Strategy will
|
2008-05-31 18:16:59 -04:00
|
|
|
# be yielded, allowing associations to be built using the correct build
|
|
|
|
# strategy.
|
|
|
|
#
|
2008-05-28 20:00:46 -04:00
|
|
|
# Arguments:
|
|
|
|
# name: (Symbol)
|
|
|
|
# The name of this attribute. This will be assigned using :"#{name}=" for
|
2008-05-29 01:11:33 -04:00
|
|
|
# generated instances.
|
2008-05-28 20:00:46 -04:00
|
|
|
# value: (Object)
|
|
|
|
# If no block is given, this value will be used for this attribute.
|
|
|
|
def add_attribute (name, value = nil, &block)
|
2008-07-30 13:59:58 -04:00
|
|
|
attribute = Attribute.new(name, value, block)
|
2008-07-30 14:04:43 -04:00
|
|
|
|
|
|
|
if attribute_defined?(attribute.name)
|
|
|
|
raise AttributeDefinitionError, "Attribute already defined: #{name}"
|
|
|
|
end
|
|
|
|
|
2008-07-30 13:46:06 -04:00
|
|
|
@attributes << attribute
|
2008-05-28 20:00:46 -04:00
|
|
|
end
|
|
|
|
|
2008-05-28 21:14:57 -04:00
|
|
|
# Calls add_attribute using the missing method name as the name of the
|
|
|
|
# attribute, so that:
|
|
|
|
#
|
|
|
|
# Factory.define :user do |f|
|
|
|
|
# f.name 'Billy Idol'
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# and:
|
|
|
|
#
|
|
|
|
# Factory.define :user do |f|
|
2008-06-10 15:38:18 -04:00
|
|
|
# f.add_attribute :name, 'Billy Idol'
|
2008-05-28 21:14:57 -04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# are equivilent.
|
|
|
|
def method_missing (name, *args, &block)
|
|
|
|
add_attribute(name, *args, &block)
|
|
|
|
end
|
|
|
|
|
2008-07-29 15:53:47 -04:00
|
|
|
# Adds an attribute that builds an association. The associated instance will
|
|
|
|
# be built using the same build strategy as the parent instance.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# Factory.define :user do |f|
|
|
|
|
# f.name 'Joey'
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Factory.define :post do |f|
|
|
|
|
# f.association :author, :factory => :user
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Arguments:
|
|
|
|
# name: (Symbol)
|
|
|
|
# The name of this attribute.
|
|
|
|
# options: (Hash)
|
|
|
|
# factory: (Symbol)
|
|
|
|
# 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 = {})
|
|
|
|
name = name.to_sym
|
2008-12-11 15:54:33 -05:00
|
|
|
options = symbolize_keys(options)
|
2008-07-29 15:53:47 -04:00
|
|
|
association_factory = options[:factory] || name
|
|
|
|
|
|
|
|
add_attribute(name) {|a| a.association(association_factory) }
|
|
|
|
end
|
|
|
|
|
2008-12-30 16:36:26 -05:00
|
|
|
# Generates and returns a Hash of attributes from this factory. Attributes
|
|
|
|
# can be individually overridden by passing in a Hash of attribute => value
|
|
|
|
# pairs.
|
|
|
|
#
|
|
|
|
# Arguments:
|
2009-01-02 15:45:34 -05:00
|
|
|
# overrides: (Hash)
|
2008-12-30 16:36:26 -05:00
|
|
|
# Attributes to overwrite for this set.
|
|
|
|
#
|
|
|
|
# Returns:
|
|
|
|
# A set of attributes that can be used to build an instance of the class
|
|
|
|
# this factory generates. (Hash)
|
2009-01-02 15:45:34 -05:00
|
|
|
def self.attributes_for (name, overrides = {})
|
|
|
|
factory_by_name(name).run_strategy(Strategy::AttributesFor, overrides)
|
2008-12-30 16:36:26 -05:00
|
|
|
end
|
2008-05-28 22:09:30 -04:00
|
|
|
|
2008-12-30 16:36:26 -05:00
|
|
|
# Generates and returns an instance from this factory. Attributes can be
|
|
|
|
# individually overridden by passing in a Hash of attribute => value pairs.
|
|
|
|
#
|
|
|
|
# Arguments:
|
2009-01-02 15:45:34 -05:00
|
|
|
# overrides: (Hash)
|
2008-12-30 16:36:26 -05:00
|
|
|
# See attributes_for
|
|
|
|
#
|
|
|
|
# Returns:
|
|
|
|
# An instance of the class this factory generates, with generated
|
|
|
|
# attributes assigned.
|
2009-01-02 15:45:34 -05:00
|
|
|
def self.build (name, overrides = {})
|
|
|
|
factory_by_name(name).run_strategy(Strategy::Build, overrides)
|
2008-12-30 16:36:26 -05:00
|
|
|
end
|
2008-05-28 22:09:30 -04:00
|
|
|
|
2008-12-30 16:36:26 -05:00
|
|
|
# Generates, saves, and returns an instance from this factory. Attributes can
|
|
|
|
# be individually overridden by passing in a Hash of attribute => value
|
|
|
|
# pairs.
|
|
|
|
#
|
|
|
|
# If the instance is not valid, an ActiveRecord::Invalid exception will be
|
|
|
|
# raised.
|
|
|
|
#
|
|
|
|
# Arguments:
|
2009-01-02 15:45:34 -05:00
|
|
|
# overrides: (Hash)
|
2008-12-30 16:36:26 -05:00
|
|
|
# See attributes_for
|
|
|
|
#
|
|
|
|
# Returns:
|
|
|
|
# A saved instance of the class this factory generates, with generated
|
|
|
|
# attributes assigned.
|
2009-01-02 15:45:34 -05:00
|
|
|
def self.create (name, overrides = {})
|
|
|
|
factory_by_name(name).run_strategy(Strategy::Create, overrides)
|
2008-12-30 16:36:26 -05:00
|
|
|
end
|
2008-05-28 22:09:30 -04:00
|
|
|
|
2008-12-30 16:36:26 -05:00
|
|
|
def self.find_definitions #:nodoc:
|
|
|
|
definition_file_paths.each do |path|
|
|
|
|
require("#{path}.rb") if File.exists?("#{path}.rb")
|
2008-10-24 12:14:13 -04:00
|
|
|
|
2008-12-30 16:36:26 -05:00
|
|
|
if File.directory? path
|
|
|
|
Dir[File.join(path, '*.rb')].each do |file|
|
|
|
|
require file
|
2008-08-20 10:20:41 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2008-05-28 22:09:30 -04:00
|
|
|
end
|
|
|
|
|
2009-01-02 15:45:34 -05:00
|
|
|
def run_strategy (strategy_class, overrides) #:nodoc:
|
2008-12-30 16:31:26 -05:00
|
|
|
strategy = strategy_class.new(build_class)
|
|
|
|
overrides = symbolize_keys(overrides)
|
|
|
|
overrides.each {|attr, val| strategy.set(attr, val) }
|
|
|
|
passed_keys = overrides.keys.collect {|k| Factory.aliases_for(k) }.flatten
|
2008-07-30 13:46:06 -04:00
|
|
|
@attributes.each do |attribute|
|
2008-07-30 15:47:12 -04:00
|
|
|
unless passed_keys.include?(attribute.name)
|
2008-12-30 16:31:26 -05:00
|
|
|
strategy.set(attribute.name, attribute.value(strategy))
|
2008-07-30 13:46:06 -04:00
|
|
|
end
|
2008-05-31 18:16:59 -04:00
|
|
|
end
|
2008-12-30 16:31:26 -05:00
|
|
|
strategy.result
|
2008-05-31 18:16:59 -04:00
|
|
|
end
|
|
|
|
|
2009-01-02 13:40:57 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def self.factory_by_name (name)
|
|
|
|
factories[name.to_sym] or raise ArgumentError.new("No such factory: #{name.to_s}")
|
|
|
|
end
|
|
|
|
|
2008-07-29 16:20:44 -04:00
|
|
|
def class_for (class_or_to_s)
|
|
|
|
if class_or_to_s.respond_to?(:to_sym)
|
2008-12-11 15:54:33 -05:00
|
|
|
Object.const_get(variable_name_to_class_name(class_or_to_s))
|
2008-07-29 16:20:44 -04:00
|
|
|
else
|
|
|
|
class_or_to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def factory_name_for (class_or_to_s)
|
|
|
|
if class_or_to_s.respond_to?(:to_sym)
|
|
|
|
class_or_to_s.to_sym
|
|
|
|
else
|
2008-12-11 15:54:33 -05:00
|
|
|
class_name_to_variable_name(class_or_to_s).to_sym
|
2008-07-29 16:20:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-07-30 14:04:43 -04:00
|
|
|
def attribute_defined? (name)
|
|
|
|
!@attributes.detect {|attr| attr.name == name }.nil?
|
|
|
|
end
|
|
|
|
|
2008-12-11 15:54:33 -05:00
|
|
|
def assert_valid_options(options)
|
|
|
|
invalid_keys = options.keys - [:class]
|
|
|
|
unless invalid_keys == []
|
|
|
|
raise ArgumentError, "Unknown arguments: #{invalid_keys.inspect}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Based on ActiveSupport's underscore inflector
|
|
|
|
def class_name_to_variable_name(name)
|
|
|
|
name.to_s.gsub(/::/, '/').
|
|
|
|
gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
|
|
|
|
gsub(/([a-z\d])([A-Z])/,'\1_\2').
|
|
|
|
tr("-", "_").
|
|
|
|
downcase
|
|
|
|
end
|
|
|
|
|
|
|
|
# Based on ActiveSupport's camelize inflector
|
|
|
|
def variable_name_to_class_name(name)
|
|
|
|
name.to_s.
|
|
|
|
gsub(/\/(.?)/) { "::#{$1.upcase}" }.
|
|
|
|
gsub(/(?:^|_)(.)/) { $1.upcase }
|
|
|
|
end
|
|
|
|
|
|
|
|
# From ActiveSupport
|
|
|
|
def symbolize_keys(hash)
|
|
|
|
hash.inject({}) do |options, (key, value)|
|
|
|
|
options[(key.to_sym rescue key) || key] = value
|
|
|
|
options
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-05-28 18:20:25 -04:00
|
|
|
end
|