forked from coinbase/temporal-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontinue_as_new_spec.rb
49 lines (43 loc) · 1.25 KB
/
continue_as_new_spec.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
require 'workflows/loop_workflow'
describe LoopWorkflow do
it 'workflow continues as new into a new run' do
workflow_id = SecureRandom.uuid
memo = {
'my-memo' => 'foo',
}
headers = {
'my-header' => 'bar',
}
run_id = Temporal.start_workflow(
LoopWorkflow,
2, # it continues as new if this arg is > 1
options: {
workflow_id: workflow_id,
memo: memo,
headers: headers,
},
)
# First run will throw because it continued as new
next_run_id = nil
expect do
Temporal.await_workflow_result(
LoopWorkflow,
workflow_id: workflow_id,
run_id: run_id,
)
end.to raise_error(Temporal::WorkflowRunContinuedAsNew) do |error|
next_run_id = error.new_run_id
end
expect(next_run_id).to_not eq(nil)
# Second run will not throw because it returns rather than continues as new.
final_result = Temporal.await_workflow_result(
LoopWorkflow,
workflow_id: workflow_id,
run_id: next_run_id,
)
expect(final_result[:count]).to eq(1)
# memo and headers should be copied to the next run automatically
expect(final_result[:memo]).to eq(memo)
expect(final_result[:headers]).to eq(headers)
end
end