1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/spec/unit/event_spec.rb

194 lines
5.9 KiB
Ruby
Raw Normal View History

2012-11-05 17:38:50 -05:00
require 'spec_helper'
2008-01-07 14:11:38 -05:00
2012-11-05 17:38:50 -05:00
describe 'adding an event' do
2008-01-07 14:11:38 -05:00
def new_event
2012-11-05 17:38:50 -05:00
@event = AASM::SupportingClasses::Event.new(:close_order, {:success => :success_callback}) do
2008-01-07 14:11:38 -05:00
transitions :to => :closed, :from => [:open, :received]
end
end
it 'should set the name' do
new_event
2012-11-05 17:38:50 -05:00
@event.name.should == :close_order
2008-01-07 14:11:38 -05:00
end
it 'should set the success option' do
new_event
2012-11-05 17:38:50 -05:00
@event.success.should == :success_callback
end
it 'should create StateTransitions' do
2008-01-07 14:11:38 -05:00
AASM::SupportingClasses::StateTransition.should_receive(:new).with({:to => :closed, :from => :open})
AASM::SupportingClasses::StateTransition.should_receive(:new).with({:to => :closed, :from => :received})
new_event
end
end
describe 'transition inspection' do
before do
@event = AASM::SupportingClasses::Event.new(:run) do
transitions :to => :running, :from => :sleeping
end
end
it 'should support inspecting transitions from states' do
@event.transitions_from_state(:sleeping).map(&:to).should == [:running]
@event.transitions_from_state?(:sleeping).should be_true
@event.transitions_from_state(:cleaning).map(&:to).should == []
@event.transitions_from_state?(:cleaning).should be_false
end
it 'should support inspecting transitions to states' do
@event.transitions_to_state(:running).map(&:from).should == [:sleeping]
@event.transitions_to_state?(:running).should be_true
@event.transitions_to_state(:cleaning).map(&:to).should == []
@event.transitions_to_state?(:cleaning).should be_false
end
end
2012-11-05 17:38:50 -05:00
describe 'firing an event' do
it 'should return nil if the transitions are empty' do
2008-08-13 17:56:16 -04:00
obj = mock('object')
obj.stub!(:aasm_current_state)
2008-08-13 17:56:16 -04:00
event = AASM::SupportingClasses::Event.new(:event)
event.fire(obj).should be_nil
end
it 'should return the state of the first matching transition it finds' do
event = AASM::SupportingClasses::Event.new(:event) do
transitions :to => :closed, :from => [:open, :received]
end
obj = mock('object')
obj.stub!(:aasm_current_state).and_return(:open)
event.fire(obj).should == :closed
end
it 'should call the guard with the params passed in' do
event = AASM::SupportingClasses::Event.new(:event) do
transitions :to => :closed, :from => [:open, :received], :guard => :guard_fn
end
obj = mock('object')
obj.stub!(:aasm_current_state).and_return(:open)
obj.should_receive(:guard_fn).with('arg1', 'arg2').and_return(true)
event.fire(obj, nil, 'arg1', 'arg2').should == :closed
end
end
2012-11-05 17:38:50 -05:00
describe 'executing the success callback' do
it "should send the success callback if it's a symbol" do
ThisNameBetterNotBeInUse.instance_eval {
aasm_event :with_symbol, :success => :symbol_success_callback do
transitions :to => :symbol, :from => [:initial]
end
}
model = ThisNameBetterNotBeInUse.new
model.should_receive(:symbol_success_callback)
model.with_symbol!
end
it "should send the success callback if it's a string" do
ThisNameBetterNotBeInUse.instance_eval {
aasm_event :with_string, :success => 'string_success_callback' do
transitions :to => :string, :from => [:initial]
end
}
model = ThisNameBetterNotBeInUse.new
model.should_receive(:string_success_callback)
model.with_string!
end
it "should call each success callback if passed an array of strings and/or symbols" do
ThisNameBetterNotBeInUse.instance_eval {
aasm_event :with_array, :success => [:success_callback1, 'success_callback2'] do
transitions :to => :array, :from => [:initial]
end
}
model = ThisNameBetterNotBeInUse.new
model.should_receive(:success_callback1)
model.should_receive(:success_callback2)
model.with_array!
end
it "should call each success callback if passed an array of strings and/or symbols and/or procs" do
ThisNameBetterNotBeInUse.instance_eval {
aasm_event :with_array_including_procs, :success => [:success_callback1, 'success_callback2', lambda { |obj| obj.proc_success_callback }] do
transitions :to => :array, :from => [:initial]
end
}
model = ThisNameBetterNotBeInUse.new
model.should_receive(:success_callback1)
model.should_receive(:success_callback2)
model.should_receive(:proc_success_callback)
model.with_array_including_procs!
end
it "should call the success callback if it's a proc" do
ThisNameBetterNotBeInUse.instance_eval {
aasm_event :with_proc, :success => lambda { |obj| obj.proc_success_callback } do
transitions :to => :proc, :from => [:initial]
end
}
model = ThisNameBetterNotBeInUse.new
model.should_receive(:proc_success_callback)
model.with_proc!
end
end
2012-11-28 04:42:41 -05:00
describe 'parametrised events' do
2012-12-02 02:54:58 -05:00
let(:pe) {ParametrisedEvent.new}
2012-11-28 04:42:41 -05:00
it 'should transition to specified next state (sleeping to showering)' do
2012-12-02 02:54:58 -05:00
pe.wakeup!(:showering)
pe.aasm_current_state.should == :showering
2012-11-28 04:42:41 -05:00
end
it 'should transition to specified next state (sleeping to working)' do
2012-12-02 02:54:58 -05:00
pe.wakeup!(:working)
pe.aasm_current_state.should == :working
2012-11-28 04:42:41 -05:00
end
it 'should transition to default (first or showering) state' do
2012-12-02 02:54:58 -05:00
pe.wakeup!
pe.aasm_current_state.should == :showering
2012-11-28 04:42:41 -05:00
end
it 'should transition to default state when on_transition invoked' do
2012-12-02 02:54:58 -05:00
pe.dress!(nil, 'purple', 'dressy')
pe.aasm_current_state.should == :working
2012-11-28 04:42:41 -05:00
end
it 'should call on_transition method with args' do
2012-12-02 02:54:58 -05:00
pe.wakeup!(:showering)
pe.should_receive(:wear_clothes).with('blue', 'jeans')
pe.dress!(:working, 'blue', 'jeans')
2012-11-28 04:42:41 -05:00
end
it 'should call on_transition proc' do
2012-12-02 02:54:58 -05:00
pe.wakeup!(:showering)
pe.should_receive(:wear_clothes).with('purple', 'slacks')
pe.dress!(:dating, 'purple', 'slacks')
2012-11-28 04:42:41 -05:00
end
it 'should call on_transition with an array of methods' do
2012-12-02 02:54:58 -05:00
pe.wakeup!(:showering)
pe.should_receive(:condition_hair)
pe.should_receive(:fix_hair)
pe.dress!(:prettying_up)
2012-11-28 04:42:41 -05:00
end
end