-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathform_state_machine_spec.rb
More file actions
447 lines (350 loc) · 14.8 KB
/
Copy pathform_state_machine_spec.rb
File metadata and controls
447 lines (350 loc) · 14.8 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
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
require "rails_helper"
class FakeForm < ApplicationRecord
self.table_name = "forms"
include FormStateMachine
# stub the expected interface
def all_ready_for_live?; end
def can_make_english_version_live?; end
def can_make_welsh_version_live?; end
def after_create_draft; end
def before_make_live; end
def before_make_english_live; end
def before_make_welsh_live; end
def after_make_live; end
def after_make_english_live; end
def after_make_welsh_live; end
def after_archive; end
end
RSpec.describe FormStateMachine do
let(:form) { FakeForm.new }
it "has a default state of 'draft'" do
expect(form).to have_state(:draft)
end
describe ".delete_form event" do
it "does not transition if form is not a draft" do
expect(form).not_to transition_from(:live).to(:deleted).on_event(:delete_form)
end
context "when form is draft" do
let(:form) { FakeForm.new(state: :draft) }
it "transitions to deleted stated and is destroyed" do
expect(form).to receive(:destroy!)
expect(form).to transition_from(:draft).to(:deleted).on_event(:delete_form)
end
end
end
describe ".make_live" do
shared_examples "transition to live state" do |form_state|
before do
allow(form).to receive_messages(all_ready_for_live?: true, before_make_live: nil, after_make_live: nil)
end
it "transitions to live state" do
expect(form).to transition_from(form_state).to(:live).on_event(:make_live)
end
it "calls the before_make_live callback" do
form.make_live
expect(form).to have_received(:before_make_live)
end
it "calls the after_make_live callback" do
form.make_live
expect(form).to have_received(:after_make_live)
end
end
context "when form is draft" do
let(:form) { FakeForm.new(state: :draft) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:draft).to(:live).on_event(:make_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :draft
end
end
context "when form is live_with_draft" do
let(:form) { FakeForm.new(state: :live_with_draft) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:live_with_draft).to(:live).on_event(:make_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :live_with_draft
end
end
context "when form is archived" do
let(:form) { FakeForm.new(state: :archived) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:archived).to(:live).on_event(:make_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :archived
end
end
context "when form is archived_with_draft" do
let(:form) { FakeForm.new(state: :archived_with_draft) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:archived_with_draft).to(:live).on_event(:make_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :archived_with_draft
end
end
end
describe ".make_english_version_live" do
shared_examples "transition to live state" do |form_state|
before do
allow(form).to receive_messages(can_make_english_version_live?: true, before_make_english_live: nil, after_make_english_live: nil)
end
it "transitions to live state" do
expect(form).to transition_from(form_state).to(:live).on_event(:make_english_version_live)
end
it "calls the before_make_english_live callback" do
form.make_english_version_live
expect(form).to have_received(:before_make_english_live)
end
it "calls the after_make_english_live callback" do
form.make_english_version_live
expect(form).to have_received(:after_make_english_live)
end
end
context "when form is draft" do
let(:form) { FakeForm.new(state: :draft) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:draft).to(:live).on_event(:make_english_version_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :draft
end
end
context "when form is live" do
let(:form) { FakeForm.new(state: :live) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:live).to(:live).on_event(:make_english_version_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :live
end
end
context "when form is live_with_draft" do
let(:form) { FakeForm.new(state: :live_with_draft) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:live_with_draft).to(:live).on_event(:make_english_version_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :live_with_draft
end
end
context "when form is archived" do
let(:form) { FakeForm.new(state: :archived) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:archived).to(:live).on_event(:make_english_version_live)
end
context "when all sections are completed" do
before do
allow(form).to receive_messages(can_make_english_version_live?: true, before_make_english_live: nil, after_make_english_live: nil)
end
it "does not transition to live state" do
expect(form).not_to transition_from(:archived).to(:live).on_event(:make_english_version_live)
end
end
end
context "when form is archived_with_draft" do
let(:form) { FakeForm.new(state: :archived_with_draft) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:archived_with_draft).to(:live).on_event(:make_english_version_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :archived_with_draft
end
end
end
describe ".make_welsh_version_live" do
shared_examples "transition to live state" do |form_state|
before do
allow(form).to receive_messages(can_make_welsh_version_live?: true, before_make_welsh_live: nil, after_make_welsh_live: nil)
end
it "transitions to live state" do
expect(form).to transition_from(form_state).to(:live).on_event(:make_welsh_version_live)
end
it "calls the before_make_welsh_live callback" do
form.make_welsh_version_live
expect(form).to have_received(:before_make_welsh_live)
end
it "calls the after_make_welsh_live callback" do
form.make_welsh_version_live
expect(form).to have_received(:after_make_welsh_live)
end
end
context "when form is draft" do
let(:form) { FakeForm.new(state: :draft) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:archived).to(:live).on_event(:make_welsh_version_live)
end
context "when all sections are completed" do
before do
allow(form).to receive_messages(can_make_welsh_version_live?: true, before_make_welsh_live: nil, after_make_welsh_live: nil)
end
it "does not transition to live state" do
expect(form).not_to transition_from(:archived).to(:live).on_event(:make_welsh_version_live)
end
end
end
context "when form is live_with_draft" do
let(:form) { FakeForm.new(state: :live_with_draft) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:live_with_draft).to(:live).on_event(:make_welsh_version_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :live_with_draft
end
end
context "when form is live" do
let(:form) { FakeForm.new(state: :live) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:live).to(:live).on_event(:make_welsh_version_live)
end
context "when all sections are completed" do
it_behaves_like "transition to live state", :live
end
end
context "when form is archived" do
let(:form) { FakeForm.new(state: :archived) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:archived).to(:live).on_event(:make_welsh_version_live)
end
context "when all sections are completed" do
before do
allow(form).to receive_messages(can_make_welsh_version_live?: true, before_make_welsh_live: nil, after_make_welsh_live: nil)
end
it "does not transition to live state" do
expect(form).not_to transition_from(:archived).to(:live).on_event(:make_welsh_version_live)
end
end
end
context "when form is archived_with_draft" do
let(:form) { FakeForm.new(state: :archived_with_draft) }
it "does not transition to live state by default" do
expect(form).not_to transition_from(:archived_with_draft).to(:live).on_event(:make_welsh_version_live)
end
context "when all sections are completed" do
before do
allow(form).to receive_messages(can_make_english_version_live?: true, before_make_english_live: nil, after_make_english_live: nil)
end
it "does not transition to live state" do
expect(form).not_to transition_from(:archived).to(:live).on_event(:make_welsh_version_live)
end
end
end
end
describe ".create_draft_from_live_form" do
let(:form) { FakeForm.new(state: :live) }
before do
allow(form).to receive(:after_create_draft)
end
it "transitions to live_with_draft if form is live" do
expect(form).to transition_from(:live).to(:live_with_draft).on_event(:create_draft_from_live_form)
end
it "calls the after_create_draft callback" do
form.create_draft_from_live_form
expect(form).to have_received :after_create_draft
end
context "when form is draft" do
let(:form) { FakeForm.new(state: :draft) }
it "does not transition to live_with_draft" do
expect(form).not_to transition_from(:draft).to(:live_with_draft).on_event(:create_draft_from_live_form)
end
it "does not call the after_create_draft callback" do
expect { form.create_draft_from_live_form }.to raise_error AASM::InvalidTransition
expect(form).not_to have_received :after_create_draft
end
end
end
describe ".create_draft_from_archived_form" do
let(:form) { FakeForm.new(state: :archived) }
before do
allow(form).to receive(:after_create_draft)
end
it "transitions to archived_with_draft" do
expect(form).to transition_from(:archived).to(:archived_with_draft).on_event(:create_draft_from_archived_form)
end
it "calls the after_create_draft callback" do
form.create_draft_from_archived_form
expect(form).to have_received :after_create_draft
end
context "when form is draft" do
let(:form) { FakeForm.new(state: :draft) }
it "does not transition to archived_with_draft" do
expect(form).not_to transition_from(:draft).to(:archived_with_draft).on_event(:create_draft_from_archived_form)
end
it "does not call the after_create_draft callback" do
expect { form.create_draft_from_archived_form }.to raise_error AASM::InvalidTransition
expect(form).not_to have_received :after_create_draft
end
end
end
describe ".archive_live_form" do
context "when the form is draft" do
let(:form) { FakeForm.new(state: :draft) }
it "does not transition to archived" do
expect(form).not_to transition_from(:draft).to(:archived).on_event(:archive_live_form)
end
end
context "when the form is live" do
let(:form) { FakeForm.new(state: :live) }
before do
allow(form).to receive(:after_archive)
end
it "transitions to archived" do
expect(form).to transition_from(:live).to(:archived).on_event(:archive_live_form)
end
it "calls the after_archive callback" do
form.archive_live_form
expect(form).to have_received(:after_archive)
end
end
context "when form is live_with_draft" do
let(:form) { FakeForm.new(state: :live_with_draft) }
before do
allow(form).to receive(:after_archive)
end
it "transitions to archived_with_draft" do
expect(form).to transition_from(:live_with_draft).to(:archived_with_draft).on_event(:archive_live_form)
end
it "calls the FormDocumentSyncService" do
form.archive_live_form
expect(form).to have_received(:after_archive)
end
end
end
describe ".event_path" do
it "returns the event for a state one transition away" do
expect(FakeForm.event_path(from: :live, to: :archived))
.to eq %i[archive_live_form]
end
it "returns the events to fire in order when the target state needs intermediate transitions" do
# no event goes directly from draft to archived, so the form has to be
# made live on the way
expect(FakeForm.event_path(from: :draft, to: :archived))
.to eq %i[make_live archive_live_form]
end
it "returns the shortest sequence of events when there is more than one route" do
# an archived_with_draft form could reach archived by being made live
# and archived again, but deleting its draft gets there in one transition
expect(FakeForm.event_path(from: :archived_with_draft, to: :archived))
.to eq %i[delete_draft_from_archived_form]
end
it "returns an empty path when the form is already in the target state" do
expect(FakeForm.event_path(from: :live, to: :live)).to eq []
end
it "returns nil when no sequence of events reaches the target state" do
# no event transitions a form back to draft once it has been made live
expect(FakeForm.event_path(from: :live, to: :draft)).to be_nil
end
it "never routes through the delete_form event" do
# delete_form is the only transition into the deleted state, but firing
# it would destroy the form, so deleted is treated as unreachable
expect(FakeForm.event_path(from: :draft, to: :deleted)).to be_nil
end
it "never routes through the language-specific live events" do
# make_english_version_live also transitions from draft to live, but it
# publishes only one translation, so the path uses make_live
expect(FakeForm.event_path(from: :draft, to: :live)).to eq %i[make_live]
end
end
end