-
Notifications
You must be signed in to change notification settings - Fork 209
/
main_test.rb
373 lines (332 loc) · 9.09 KB
/
main_test.rb
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
require File.join(File.dirname(__FILE__), 'test_helper')
$VERBOSE = false
require 'workflow'
require 'mocha/minitest'
require 'stringio'
#require 'ruby-debug'
class Order # here: activerecord independent. TODO: rename and review all test cases in main
include Workflow
workflow do
state :submitted do
event :accept, :transitions_to => :accepted, :meta => {:weight => 8} do |reviewer, args|
end
end
state :accepted do
event :ship, :transitions_to => :shipped
end
state :shipped
end
end
class MainTest < Minitest::Test
test 'on_entry and on_exit invoked' do
c = Class.new
callbacks = mock()
callbacks.expects(:my_on_exit_new).once
callbacks.expects(:my_on_entry_old).once
c.class_eval do
include Workflow
workflow do
state :new do
event :age, :transitions_to => :old
end
on_exit do
callbacks.my_on_exit_new
end
state :old
on_entry do
callbacks.my_on_entry_old
end
on_exit do
fail "wrong on_exit executed"
end
end
end
o = c.new
assert_equal 'new', o.current_state.to_s
o.age!
end
test 'on_transition invoked' do
callbacks = mock()
callbacks.expects(:on_tran).once # this is validated at the end
c = Class.new
c.class_eval do
include Workflow
workflow do
state :one do
event :increment, :transitions_to => :two
end
state :two
on_transition do |from, to, triggering_event, *event_args|
callbacks.on_tran
end
end
end
assert nil != c.workflow_spec.on_transition_proc
c.new.increment!
end
test 'access event meta information' do
c = Class.new
c.class_eval do
include Workflow
workflow do
state :main, :meta => {:importance => 8}
state :supplemental, :meta => {:importance => 1}
end
end
assert_equal 1, c.workflow_spec.states[:supplemental].meta[:importance]
end
test 'initial state' do
c = Class.new
c.class_eval do
include Workflow
workflow { state :one; state :two }
end
assert_equal 'one', c.new.current_state.to_s
end
test 'including a child workflow definition for composable workflows' do
child = Proc.new do
state :two
end
c = Class.new
c.class_eval do
include Workflow
workflow do
state :one
include child
state :three
end
end
assert_equal [:one, :two, :three], c.workflow_spec.states.keys
end
# TODO Consider following test case:
# test 'multiple events with the same name and different arguments lists from different states'
test 'implicit transition callback' do
args = mock()
args.expects(:my_tran).once # this is validated at the end
c = Class.new
c.class_eval do
include Workflow
def my_transition(args)
args.my_tran
end
workflow do
state :one do
event :my_transition, :transitions_to => :two
end
state :two
end
private
def another_transition(args)
args.another_tran
end
end
a = c.new
a.my_transition!(args)
end
test '#53 Support for non public transition callbacks' do
args = mock()
args.expects(:log).with('in private callback').once
args.expects(:log).with('in protected callback in the base class').once
args.expects(:log).with('in protected callback `on_assigned_entry`').once
b = Class.new # the base class with a protected callback
b.class_eval do
protected
def assign_old(args)
args.log('in protected callback in the base class')
end
end
c = Class.new(b) # inheriting class with an additional protected callback
c.class_eval do
include Workflow
workflow do
state :new do
event :assign, :transitions_to => :assigned
event :assign_old, :transitions_to => :assigned_old
end
state :assigned
state :assigned_old
end
protected
def on_assigned_entry(prev_state, event, args)
args.log('in protected callback `on_assigned_entry`')
end
private
def assign(args)
args.log('in private callback')
end
end
a = c.new
a.assign!(args)
a2 = c.new
a2.assign_old!(args)
end
test '#58 Limited private transition callback lookup' do
args = mock()
c = Class.new
c.class_eval do
include Workflow
workflow do
state :new do
event :fail, :transitions_to => :failed
end
state :failed
end
end
a = c.new
a.fail!(args)
end
test 'Better error message for missing target state' do
class Problem
include Workflow
workflow do
state :initial do
event :solve, :transitions_to => :solved
end
end
end
assert_raises Workflow::WorkflowError do
Problem.new.solve!
end
end
# Intermixing of transition graph definition (states, transitions)
# on the one side and implementation of the actions on the other side
# for a bigger state machine can introduce clutter.
#
# To reduce this clutter it is now possible to use state entry- and
# exit- hooks defined through a naming convention. For example, if there
# is a state :pending, then you can hook in by defining method
# `def on_pending_exit(new_state, event, *args)` instead of using a
# block:
#
# state :pending do
# on_entry do
# # your implementation here
# end
# end
#
# If both a function with a name according to naming convention and the
# on_entry/on_exit block are given, then only on_entry/on_exit block is used.
test 'on_entry and on_exit hooks in separate methods' do
c = Class.new
c.class_eval do
include Workflow
attr_reader :history
def initialize
@history = []
end
workflow do
state :new do
event :next, :transitions_to => :next_state
end
state :next_state
end
def on_next_state_entry(prior_state, event, *args)
@history << "on_next_state_entry #{event} #{prior_state} ->"
end
def on_new_exit(new_state, event, *args)
@history << "on_new_exit #{event} -> #{new_state}"
end
end
o = c.new
assert_equal 'new', o.current_state.to_s
assert_equal [], o.history
o.next!
assert_equal ['on_new_exit next -> next_state', 'on_next_state_entry next new ->'], o.history
end
test 'diagram generation' do
begin
$stdout = StringIO.new('', 'w')
require 'workflow/draw'
Workflow::Draw::workflow_diagram(Order, :path => '/tmp')
assert_match(/run the following/, $stdout.string,
'PDF should be generate and a hint be given to the user.')
ensure
$stdout = STDOUT
end
end
test 'halt stops the transition' do
c = Class.new do
include Workflow
workflow do
state :young do
event :age, :transitions_to => :old
end
state :old
end
def age(by=1)
halt 'too fast' if by > 100
end
end
joe = c.new
assert joe.young?
joe.age! 120
assert joe.young?, 'Transition should have been halted'
assert_equal 'too fast', joe.halted_because
end
test 'halt! raises exception immediately' do
article_class = Class.new do
include Workflow
attr_accessor :too_far
workflow do
state :new do
event :reject, :transitions_to => :rejected
end
state :rejected
end
def reject(reason)
halt! 'We do not reject articles unless the reason is important' \
unless reason =~ /important/i
self.too_far = "This line should not be executed"
end
end
article = article_class.new
assert article.new?
assert_raises Workflow::TransitionHalted do
article.reject! 'Too funny'
end
assert_nil article.too_far
assert article.new?, 'Transition should have been halted'
article.reject! 'Important: too short'
assert article.rejected?, 'Transition should happen now'
end
test 'can fire event?' do
c = Class.new do
include Workflow
workflow do
state :newborn do
event :go_to_school, :transitions_to => :schoolboy
end
state :schoolboy do
event :go_to_college, :transitions_to => :student
end
state :student
state :street
end
end
human = c.new
assert human.can_go_to_school?
assert_equal false, human.can_go_to_college?
end
test 'workflow graph generation' do
require 'workflow/draw'
Dir.chdir('/tmp') do
capture_streams do
Workflow::Draw::workflow_diagram(Order, :path => '/tmp')
end
end
end
test 'workflow graph generation in a path with spaces' do
require 'workflow/draw'
`mkdir -p '/tmp/Workflow test'`
capture_streams do
Workflow::Draw::workflow_diagram(Order, :path => '/tmp/Workflow test')
end
end
def capture_streams
old_stdout, $stdout = $stdout, StringIO.new
yield
$stdout
ensure
$stdout = old_stdout
end
end