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
|
package tests
import (
"context"
"testing"
"time"
"github.com/stretchr/testify/assert"
"go.temporal.io/api/enums/v1"
"go.temporal.io/api/history/v1"
"go.temporal.io/sdk/client"
)
func Test_SimpleWorkflowCancel(t *testing.T) {
s := NewTestServer()
defer s.MustClose()
w, err := s.Client().ExecuteWorkflow(
context.Background(),
client.StartWorkflowOptions{
TaskQueue: "default",
},
"SimpleSignalledWorkflow")
assert.NoError(t, err)
time.Sleep(time.Millisecond * 500)
err = s.Client().CancelWorkflow(context.Background(), w.GetID(), w.GetRunID())
assert.NoError(t, err)
var result interface{}
assert.Error(t, w.Get(context.Background(), &result))
we, err := s.Client().DescribeWorkflowExecution(context.Background(), w.GetID(), w.GetRunID())
assert.NoError(t, err)
assert.Equal(t, "Canceled", we.WorkflowExecutionInfo.Status.String())
}
func Test_CancellableWorkflowScope(t *testing.T) {
s := NewTestServer()
defer s.MustClose()
w, err := s.Client().ExecuteWorkflow(
context.Background(),
client.StartWorkflowOptions{
TaskQueue: "default",
},
"CancelledScopeWorkflow",
"Hello World",
)
assert.NoError(t, err)
var result string
assert.NoError(t, w.Get(context.Background(), &result))
assert.Equal(t, "yes", result)
s.AssertContainsEvent(t, w, func(event *history.HistoryEvent) bool {
return event.EventType == enums.EVENT_TYPE_TIMER_CANCELED
})
s.AssertNotContainsEvent(t, w, func(event *history.HistoryEvent) bool {
return event.EventType == enums.EVENT_TYPE_ACTIVITY_TASK_SCHEDULED
})
}
func Test_CancelledWorkflow(t *testing.T) {
s := NewTestServer()
defer s.MustClose()
w, err := s.Client().ExecuteWorkflow(
context.Background(),
client.StartWorkflowOptions{
TaskQueue: "default",
},
"CancelledWorkflow",
"Hello World",
)
assert.NoError(t, err)
time.Sleep(time.Second)
err = s.Client().CancelWorkflow(context.Background(), w.GetID(), w.GetRunID())
assert.NoError(t, err)
var result interface{}
assert.NoError(t, w.Get(context.Background(), &result))
assert.Equal(t, "CANCELLED", result)
}
func Test_CancelledWithCompensationWorkflow(t *testing.T) {
s := NewTestServer()
defer s.MustClose()
w, err := s.Client().ExecuteWorkflow(
context.Background(),
client.StartWorkflowOptions{
TaskQueue: "default",
},
"CancelledWithCompensationWorkflow",
"Hello World",
)
assert.NoError(t, err)
time.Sleep(time.Second)
err = s.Client().CancelWorkflow(context.Background(), w.GetID(), w.GetRunID())
assert.NoError(t, err)
var result interface{}
assert.NoError(t, w.Get(context.Background(), &result))
assert.Equal(t, "OK", result)
e, err := s.Client().QueryWorkflow(context.Background(), w.GetID(), w.GetRunID(), "getStatus")
assert.NoError(t, err)
trace := make([]string, 0)
assert.NoError(t, e.Get(&trace))
assert.Equal(
t,
[]string{
"yield",
"rollback",
"captured retry",
"captured promise on cancelled",
"START rollback",
"WAIT ROLLBACK",
"RESULT (ROLLBACK)", "DONE rollback",
"COMPLETE rollback",
"result: OK",
},
trace,
)
}
func Test_CancelledNestedWorkflow(t *testing.T) {
s := NewTestServer()
defer s.MustClose()
w, err := s.Client().ExecuteWorkflow(
context.Background(),
client.StartWorkflowOptions{
TaskQueue: "default",
},
"CancelledNestedWorkflow",
)
assert.NoError(t, err)
time.Sleep(time.Second)
err = s.Client().CancelWorkflow(context.Background(), w.GetID(), w.GetRunID())
assert.NoError(t, err)
var result interface{}
assert.NoError(t, w.Get(context.Background(), &result))
assert.Equal(t, "CANCELLED", result)
e, err := s.Client().QueryWorkflow(context.Background(), w.GetID(), w.GetRunID(), "getStatus")
assert.NoError(t, err)
trace := make([]string, 0)
assert.NoError(t, e.Get(&trace))
assert.Equal(
t,
[]string{
"begin",
"first scope",
"second scope",
"close second scope",
"close first scope",
"second scope cancelled",
"first scope cancelled",
"close process",
},
trace,
)
}
func Test_CancelledNSingleScopeWorkflow(t *testing.T) {
s := NewTestServer()
defer s.MustClose()
w, err := s.Client().ExecuteWorkflow(
context.Background(),
client.StartWorkflowOptions{
TaskQueue: "default",
},
"CancelledSingleScopeWorkflow",
)
assert.NoError(t, err)
time.Sleep(time.Second)
err = s.Client().CancelWorkflow(context.Background(), w.GetID(), w.GetRunID())
assert.NoError(t, err)
var result interface{}
assert.NoError(t, w.Get(context.Background(), &result))
assert.Equal(t, "OK", result)
e, err := s.Client().QueryWorkflow(context.Background(), w.GetID(), w.GetRunID(), "getStatus")
assert.NoError(t, err)
trace := make([]string, 0)
assert.NoError(t, e.Get(&trace))
assert.Equal(
t,
[]string{
"start",
"in scope",
"on cancel",
"captured in scope",
"captured in process",
},
trace,
)
}
func Test_CancelledMidflightWorkflow(t *testing.T) {
s := NewTestServer()
defer s.MustClose()
w, err := s.Client().ExecuteWorkflow(
context.Background(),
client.StartWorkflowOptions{
TaskQueue: "default",
},
"CancelledMidflightWorkflow",
)
assert.NoError(t, err)
var result interface{}
assert.NoError(t, w.Get(context.Background(), &result))
assert.Equal(t, "OK", result)
e, err := s.Client().QueryWorkflow(context.Background(), w.GetID(), w.GetRunID(), "getStatus")
assert.NoError(t, err)
trace := make([]string, 0)
assert.NoError(t, e.Get(&trace))
assert.Equal(
t,
[]string{
"start",
"in scope",
"on cancel",
"done cancel",
},
trace,
)
s.AssertNotContainsEvent(t, w, func(event *history.HistoryEvent) bool {
return event.EventType == enums.EVENT_TYPE_ACTIVITY_TASK_SCHEDULED
})
}
func Test_CancelSignalledChildWorkflow(t *testing.T) {
s := NewTestServer()
defer s.MustClose()
w, err := s.Client().ExecuteWorkflow(
context.Background(),
client.StartWorkflowOptions{
TaskQueue: "default",
},
"CancelSignalledChildWorkflow",
)
assert.NoError(t, err)
var result interface{}
assert.NoError(t, w.Get(context.Background(), &result))
assert.Equal(t, "cancelled ok", result)
e, err := s.Client().QueryWorkflow(context.Background(), w.GetID(), w.GetRunID(), "getStatus")
assert.NoError(t, err)
trace := make([]string, 0)
assert.NoError(t, e.Get(&trace))
assert.Equal(
t,
[]string{
"start",
"child started",
"child signalled",
"scope cancelled",
"process done",
},
trace,
)
s.AssertContainsEvent(t, w, func(event *history.HistoryEvent) bool {
return event.EventType == enums.EVENT_TYPE_REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_INITIATED
})
}
|