-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathTaskManager.test.ts
More file actions
435 lines (368 loc) · 12.4 KB
/
Copy pathTaskManager.test.ts
File metadata and controls
435 lines (368 loc) · 12.4 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
import { expect, describe, test, jest, afterEach } from "@jest/globals";
import {
MetadataClient,
simpleTask,
taskDefinition,
WorkflowExecutor,
orkesConductorClient,
TaskManager,
ConductorWorker,
} from "../sdk";
import { mockLogger } from "./utils/mockLogger";
import { waitForWorkflowCompletion } from "./utils/waitForWorkflowCompletion";
const BASE_TIME = 1000;
describe("TaskManager", () => {
const clientPromise = orkesConductorClient();
const workflowsToCleanup: { name: string; version: number }[] = [];
const tasksToCleanup: string[] = [];
jest.setTimeout(30000);
afterEach(async () => {
const client = await clientPromise;
const metadataClient = new MetadataClient(client);
await Promise.allSettled(
workflowsToCleanup.map((w) =>
metadataClient.unregisterWorkflow(w.name, w.version)
)
);
await Promise.allSettled(
tasksToCleanup.map((t) => metadataClient.unregisterTask(t))
);
workflowsToCleanup.length = 0;
tasksToCleanup.length = 0;
});
test("Should run workflow with worker", async () => {
const client = await clientPromise;
const executor = new WorkflowExecutor(client);
const taskName = `jsSdkTest-taskmanager-test-${Date.now()}`;
const workflowName = `jsSdkTest-taskmanager-test-wf-${Date.now()}`;
const worker: ConductorWorker = {
taskDefName: taskName,
execute: async () => {
return {
outputData: {
hello: "From your worker",
},
status: "COMPLETED",
};
},
};
const manager = new TaskManager(client, [worker], {
options: { pollInterval: BASE_TIME },
});
manager.startPolling();
await executor.registerWorkflow(true, {
name: workflowName,
version: 1,
ownerEmail: "developers@orkes.io",
tasks: [simpleTask(taskName, taskName, {})],
inputParameters: [],
outputParameters: {},
timeoutSeconds: 0,
});
workflowsToCleanup.push({ name: workflowName, version: 1 });
const executionId = await executor.startWorkflow({
name: workflowName,
input: {},
version: 1,
});
if (!executionId) {
throw new Error("Execution ID is undefined");
}
const workflowStatus = await waitForWorkflowCompletion(
executor,
executionId,
BASE_TIME * 30
);
expect(workflowStatus.status).toEqual("COMPLETED");
await manager.stopPolling();
});
test("On error it should call the errorHandler provided", async () => {
const client = await clientPromise;
const executor = new WorkflowExecutor(client);
const metadataClient = new MetadataClient(client);
const taskName = `jsSdkTest-taskmanager-error-handler-test-${Date.now()}`;
const workflowName = `jsSdkTest-taskmanager-error-handler-test-wf-${Date.now()}`;
const mockErrorHandler = jest.fn();
const worker: ConductorWorker = {
taskDefName: taskName,
execute: async () => {
throw new Error("This is a forced error for testing error handler");
},
};
await metadataClient.registerTask(
taskDefinition({
name: taskName,
timeoutSeconds: 0,
retryCount: 0,
})
);
tasksToCleanup.push(taskName);
const manager = new TaskManager(client, [worker], {
options: { pollInterval: BASE_TIME },
onError: mockErrorHandler,
});
manager.startPolling();
await executor.registerWorkflow(true, {
name: workflowName,
version: 1,
ownerEmail: "developers@orkes.io",
tasks: [simpleTask(taskName, taskName, {})],
inputParameters: [],
outputParameters: {},
timeoutSeconds: 0,
});
workflowsToCleanup.push({ name: workflowName, version: 1 });
const status = await executor.startWorkflow({
name: workflowName,
input: {},
version: 1,
correlationId: `${workflowName}-id`,
});
if (!status) {
throw new Error("Status is undefined");
}
const workflowStatus = await waitForWorkflowCompletion(
executor,
status,
BASE_TIME * 30
);
expect(workflowStatus.status).toEqual("FAILED");
expect(mockErrorHandler).toHaveBeenCalledTimes(1);
await manager.stopPolling();
});
test("If no error handler provided. it should just update the task", async () => {
const client = await clientPromise;
const executor = new WorkflowExecutor(client);
const metadataClient = new MetadataClient(client);
const taskName = `jsSdkTest-taskmanager-error-test-${Date.now()}`;
const workflowName = `jsSdkTest-taskmanager-error-test-wf-${Date.now()}`;
const worker: ConductorWorker = {
taskDefName: taskName,
execute: async () => {
throw new Error("This is a forced error");
},
};
await metadataClient.registerTask(
taskDefinition({
name: taskName,
timeoutSeconds: 0,
retryCount: 0,
})
);
tasksToCleanup.push(taskName);
const manager = new TaskManager(client, [worker], {
options: { pollInterval: BASE_TIME },
});
manager.startPolling();
await executor.registerWorkflow(true, {
name: workflowName,
version: 1,
ownerEmail: "developers@orkes.io",
tasks: [simpleTask(taskName, taskName, {})],
inputParameters: [],
outputParameters: {},
timeoutSeconds: 0,
});
workflowsToCleanup.push({ name: workflowName, version: 1 });
const executionId = await executor.startWorkflow({
name: workflowName,
input: {},
version: 1,
correlationId: `${workflowName}-id`,
});
if (!executionId) {
throw new Error("Execution ID is undefined");
}
const workflowStatus = await waitForWorkflowCompletion(
executor,
executionId,
BASE_TIME * 30
);
expect(workflowStatus.status).toEqual("FAILED");
await manager.stopPolling();
});
test("multi worker example", async () => {
const client = await clientPromise;
const executor = new WorkflowExecutor(client);
// just create a bunch of worker names
const workerNames: string[] = Array.from({ length: 3 })
.fill(0)
.map((_, i: number) => `jsSdkTest-taskman-multi-${1 + i}-${Date.now()}`);
// names to actual workers
const workers: ConductorWorker[] = workerNames.map((name) => ({
taskDefName: name,
execute: async () => {
return {
outputData: {
hello: "From your worker",
},
status: "COMPLETED",
};
},
}));
//create the manager with initial configuations
const manager = new TaskManager(client, workers, {
options: { pollInterval: BASE_TIME, concurrency: 2 },
// logger: console,
});
// start polling
manager.startPolling();
expect(manager.isPolling).toBeTruthy();
const workflowName = `jsSdkTest-taskmanager-multi-test-wf-${Date.now()}`;
// increase polling speed
manager.updatePollingOptions({ concurrency: 4 });
// create the workflow where we will run the test
await executor.registerWorkflow(true, {
name: workflowName,
version: 1,
ownerEmail: "developers@orkes.io",
tasks: workerNames.map((name) => simpleTask(name, name, {})),
inputParameters: [],
outputParameters: {},
timeoutSeconds: 0,
});
workflowsToCleanup.push({ name: workflowName, version: 1 });
//Start workflow
const executionId = await executor.startWorkflow({
name: workflowName,
version: 1,
correlationId: `${workflowName}-id`,
});
expect(executionId).toBeDefined();
if (!executionId) {
throw new Error("Execution ID is undefined");
}
// decrease speed again
manager.updatePollingOptions({ pollInterval: BASE_TIME, concurrency: 1 });
const workflowStatus = await waitForWorkflowCompletion(
executor,
executionId,
BASE_TIME * 30
);
expect(workflowStatus.status).toEqual("COMPLETED");
await manager.stopPolling();
expect(manager.isPolling).toBeFalsy();
expect(manager.options.concurrency).toBe(1);
expect(manager.options.pollInterval).toBe(BASE_TIME);
});
test("Should not be able to startPolling if TaskManager has no workers", async () => {
const client = await clientPromise;
const manager = new TaskManager(client, [], {
options: { pollInterval: BASE_TIME, concurrency: 2 },
});
expect(() => manager.startPolling()).toThrow(
"No workers supplied to TaskManager"
);
});
test("Should not be able to startPolling if duplicate workers", async () => {
const client = await clientPromise;
const workerName = `jsSdkTest-worker-name-${Date.now()}`;
const workerNames: string[] = Array.from({ length: 3 })
.fill(0)
.map(() => workerName);
// names to actual workers
const workers: ConductorWorker[] = workerNames.map((name) => ({
taskDefName: name,
execute: async () => {
return {
outputData: {
hello: "From your worker",
},
status: "COMPLETED",
};
},
}));
const manager = new TaskManager(client, workers, {
options: { pollInterval: BASE_TIME, concurrency: 2 },
});
expect(() => manager.startPolling()).toThrow(
`Duplicate worker taskDefName: ${workerName}`
);
});
test("Updates single worker properties", async () => {
const client = await clientPromise;
const executor = new WorkflowExecutor(client);
const workerName = `jsSdkTest-taskman-single-worker-update-${Date.now()}`;
// just create a bunch of worker names
const workerNames: string[] = Array.from({ length: 3 })
.fill(0)
.map((_, i: number) => `${workerName}-${1 + i}`);
const candidateWorkerUpdate = `${workerName}-1`;
const initialCandidateWorkflowOptions = {
concurrency: 1,
pollInterval: BASE_TIME * 3,
};
// names to actual workers
const workers: ConductorWorker[] = workerNames.map((name) => ({
taskDefName: name,
execute: async () => {
return {
outputData: {
hello: "From your worker",
},
status: "COMPLETED",
};
},
...(name === candidateWorkerUpdate
? initialCandidateWorkflowOptions
: {}),
}));
//create the manager with initial configuations
const manager = new TaskManager(client, workers, {
options: { pollInterval: BASE_TIME, concurrency: 2 },
logger: mockLogger,
});
// start polling
manager.startPolling();
expect(manager.isPolling).toBeTruthy();
const workflowName = `jsSdkTest-taskmanager-multi-single-worker-update-wf-${Date.now()}`;
const updatedWorkerOptions = {
concurrency: 3,
pollInterval: BASE_TIME,
};
// change the polling options for a single worker
manager.updatePollingOptionForWorker(
candidateWorkerUpdate,
updatedWorkerOptions
);
// create the workflow where we will run the test
await executor.registerWorkflow(true, {
name: workflowName,
version: 1,
ownerEmail: "developers@orkes.io",
tasks: workerNames.map((name) => simpleTask(name, name, {})),
inputParameters: [],
outputParameters: {},
timeoutSeconds: 0,
});
workflowsToCleanup.push({ name: workflowName, version: 1 });
//Start workflow
const executionId = await executor.startWorkflow({
name: workflowName,
version: 1,
correlationId: `${workflowName}-id`,
});
expect(executionId).toBeDefined();
if (!executionId) {
throw new Error("Execution ID is undefined");
}
// decrease speed again
manager.updatePollingOptions({ pollInterval: BASE_TIME, concurrency: 1 });
const workflowStatus = await waitForWorkflowCompletion(
executor,
executionId,
BASE_TIME * 30
);
expect(workflowStatus.status).toEqual("COMPLETED");
await manager.stopPolling();
expect(manager.isPolling).toBeFalsy();
expect(manager.options.concurrency).toBe(1);
expect(manager.options.pollInterval).toBe(BASE_TIME);
expect(mockLogger.info).toHaveBeenCalledWith(
`TaskWorker ${candidateWorkerUpdate} initialized with concurrency of ${initialCandidateWorkflowOptions.concurrency} and poll interval of ${initialCandidateWorkflowOptions.pollInterval}`
);
expect(mockLogger.info).toHaveBeenCalledWith(
`TaskWorker ${candidateWorkerUpdate} configuration updated with concurrency of ${updatedWorkerOptions.concurrency} and poll interval of ${updatedWorkerOptions.pollInterval}`
);
});
});