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/spec/support/shared_examples/strategy.rb

105 lines
3.3 KiB
Ruby
Raw Normal View History

2012-02-08 10:17:57 -05:00
shared_examples_for "strategy without association support" do
let(:attribute) { FactoryGirl::Attribute::Association.new(:user, :user, {}) }
def association_named(name, overrides)
runner = FactoryGirl::FactoryRunner.new(name, FactoryGirl::Strategy::Build, [overrides])
subject.association(runner)
end
it "returns nil when accessing an association" do
association_named(:user, {}).should be_nil
end
it "does not attempt to look up the factory when accessing the association" do
FactoryGirl.stubs(:factory_by_name)
association_named(:awesome, {})
FactoryGirl.should have_received(:factory_by_name).never
end
end
2012-02-08 10:17:57 -05:00
shared_examples_for "strategy with association support" do |factory_girl_strategy_class|
let(:factory) { stub("associate_factory") }
def association_named(name, strategy, overrides)
runner = FactoryGirl::FactoryRunner.new(name, strategy, [overrides])
subject.association(runner)
end
before do
2012-03-09 17:20:38 -05:00
FactoryGirl.stubs(factory_by_name: factory)
factory.stubs(:compile)
factory.stubs(:run)
end
it "runs the factory with the correct overrides" do
2012-03-09 17:20:38 -05:00
association_named(:author, factory_girl_strategy_class, great: "value")
factory.should have_received(:run).with(factory_girl_strategy_class, great: "value")
end
it "finds the factory with the correct factory name" do
2012-03-09 17:20:38 -05:00
association_named(:author, factory_girl_strategy_class, great: "value")
FactoryGirl.should have_received(:factory_by_name).with(:author)
end
end
2012-03-09 17:20:38 -05:00
shared_examples_for "strategy with strategy: :build" do |factory_girl_strategy_class|
let(:factory) { stub("associate_factory") }
def association_named(name, overrides)
strategy = FactoryGirl::StrategyCalculator.new(overrides[:strategy]).strategy
runner = FactoryGirl::FactoryRunner.new(name, strategy, [overrides.except(:strategy)])
subject.association(runner)
end
before do
2012-03-09 17:20:38 -05:00
FactoryGirl.stubs(factory_by_name: factory)
factory.stubs(:compile)
factory.stubs(:run)
end
it "runs the factory with the correct overrides" do
2012-03-09 17:20:38 -05:00
association_named(:author, strategy: :build, great: "value")
factory.should have_received(:run).with(factory_girl_strategy_class, { great: "value" })
end
it "finds the factory with the correct factory name" do
2012-03-09 17:20:38 -05:00
association_named(:author, strategy: :build, great: "value")
FactoryGirl.should have_received(:factory_by_name).with(:author)
end
end
2012-02-08 10:17:57 -05:00
shared_examples_for "strategy with callbacks" do |*callback_names|
2011-12-16 14:10:25 -05:00
let(:callback_observer) do
define_class("CallbackObserver") do
attr_reader :callbacks_called
def initialize
@callbacks_called = []
end
def update(callback_name, assigner)
@callbacks_called << [callback_name, assigner]
end
end.new
end
2011-12-16 14:10:25 -05:00
let(:result_instance) do
define_class("ResultInstance") do
attr_accessor :id
end.new
end
2012-03-09 17:20:38 -05:00
let(:assigner) { stub("attribute assigner", object: result_instance) }
2011-12-16 14:10:25 -05:00
before { subject.add_observer(callback_observer) }
2011-12-16 14:10:25 -05:00
it "runs the callbacks #{callback_names} with the assigner's object" do
subject.result(assigner, lambda {|instance| instance })
callback_observer.callbacks_called.should == callback_names.map {|name| [name, assigner.object] }
end
2011-12-16 14:10:25 -05:00
it "returns the object from the assigner" do
subject.result(assigner, lambda {|instance| instance }).should == assigner.object
end
end