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

133 lines
4.9 KiB
Ruby
Raw Normal View History

2012-10-26 03:01:16 -04:00
require 'spec_helper'
2012-12-02 02:51:48 -05:00
describe 'callbacks for the new DSL' do
let(:callback) {CallbackNewDsl.new}
it "be called in order" do
expect(callback).to receive(:exit_open).once.ordered
expect(callback).to receive(:before).once.ordered
expect(callback).to receive(:before_exit_open).once.ordered # these should be before the state changes
expect(callback).to receive(:before_enter_closed).once.ordered
expect(callback).to receive(:enter_closed).once.ordered
expect(callback).to receive(:aasm_write_state).once.ordered.and_return(true) # this is when the state changes
expect(callback).to receive(:after_exit_open).once.ordered # these should be after the state changes
expect(callback).to receive(:after_enter_closed).once.ordered
expect(callback).to receive(:after).once.ordered
2012-12-02 02:51:48 -05:00
callback.close!
2012-10-26 03:01:16 -04:00
end
it "should properly pass arguments" do
cb = CallbackNewDslArgs.new
cb.should_receive(:exit_open).once.ordered
cb.should_receive(:before).with(:arg1, :arg2).once.ordered
cb.should_receive(:transition_proc).with(:arg1, :arg2).once.ordered
cb.should_receive(:before_exit_open).once.ordered # these should be before the state changes
cb.should_receive(:before_enter_closed).once.ordered
cb.should_receive(:enter_closed).once.ordered
cb.should_receive(:aasm_write_state).once.ordered.and_return(true) # this is when the state changes
cb.should_receive(:after_exit_open).once.ordered # these should be after the state changes
cb.should_receive(:after_enter_closed).once.ordered
cb.should_receive(:after).with(:arg1, :arg2).once.ordered
cb.close!(:arg1, :arg2)
end
it "should call the proper methods given a to state as the first arg" do
cb = CallbackWithStateArg.new
cb.should_receive(:before_method).with(:arg1).once.ordered
cb.should_receive(:transition_method).with(:arg1).once.ordered
cb.should_receive(:transition_method).never
cb.should_receive(:after_method).with(:arg1).once.ordered
cb.close!(:arg1)
cb = CallbackWithStateArg.new
cb.should_receive(:before_method).with(:arg1).once.ordered
cb.should_receive(:transition_method).never
cb.should_receive(:transition_method2).with(:arg1).once.ordered
cb.should_receive(:after_method).with(:arg1).once.ordered
cb.close!(:out_to_lunch, :arg1)
end
2012-10-26 03:01:16 -04:00
end
2012-11-28 04:42:41 -05:00
2012-12-02 02:51:48 -05:00
describe 'event callbacks' do
2012-11-28 04:42:41 -05:00
describe "with an error callback defined" do
before do
class Foo
aasm do
event :safe_close, :success => :success_callback, :error => :error_callback do
transitions :to => :closed, :from => [:open]
end
2012-11-28 04:42:41 -05:00
end
end
@foo = Foo.new
end
it "should run error_callback if an exception is raised and error_callback defined" do
2012-12-02 02:51:48 -05:00
def @foo.error_callback(e); end
allow(@foo).to receive(:enter).and_raise(e=StandardError.new)
expect(@foo).to receive(:error_callback).with(e)
2012-12-02 02:51:48 -05:00
2012-11-28 04:42:41 -05:00
@foo.safe_close!
end
it "should raise NoMethodError if exceptionis raised and error_callback is declared but not defined" do
allow(@foo).to receive(:enter).and_raise(StandardError)
expect{@foo.safe_close!}.to raise_error(NoMethodError)
2012-11-28 04:42:41 -05:00
end
it "should propagate an error if no error callback is declared" do
allow(@foo).to receive(:enter).and_raise("Cannot enter safe")
expect{@foo.close!}.to raise_error(StandardError, "Cannot enter safe")
2012-11-28 04:42:41 -05:00
end
end
describe "with aasm_event_fired defined" do
before do
@foo = Foo.new
2012-12-02 02:51:48 -05:00
def @foo.aasm_event_fired(event, from, to); end
2012-11-28 04:42:41 -05:00
end
it 'should call it for successful bang fire' do
expect(@foo).to receive(:aasm_event_fired).with(:close, :open, :closed)
2012-11-28 04:42:41 -05:00
@foo.close!
end
it 'should call it for successful non-bang fire' do
expect(@foo).to receive(:aasm_event_fired)
2012-11-28 04:42:41 -05:00
@foo.close
end
it 'should not call it for failing bang fire' do
allow(@foo.aasm).to receive(:set_current_state_with_persistence).and_return(false)
expect(@foo).not_to receive(:aasm_event_fired)
2012-11-28 04:42:41 -05:00
@foo.close!
end
end
describe "with aasm_event_failed defined" do
before do
@foo = Foo.new
2012-12-02 02:51:48 -05:00
def @foo.aasm_event_failed(event, from); end
2012-11-28 04:42:41 -05:00
end
it 'should call it when transition failed for bang fire' do
expect(@foo).to receive(:aasm_event_failed).with(:null, :open)
expect {@foo.null!}.to raise_error(AASM::InvalidTransition)
2012-11-28 04:42:41 -05:00
end
it 'should call it when transition failed for non-bang fire' do
expect(@foo).to receive(:aasm_event_failed).with(:null, :open)
expect {@foo.null}.to raise_error(AASM::InvalidTransition)
2012-11-28 04:42:41 -05:00
end
it 'should not call it if persist fails for bang fire' do
allow(@foo.aasm).to receive(:set_current_state_with_persistence).and_return(false)
expect(@foo).to receive(:aasm_event_failed)
2012-11-28 04:42:41 -05:00
@foo.close!
end
end
end