lifecycle_spec.rb
2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
require 'helper'
describe Delayed::Lifecycle do
let(:lifecycle) { Delayed::Lifecycle.new }
let(:callback) { lambda {|*args|} }
let(:arguments) { [1] }
let(:behavior) { double(Object, :before! => nil, :after! => nil, :inside! => nil) }
let(:wrapped_block) { Proc.new { behavior.inside! } }
describe "before callbacks" do
before(:each) do
lifecycle.before(:execute, &callback)
end
it "executes before wrapped block" do
callback.should_receive(:call).with(*arguments).ordered
behavior.should_receive(:inside!).ordered
lifecycle.run_callbacks :execute, *arguments, &wrapped_block
end
end
describe "after callbacks" do
before(:each) do
lifecycle.after(:execute, &callback)
end
it "executes after wrapped block" do
behavior.should_receive(:inside!).ordered
callback.should_receive(:call).with(*arguments).ordered
lifecycle.run_callbacks :execute, *arguments, &wrapped_block
end
end
describe "around callbacks" do
before(:each) do
lifecycle.around(:execute) do |*args, &block|
behavior.before!
block.call(*args)
behavior.after!
end
end
it "wraps a block" do
behavior.should_receive(:before!).ordered
behavior.should_receive(:inside!).ordered
behavior.should_receive(:after!).ordered
lifecycle.run_callbacks :execute, *arguments, &wrapped_block
end
it "executes multiple callbacks in order" do
behavior.should_receive(:one).ordered
behavior.should_receive(:two).ordered
behavior.should_receive(:three).ordered
lifecycle.around(:execute) { |*args, &block| behavior.one; block.call(*args) }
lifecycle.around(:execute) { |*args, &block| behavior.two; block.call(*args) }
lifecycle.around(:execute) { |*args, &block| behavior.three; block.call(*args) }
lifecycle.run_callbacks(:execute, *arguments, &wrapped_block)
end
end
it "raises if callback is executed with wrong number of parameters" do
lifecycle.before(:execute, &callback)
expect { lifecycle.run_callbacks(:execute, 1,2,3) {} }.to raise_error(ArgumentError, /1 parameter/)
end
end