Merge branch 'master' into feature/task-functions
[poolifier.git] / tests / pools / abstract / abstract-pool.test.js
CommitLineData
a449b585 1const { EventEmitter } = require('node:events')
a61a0724 2const { expect } = require('expect')
b1aae695 3const sinon = require('sinon')
e843b904 4const {
70a4f5ea 5 DynamicClusterPool,
9e619829 6 DynamicThreadPool,
aee46736 7 FixedClusterPool,
e843b904 8 FixedThreadPool,
aee46736 9 PoolEvents,
184855e6 10 PoolTypes,
3d6dd312 11 WorkerChoiceStrategies,
184855e6 12 WorkerTypes
cdace0e5 13} = require('../../../lib')
78099a15 14const { CircularArray } = require('../../../lib/circular-array')
574b351d 15const { Deque } = require('../../../lib/deque')
6cd5248f 16const { DEFAULT_TASK_NAME } = require('../../../lib/utils')
23ccf9d7 17const { version } = require('../../../package.json')
2431bdb4 18const { waitPoolEvents } = require('../../test-utils')
47352846 19const { WorkerNode } = require('../../../lib/pools/worker-node')
e1ffb94f
JB
20
21describe('Abstract pool test suite', () => {
fc027381 22 const numberOfWorkers = 2
a8884ffd 23 class StubPoolWithIsMain extends FixedThreadPool {
e1ffb94f
JB
24 isMain () {
25 return false
26 }
3ec964d6 27 }
3ec964d6 28
dc021bcc
JB
29 afterEach(() => {
30 sinon.restore()
31 })
32
3ec964d6 33 it('Simulate pool creation from a non main thread/process', () => {
8d3782fa
JB
34 expect(
35 () =>
a8884ffd 36 new StubPoolWithIsMain(
7c0ba920 37 numberOfWorkers,
8d3782fa
JB
38 './tests/worker-files/thread/testWorker.js',
39 {
041dc05b 40 errorHandler: e => console.error(e)
8d3782fa
JB
41 }
42 )
04f45163 43 ).toThrowError(
e695d66f
JB
44 new Error(
45 'Cannot start a pool from a worker with the same type as the pool'
46 )
04f45163 47 )
3ec964d6 48 })
c510fea7 49
bc61cfe6
JB
50 it('Verify that pool statuses properties are set', async () => {
51 const pool = new FixedThreadPool(
52 numberOfWorkers,
53 './tests/worker-files/thread/testWorker.js'
54 )
55 expect(pool.starting).toBe(false)
56 expect(pool.started).toBe(true)
57 await pool.destroy()
bc61cfe6
JB
58 })
59
c510fea7 60 it('Verify that filePath is checked', () => {
292ad316
JB
61 const expectedError = new Error(
62 'Please specify a file with a worker implementation'
63 )
7c0ba920 64 expect(() => new FixedThreadPool(numberOfWorkers)).toThrowError(
292ad316 65 expectedError
8d3782fa 66 )
7c0ba920 67 expect(() => new FixedThreadPool(numberOfWorkers, '')).toThrowError(
292ad316 68 expectedError
8d3782fa 69 )
3d6dd312
JB
70 expect(() => new FixedThreadPool(numberOfWorkers, 0)).toThrowError(
71 expectedError
72 )
73 expect(() => new FixedThreadPool(numberOfWorkers, true)).toThrowError(
74 expectedError
75 )
76 expect(
77 () => new FixedThreadPool(numberOfWorkers, './dummyWorker.ts')
78 ).toThrowError(new Error("Cannot find the worker file './dummyWorker.ts'"))
8d3782fa
JB
79 })
80
81 it('Verify that numberOfWorkers is checked', () => {
82 expect(() => new FixedThreadPool()).toThrowError(
e695d66f
JB
83 new Error(
84 'Cannot instantiate a pool without specifying the number of workers'
85 )
8d3782fa
JB
86 )
87 })
88
89 it('Verify that a negative number of workers is checked', () => {
90 expect(
91 () =>
92 new FixedClusterPool(-1, './tests/worker-files/cluster/testWorker.js')
93 ).toThrowError(
473c717a
JB
94 new RangeError(
95 'Cannot instantiate a pool with a negative number of workers'
96 )
8d3782fa
JB
97 )
98 })
99
100 it('Verify that a non integer number of workers is checked', () => {
101 expect(
102 () =>
103 new FixedThreadPool(0.25, './tests/worker-files/thread/testWorker.js')
104 ).toThrowError(
473c717a 105 new TypeError(
0d80593b 106 'Cannot instantiate a pool with a non safe integer number of workers'
8d3782fa
JB
107 )
108 )
c510fea7 109 })
7c0ba920 110
216541b6 111 it('Verify that dynamic pool sizing is checked', () => {
a5ed75b7
JB
112 expect(
113 () =>
114 new DynamicClusterPool(
115 1,
116 undefined,
117 './tests/worker-files/cluster/testWorker.js'
118 )
119 ).toThrowError(
120 new TypeError(
121 'Cannot instantiate a dynamic pool without specifying the maximum pool size'
122 )
123 )
2761efb4
JB
124 expect(
125 () =>
126 new DynamicThreadPool(
127 0.5,
128 1,
129 './tests/worker-files/thread/testWorker.js'
130 )
131 ).toThrowError(
132 new TypeError(
133 'Cannot instantiate a pool with a non safe integer number of workers'
134 )
135 )
136 expect(
137 () =>
138 new DynamicClusterPool(
139 0,
140 0.5,
a5ed75b7 141 './tests/worker-files/cluster/testWorker.js'
2761efb4
JB
142 )
143 ).toThrowError(
144 new TypeError(
145 'Cannot instantiate a dynamic pool with a non safe integer maximum pool size'
146 )
147 )
2431bdb4
JB
148 expect(
149 () =>
150 new DynamicThreadPool(2, 1, './tests/worker-files/thread/testWorker.js')
151 ).toThrowError(
152 new RangeError(
153 'Cannot instantiate a dynamic pool with a maximum pool size inferior to the minimum pool size'
154 )
155 )
156 expect(
157 () =>
213cbac6 158 new DynamicThreadPool(0, 0, './tests/worker-files/thread/testWorker.js')
2431bdb4
JB
159 ).toThrowError(
160 new RangeError(
213cbac6 161 'Cannot instantiate a dynamic pool with a maximum pool size equal to zero'
2431bdb4
JB
162 )
163 )
21f710aa
JB
164 expect(
165 () =>
213cbac6
JB
166 new DynamicClusterPool(
167 1,
168 1,
169 './tests/worker-files/cluster/testWorker.js'
170 )
21f710aa
JB
171 ).toThrowError(
172 new RangeError(
213cbac6 173 'Cannot instantiate a dynamic pool with a minimum pool size equal to the maximum pool size. Use a fixed pool instead'
21f710aa
JB
174 )
175 )
2431bdb4
JB
176 })
177
fd7ebd49 178 it('Verify that pool options are checked', async () => {
7c0ba920
JB
179 let pool = new FixedThreadPool(
180 numberOfWorkers,
181 './tests/worker-files/thread/testWorker.js'
182 )
cca3bb1a 183 expect(pool.emitter).toBeInstanceOf(EventEmitter)
47352846
JB
184 expect(pool.opts).toStrictEqual({
185 startWorkers: true,
186 enableEvents: true,
187 restartWorkerOnError: true,
188 enableTasksQueue: false,
189 workerChoiceStrategy: WorkerChoiceStrategies.ROUND_ROBIN,
190 workerChoiceStrategyOptions: {
191 retries: 6,
192 runTime: { median: false },
193 waitTime: { median: false },
194 elu: { median: false }
195 }
8990357d
JB
196 })
197 expect(pool.workerChoiceStrategyContext.opts).toStrictEqual({
8c0b113f 198 retries: 6,
932fc8be 199 runTime: { median: false },
5df69fab
JB
200 waitTime: { median: false },
201 elu: { median: false }
da309861 202 })
999ef664
JB
203 for (const [, workerChoiceStrategy] of pool.workerChoiceStrategyContext
204 .workerChoiceStrategies) {
205 expect(workerChoiceStrategy.opts).toStrictEqual({
206 retries: 6,
207 runTime: { median: false },
208 waitTime: { median: false },
209 elu: { median: false }
210 })
211 }
fd7ebd49 212 await pool.destroy()
73bfd59d 213 const testHandler = () => console.info('test handler executed')
7c0ba920
JB
214 pool = new FixedThreadPool(
215 numberOfWorkers,
216 './tests/worker-files/thread/testWorker.js',
217 {
e4543b14 218 workerChoiceStrategy: WorkerChoiceStrategies.LEAST_USED,
49be33fe 219 workerChoiceStrategyOptions: {
932fc8be 220 runTime: { median: true },
fc027381 221 weights: { 0: 300, 1: 200 }
49be33fe 222 },
35cf1c03 223 enableEvents: false,
1f68cede 224 restartWorkerOnError: false,
ff733df7 225 enableTasksQueue: true,
d4aeae5a 226 tasksQueueOptions: { concurrency: 2 },
35cf1c03
JB
227 messageHandler: testHandler,
228 errorHandler: testHandler,
229 onlineHandler: testHandler,
230 exitHandler: testHandler
7c0ba920
JB
231 }
232 )
7c0ba920 233 expect(pool.emitter).toBeUndefined()
47352846
JB
234 expect(pool.opts).toStrictEqual({
235 startWorkers: true,
236 enableEvents: false,
237 restartWorkerOnError: false,
238 enableTasksQueue: true,
239 tasksQueueOptions: {
240 concurrency: 2,
2324f8c9 241 size: Math.pow(numberOfWorkers, 2),
dbd73092 242 taskStealing: true,
47352846
JB
243 tasksStealingOnBackPressure: true
244 },
245 workerChoiceStrategy: WorkerChoiceStrategies.LEAST_USED,
246 workerChoiceStrategyOptions: {
247 retries: 6,
248 runTime: { median: true },
249 waitTime: { median: false },
250 elu: { median: false },
251 weights: { 0: 300, 1: 200 }
252 },
253 onlineHandler: testHandler,
254 messageHandler: testHandler,
255 errorHandler: testHandler,
256 exitHandler: testHandler
8990357d
JB
257 })
258 expect(pool.workerChoiceStrategyContext.opts).toStrictEqual({
8c0b113f 259 retries: 6,
8990357d
JB
260 runTime: { median: true },
261 waitTime: { median: false },
262 elu: { median: false },
fc027381 263 weights: { 0: 300, 1: 200 }
da309861 264 })
999ef664
JB
265 for (const [, workerChoiceStrategy] of pool.workerChoiceStrategyContext
266 .workerChoiceStrategies) {
267 expect(workerChoiceStrategy.opts).toStrictEqual({
268 retries: 6,
269 runTime: { median: true },
270 waitTime: { median: false },
271 elu: { median: false },
272 weights: { 0: 300, 1: 200 }
273 })
274 }
fd7ebd49 275 await pool.destroy()
7c0ba920
JB
276 })
277
a20f0ba5 278 it('Verify that pool options are validated', async () => {
d4aeae5a
JB
279 expect(
280 () =>
281 new FixedThreadPool(
282 numberOfWorkers,
283 './tests/worker-files/thread/testWorker.js',
284 {
f0d7f803 285 workerChoiceStrategy: 'invalidStrategy'
d4aeae5a
JB
286 }
287 )
8735b4e5
JB
288 ).toThrowError(
289 new Error("Invalid worker choice strategy 'invalidStrategy'")
290 )
7e653ee0
JB
291 expect(
292 () =>
293 new FixedThreadPool(
294 numberOfWorkers,
295 './tests/worker-files/thread/testWorker.js',
296 {
297 workerChoiceStrategyOptions: {
8c0b113f 298 retries: 'invalidChoiceRetries'
7e653ee0
JB
299 }
300 }
301 )
302 ).toThrowError(
303 new TypeError(
8c0b113f 304 'Invalid worker choice strategy options: retries must be an integer'
7e653ee0
JB
305 )
306 )
307 expect(
308 () =>
309 new FixedThreadPool(
310 numberOfWorkers,
311 './tests/worker-files/thread/testWorker.js',
312 {
313 workerChoiceStrategyOptions: {
8c0b113f 314 retries: -1
7e653ee0
JB
315 }
316 }
317 )
318 ).toThrowError(
319 new RangeError(
8c0b113f 320 "Invalid worker choice strategy options: retries '-1' must be greater or equal than zero"
7e653ee0
JB
321 )
322 )
49be33fe
JB
323 expect(
324 () =>
325 new FixedThreadPool(
326 numberOfWorkers,
327 './tests/worker-files/thread/testWorker.js',
328 {
329 workerChoiceStrategyOptions: { weights: {} }
330 }
331 )
332 ).toThrowError(
8735b4e5
JB
333 new Error(
334 'Invalid worker choice strategy options: must have a weight for each worker node'
335 )
49be33fe 336 )
f0d7f803
JB
337 expect(
338 () =>
339 new FixedThreadPool(
340 numberOfWorkers,
341 './tests/worker-files/thread/testWorker.js',
342 {
343 workerChoiceStrategyOptions: { measurement: 'invalidMeasurement' }
344 }
345 )
346 ).toThrowError(
8735b4e5
JB
347 new Error(
348 "Invalid worker choice strategy options: invalid measurement 'invalidMeasurement'"
349 )
f0d7f803 350 )
5c4c2dee
JB
351 expect(
352 () =>
353 new FixedThreadPool(
354 numberOfWorkers,
355 './tests/worker-files/thread/testWorker.js',
356 {
357 enableTasksQueue: true,
358 tasksQueueOptions: 'invalidTasksQueueOptions'
359 }
360 )
361 ).toThrowError(
362 new TypeError('Invalid tasks queue options: must be a plain object')
363 )
f0d7f803
JB
364 expect(
365 () =>
366 new FixedThreadPool(
367 numberOfWorkers,
368 './tests/worker-files/thread/testWorker.js',
369 {
370 enableTasksQueue: true,
371 tasksQueueOptions: { concurrency: 0 }
372 }
373 )
8735b4e5 374 ).toThrowError(
e695d66f 375 new RangeError(
20c6f652 376 'Invalid worker node tasks concurrency: 0 is a negative integer or zero'
8735b4e5
JB
377 )
378 )
f0d7f803
JB
379 expect(
380 () =>
381 new FixedThreadPool(
382 numberOfWorkers,
383 './tests/worker-files/thread/testWorker.js',
384 {
385 enableTasksQueue: true,
5c4c2dee 386 tasksQueueOptions: { concurrency: -1 }
f0d7f803
JB
387 }
388 )
8735b4e5 389 ).toThrowError(
5c4c2dee
JB
390 new RangeError(
391 'Invalid worker node tasks concurrency: -1 is a negative integer or zero'
392 )
8735b4e5 393 )
f0d7f803
JB
394 expect(
395 () =>
396 new FixedThreadPool(
397 numberOfWorkers,
398 './tests/worker-files/thread/testWorker.js',
399 {
400 enableTasksQueue: true,
401 tasksQueueOptions: { concurrency: 0.2 }
402 }
403 )
8735b4e5 404 ).toThrowError(
20c6f652 405 new TypeError('Invalid worker node tasks concurrency: must be an integer')
8735b4e5 406 )
5c4c2dee
JB
407 expect(
408 () =>
409 new FixedThreadPool(
410 numberOfWorkers,
411 './tests/worker-files/thread/testWorker.js',
412 {
413 enableTasksQueue: true,
414 tasksQueueOptions: { size: 0 }
415 }
416 )
417 ).toThrowError(
418 new RangeError(
419 'Invalid worker node tasks queue size: 0 is a negative integer or zero'
420 )
421 )
422 expect(
423 () =>
424 new FixedThreadPool(
425 numberOfWorkers,
426 './tests/worker-files/thread/testWorker.js',
427 {
428 enableTasksQueue: true,
429 tasksQueueOptions: { size: -1 }
430 }
431 )
432 ).toThrowError(
433 new RangeError(
434 'Invalid worker node tasks queue size: -1 is a negative integer or zero'
435 )
436 )
437 expect(
438 () =>
439 new FixedThreadPool(
440 numberOfWorkers,
441 './tests/worker-files/thread/testWorker.js',
442 {
443 enableTasksQueue: true,
444 tasksQueueOptions: { size: 0.2 }
445 }
446 )
447 ).toThrowError(
448 new TypeError('Invalid worker node tasks queue size: must be an integer')
449 )
d4aeae5a
JB
450 })
451
2431bdb4 452 it('Verify that pool worker choice strategy options can be set', async () => {
a20f0ba5
JB
453 const pool = new FixedThreadPool(
454 numberOfWorkers,
455 './tests/worker-files/thread/testWorker.js',
456 { workerChoiceStrategy: WorkerChoiceStrategies.FAIR_SHARE }
457 )
458 expect(pool.opts.workerChoiceStrategyOptions).toStrictEqual({
8c0b113f 459 retries: 6,
8990357d
JB
460 runTime: { median: false },
461 waitTime: { median: false },
462 elu: { median: false }
463 })
464 expect(pool.workerChoiceStrategyContext.opts).toStrictEqual({
8c0b113f 465 retries: 6,
932fc8be 466 runTime: { median: false },
5df69fab
JB
467 waitTime: { median: false },
468 elu: { median: false }
a20f0ba5
JB
469 })
470 for (const [, workerChoiceStrategy] of pool.workerChoiceStrategyContext
471 .workerChoiceStrategies) {
86bf340d 472 expect(workerChoiceStrategy.opts).toStrictEqual({
8c0b113f 473 retries: 6,
932fc8be 474 runTime: { median: false },
5df69fab
JB
475 waitTime: { median: false },
476 elu: { median: false }
86bf340d 477 })
a20f0ba5 478 }
87de9ff5
JB
479 expect(
480 pool.workerChoiceStrategyContext.getTaskStatisticsRequirements()
481 ).toStrictEqual({
932fc8be
JB
482 runTime: {
483 aggregate: true,
484 average: true,
485 median: false
486 },
487 waitTime: {
488 aggregate: false,
489 average: false,
490 median: false
491 },
5df69fab 492 elu: {
9adcefab
JB
493 aggregate: true,
494 average: true,
5df69fab
JB
495 median: false
496 }
86bf340d 497 })
9adcefab
JB
498 pool.setWorkerChoiceStrategyOptions({
499 runTime: { median: true },
500 elu: { median: true }
501 })
a20f0ba5 502 expect(pool.opts.workerChoiceStrategyOptions).toStrictEqual({
8c0b113f 503 retries: 6,
9adcefab 504 runTime: { median: true },
8990357d
JB
505 waitTime: { median: false },
506 elu: { median: true }
507 })
508 expect(pool.workerChoiceStrategyContext.opts).toStrictEqual({
8c0b113f 509 retries: 6,
8990357d
JB
510 runTime: { median: true },
511 waitTime: { median: false },
9adcefab 512 elu: { median: true }
a20f0ba5
JB
513 })
514 for (const [, workerChoiceStrategy] of pool.workerChoiceStrategyContext
515 .workerChoiceStrategies) {
932fc8be 516 expect(workerChoiceStrategy.opts).toStrictEqual({
8c0b113f 517 retries: 6,
9adcefab 518 runTime: { median: true },
8990357d 519 waitTime: { median: false },
9adcefab 520 elu: { median: true }
932fc8be 521 })
a20f0ba5 522 }
87de9ff5
JB
523 expect(
524 pool.workerChoiceStrategyContext.getTaskStatisticsRequirements()
525 ).toStrictEqual({
932fc8be
JB
526 runTime: {
527 aggregate: true,
528 average: false,
529 median: true
530 },
531 waitTime: {
532 aggregate: false,
533 average: false,
534 median: false
535 },
5df69fab 536 elu: {
9adcefab 537 aggregate: true,
5df69fab 538 average: false,
9adcefab 539 median: true
5df69fab 540 }
86bf340d 541 })
9adcefab
JB
542 pool.setWorkerChoiceStrategyOptions({
543 runTime: { median: false },
544 elu: { median: false }
545 })
a20f0ba5 546 expect(pool.opts.workerChoiceStrategyOptions).toStrictEqual({
8c0b113f 547 retries: 6,
8990357d
JB
548 runTime: { median: false },
549 waitTime: { median: false },
550 elu: { median: false }
551 })
552 expect(pool.workerChoiceStrategyContext.opts).toStrictEqual({
8c0b113f 553 retries: 6,
9adcefab 554 runTime: { median: false },
8990357d 555 waitTime: { median: false },
9adcefab 556 elu: { median: false }
a20f0ba5
JB
557 })
558 for (const [, workerChoiceStrategy] of pool.workerChoiceStrategyContext
559 .workerChoiceStrategies) {
932fc8be 560 expect(workerChoiceStrategy.opts).toStrictEqual({
8c0b113f 561 retries: 6,
9adcefab 562 runTime: { median: false },
8990357d 563 waitTime: { median: false },
9adcefab 564 elu: { median: false }
932fc8be 565 })
a20f0ba5 566 }
87de9ff5
JB
567 expect(
568 pool.workerChoiceStrategyContext.getTaskStatisticsRequirements()
569 ).toStrictEqual({
932fc8be
JB
570 runTime: {
571 aggregate: true,
572 average: true,
573 median: false
574 },
575 waitTime: {
576 aggregate: false,
577 average: false,
578 median: false
579 },
5df69fab 580 elu: {
9adcefab
JB
581 aggregate: true,
582 average: true,
5df69fab
JB
583 median: false
584 }
86bf340d 585 })
1f95d544
JB
586 expect(() =>
587 pool.setWorkerChoiceStrategyOptions('invalidWorkerChoiceStrategyOptions')
588 ).toThrowError(
8735b4e5
JB
589 new TypeError(
590 'Invalid worker choice strategy options: must be a plain object'
591 )
1f95d544 592 )
7e653ee0
JB
593 expect(() =>
594 pool.setWorkerChoiceStrategyOptions({
8c0b113f 595 retries: 'invalidChoiceRetries'
7e653ee0
JB
596 })
597 ).toThrowError(
598 new TypeError(
8c0b113f 599 'Invalid worker choice strategy options: retries must be an integer'
7e653ee0
JB
600 )
601 )
602 expect(() =>
8c0b113f 603 pool.setWorkerChoiceStrategyOptions({ retries: -1 })
7e653ee0
JB
604 ).toThrowError(
605 new RangeError(
8c0b113f 606 "Invalid worker choice strategy options: retries '-1' must be greater or equal than zero"
7e653ee0
JB
607 )
608 )
1f95d544
JB
609 expect(() =>
610 pool.setWorkerChoiceStrategyOptions({ weights: {} })
611 ).toThrowError(
8735b4e5
JB
612 new Error(
613 'Invalid worker choice strategy options: must have a weight for each worker node'
614 )
1f95d544
JB
615 )
616 expect(() =>
617 pool.setWorkerChoiceStrategyOptions({ measurement: 'invalidMeasurement' })
618 ).toThrowError(
8735b4e5
JB
619 new Error(
620 "Invalid worker choice strategy options: invalid measurement 'invalidMeasurement'"
621 )
1f95d544 622 )
a20f0ba5
JB
623 await pool.destroy()
624 })
625
2431bdb4 626 it('Verify that pool tasks queue can be enabled/disabled', async () => {
a20f0ba5
JB
627 const pool = new FixedThreadPool(
628 numberOfWorkers,
629 './tests/worker-files/thread/testWorker.js'
630 )
631 expect(pool.opts.enableTasksQueue).toBe(false)
632 expect(pool.opts.tasksQueueOptions).toBeUndefined()
d6ca1416
JB
633 for (const workerNode of pool.workerNodes) {
634 expect(workerNode.onEmptyQueue).toBeUndefined()
635 expect(workerNode.onBackPressure).toBeUndefined()
636 }
a20f0ba5
JB
637 pool.enableTasksQueue(true)
638 expect(pool.opts.enableTasksQueue).toBe(true)
20c6f652
JB
639 expect(pool.opts.tasksQueueOptions).toStrictEqual({
640 concurrency: 1,
2324f8c9 641 size: Math.pow(numberOfWorkers, 2),
dbd73092 642 taskStealing: true,
47352846 643 tasksStealingOnBackPressure: true
20c6f652 644 })
d6ca1416
JB
645 for (const workerNode of pool.workerNodes) {
646 expect(workerNode.onEmptyQueue).toBeInstanceOf(Function)
647 expect(workerNode.onBackPressure).toBeInstanceOf(Function)
648 }
a20f0ba5
JB
649 pool.enableTasksQueue(true, { concurrency: 2 })
650 expect(pool.opts.enableTasksQueue).toBe(true)
20c6f652
JB
651 expect(pool.opts.tasksQueueOptions).toStrictEqual({
652 concurrency: 2,
2324f8c9 653 size: Math.pow(numberOfWorkers, 2),
dbd73092 654 taskStealing: true,
47352846 655 tasksStealingOnBackPressure: true
20c6f652 656 })
d6ca1416
JB
657 for (const workerNode of pool.workerNodes) {
658 expect(workerNode.onEmptyQueue).toBeInstanceOf(Function)
659 expect(workerNode.onBackPressure).toBeInstanceOf(Function)
660 }
a20f0ba5
JB
661 pool.enableTasksQueue(false)
662 expect(pool.opts.enableTasksQueue).toBe(false)
663 expect(pool.opts.tasksQueueOptions).toBeUndefined()
d6ca1416
JB
664 for (const workerNode of pool.workerNodes) {
665 expect(workerNode.onEmptyQueue).toBeUndefined()
666 expect(workerNode.onBackPressure).toBeUndefined()
667 }
a20f0ba5
JB
668 await pool.destroy()
669 })
670
2431bdb4 671 it('Verify that pool tasks queue options can be set', async () => {
a20f0ba5
JB
672 const pool = new FixedThreadPool(
673 numberOfWorkers,
674 './tests/worker-files/thread/testWorker.js',
675 { enableTasksQueue: true }
676 )
20c6f652
JB
677 expect(pool.opts.tasksQueueOptions).toStrictEqual({
678 concurrency: 1,
2324f8c9 679 size: Math.pow(numberOfWorkers, 2),
dbd73092 680 taskStealing: true,
47352846 681 tasksStealingOnBackPressure: true
20c6f652 682 })
d6ca1416 683 for (const workerNode of pool.workerNodes) {
2324f8c9
JB
684 expect(workerNode.tasksQueueBackPressureSize).toBe(
685 pool.opts.tasksQueueOptions.size
686 )
d6ca1416
JB
687 expect(workerNode.onEmptyQueue).toBeInstanceOf(Function)
688 expect(workerNode.onBackPressure).toBeInstanceOf(Function)
689 }
690 pool.setTasksQueueOptions({
691 concurrency: 2,
2324f8c9 692 size: 2,
d6ca1416
JB
693 taskStealing: false,
694 tasksStealingOnBackPressure: false
695 })
20c6f652
JB
696 expect(pool.opts.tasksQueueOptions).toStrictEqual({
697 concurrency: 2,
2324f8c9 698 size: 2,
d6ca1416
JB
699 taskStealing: false,
700 tasksStealingOnBackPressure: false
701 })
702 for (const workerNode of pool.workerNodes) {
2324f8c9
JB
703 expect(workerNode.tasksQueueBackPressureSize).toBe(
704 pool.opts.tasksQueueOptions.size
705 )
d6ca1416
JB
706 expect(workerNode.onEmptyQueue).toBeUndefined()
707 expect(workerNode.onBackPressure).toBeUndefined()
708 }
709 pool.setTasksQueueOptions({
710 concurrency: 1,
711 taskStealing: true,
712 tasksStealingOnBackPressure: true
713 })
714 expect(pool.opts.tasksQueueOptions).toStrictEqual({
715 concurrency: 1,
2324f8c9 716 size: Math.pow(numberOfWorkers, 2),
dbd73092 717 taskStealing: true,
47352846 718 tasksStealingOnBackPressure: true
20c6f652 719 })
d6ca1416 720 for (const workerNode of pool.workerNodes) {
2324f8c9
JB
721 expect(workerNode.tasksQueueBackPressureSize).toBe(
722 pool.opts.tasksQueueOptions.size
723 )
d6ca1416
JB
724 expect(workerNode.onEmptyQueue).toBeInstanceOf(Function)
725 expect(workerNode.onBackPressure).toBeInstanceOf(Function)
726 }
f0d7f803
JB
727 expect(() =>
728 pool.setTasksQueueOptions('invalidTasksQueueOptions')
8735b4e5
JB
729 ).toThrowError(
730 new TypeError('Invalid tasks queue options: must be a plain object')
731 )
a20f0ba5 732 expect(() => pool.setTasksQueueOptions({ concurrency: 0 })).toThrowError(
e695d66f 733 new RangeError(
20c6f652 734 'Invalid worker node tasks concurrency: 0 is a negative integer or zero'
8735b4e5
JB
735 )
736 )
737 expect(() => pool.setTasksQueueOptions({ concurrency: -1 })).toThrowError(
e695d66f 738 new RangeError(
20c6f652 739 'Invalid worker node tasks concurrency: -1 is a negative integer or zero'
8735b4e5 740 )
a20f0ba5 741 )
f0d7f803 742 expect(() => pool.setTasksQueueOptions({ concurrency: 0.2 })).toThrowError(
20c6f652
JB
743 new TypeError('Invalid worker node tasks concurrency: must be an integer')
744 )
ff3f866a 745 expect(() => pool.setTasksQueueOptions({ size: 0 })).toThrowError(
20c6f652 746 new RangeError(
68dbcdc0 747 'Invalid worker node tasks queue size: 0 is a negative integer or zero'
20c6f652
JB
748 )
749 )
ff3f866a 750 expect(() => pool.setTasksQueueOptions({ size: -1 })).toThrowError(
20c6f652 751 new RangeError(
68dbcdc0 752 'Invalid worker node tasks queue size: -1 is a negative integer or zero'
20c6f652
JB
753 )
754 )
ff3f866a 755 expect(() => pool.setTasksQueueOptions({ size: 0.2 })).toThrowError(
68dbcdc0 756 new TypeError('Invalid worker node tasks queue size: must be an integer')
f0d7f803 757 )
a20f0ba5
JB
758 await pool.destroy()
759 })
760
6b27d407
JB
761 it('Verify that pool info is set', async () => {
762 let pool = new FixedThreadPool(
763 numberOfWorkers,
764 './tests/worker-files/thread/testWorker.js'
765 )
2dca6cab
JB
766 expect(pool.info).toStrictEqual({
767 version,
768 type: PoolTypes.fixed,
769 worker: WorkerTypes.thread,
47352846 770 started: true,
2dca6cab
JB
771 ready: true,
772 strategy: WorkerChoiceStrategies.ROUND_ROBIN,
773 minSize: numberOfWorkers,
774 maxSize: numberOfWorkers,
775 workerNodes: numberOfWorkers,
776 idleWorkerNodes: numberOfWorkers,
777 busyWorkerNodes: 0,
778 executedTasks: 0,
779 executingTasks: 0,
2dca6cab
JB
780 failedTasks: 0
781 })
6b27d407
JB
782 await pool.destroy()
783 pool = new DynamicClusterPool(
2431bdb4 784 Math.floor(numberOfWorkers / 2),
6b27d407 785 numberOfWorkers,
ecdfbdc0 786 './tests/worker-files/cluster/testWorker.js'
6b27d407 787 )
2dca6cab
JB
788 expect(pool.info).toStrictEqual({
789 version,
790 type: PoolTypes.dynamic,
791 worker: WorkerTypes.cluster,
47352846 792 started: true,
2dca6cab
JB
793 ready: true,
794 strategy: WorkerChoiceStrategies.ROUND_ROBIN,
795 minSize: Math.floor(numberOfWorkers / 2),
796 maxSize: numberOfWorkers,
797 workerNodes: Math.floor(numberOfWorkers / 2),
798 idleWorkerNodes: Math.floor(numberOfWorkers / 2),
799 busyWorkerNodes: 0,
800 executedTasks: 0,
801 executingTasks: 0,
2dca6cab
JB
802 failedTasks: 0
803 })
6b27d407
JB
804 await pool.destroy()
805 })
806
2431bdb4 807 it('Verify that pool worker tasks usage are initialized', async () => {
bf9549ae
JB
808 const pool = new FixedClusterPool(
809 numberOfWorkers,
810 './tests/worker-files/cluster/testWorker.js'
811 )
f06e48d8 812 for (const workerNode of pool.workerNodes) {
47352846 813 expect(workerNode).toBeInstanceOf(WorkerNode)
465b2940 814 expect(workerNode.usage).toStrictEqual({
a4e07f72
JB
815 tasks: {
816 executed: 0,
817 executing: 0,
818 queued: 0,
df593701 819 maxQueued: 0,
68cbdc84 820 stolen: 0,
a4e07f72
JB
821 failed: 0
822 },
823 runTime: {
4ba4c7f9 824 history: new CircularArray()
a4e07f72
JB
825 },
826 waitTime: {
4ba4c7f9 827 history: new CircularArray()
a4e07f72 828 },
5df69fab
JB
829 elu: {
830 idle: {
4ba4c7f9 831 history: new CircularArray()
5df69fab
JB
832 },
833 active: {
4ba4c7f9 834 history: new CircularArray()
f7510105 835 }
5df69fab 836 }
86bf340d 837 })
f06e48d8
JB
838 }
839 await pool.destroy()
840 })
841
2431bdb4
JB
842 it('Verify that pool worker tasks queue are initialized', async () => {
843 let pool = new FixedClusterPool(
f06e48d8
JB
844 numberOfWorkers,
845 './tests/worker-files/cluster/testWorker.js'
846 )
847 for (const workerNode of pool.workerNodes) {
47352846 848 expect(workerNode).toBeInstanceOf(WorkerNode)
574b351d 849 expect(workerNode.tasksQueue).toBeInstanceOf(Deque)
4d8bf9e4 850 expect(workerNode.tasksQueue.size).toBe(0)
9c16fb4b 851 expect(workerNode.tasksQueue.maxSize).toBe(0)
bf9549ae 852 }
fd7ebd49 853 await pool.destroy()
2431bdb4
JB
854 pool = new DynamicThreadPool(
855 Math.floor(numberOfWorkers / 2),
856 numberOfWorkers,
857 './tests/worker-files/thread/testWorker.js'
858 )
859 for (const workerNode of pool.workerNodes) {
47352846 860 expect(workerNode).toBeInstanceOf(WorkerNode)
574b351d 861 expect(workerNode.tasksQueue).toBeInstanceOf(Deque)
2431bdb4
JB
862 expect(workerNode.tasksQueue.size).toBe(0)
863 expect(workerNode.tasksQueue.maxSize).toBe(0)
864 }
213cbac6 865 await pool.destroy()
2431bdb4
JB
866 })
867
868 it('Verify that pool worker info are initialized', async () => {
869 let pool = new FixedClusterPool(
870 numberOfWorkers,
871 './tests/worker-files/cluster/testWorker.js'
872 )
2dca6cab 873 for (const workerNode of pool.workerNodes) {
47352846 874 expect(workerNode).toBeInstanceOf(WorkerNode)
2dca6cab
JB
875 expect(workerNode.info).toStrictEqual({
876 id: expect.any(Number),
877 type: WorkerTypes.cluster,
878 dynamic: false,
879 ready: true
880 })
881 }
2431bdb4
JB
882 await pool.destroy()
883 pool = new DynamicThreadPool(
884 Math.floor(numberOfWorkers / 2),
885 numberOfWorkers,
886 './tests/worker-files/thread/testWorker.js'
887 )
2dca6cab 888 for (const workerNode of pool.workerNodes) {
47352846 889 expect(workerNode).toBeInstanceOf(WorkerNode)
2dca6cab
JB
890 expect(workerNode.info).toStrictEqual({
891 id: expect.any(Number),
892 type: WorkerTypes.thread,
893 dynamic: false,
7884d183 894 ready: true
2dca6cab
JB
895 })
896 }
213cbac6 897 await pool.destroy()
bf9549ae
JB
898 })
899
47352846
JB
900 it('Verify that pool can be started after initialization', async () => {
901 const pool = new FixedClusterPool(
902 numberOfWorkers,
903 './tests/worker-files/cluster/testWorker.js',
904 {
905 startWorkers: false
906 }
907 )
908 expect(pool.info.started).toBe(false)
909 expect(pool.info.ready).toBe(false)
910 expect(pool.workerNodes).toStrictEqual([])
911 await expect(pool.execute()).rejects.toThrowError(
912 new Error('Cannot execute a task on not started pool')
913 )
914 pool.start()
915 expect(pool.info.started).toBe(true)
916 expect(pool.info.ready).toBe(true)
917 expect(pool.workerNodes.length).toBe(numberOfWorkers)
918 for (const workerNode of pool.workerNodes) {
919 expect(workerNode).toBeInstanceOf(WorkerNode)
920 }
921 await pool.destroy()
922 })
923
9d2d0da1
JB
924 it('Verify that pool execute() arguments are checked', async () => {
925 const pool = new FixedClusterPool(
926 numberOfWorkers,
927 './tests/worker-files/cluster/testWorker.js'
928 )
929 await expect(pool.execute(undefined, 0)).rejects.toThrowError(
930 new TypeError('name argument must be a string')
931 )
932 await expect(pool.execute(undefined, '')).rejects.toThrowError(
933 new TypeError('name argument must not be an empty string')
934 )
935 await expect(pool.execute(undefined, undefined, {})).rejects.toThrowError(
936 new TypeError('transferList argument must be an array')
937 )
938 await expect(pool.execute(undefined, 'unknown')).rejects.toBe(
939 "Task function 'unknown' not found"
940 )
941 await pool.destroy()
47352846
JB
942 await expect(pool.execute()).rejects.toThrowError(
943 new Error('Cannot execute a task on not started pool')
9d2d0da1
JB
944 )
945 })
946
2431bdb4 947 it('Verify that pool worker tasks usage are computed', async () => {
bf9549ae
JB
948 const pool = new FixedClusterPool(
949 numberOfWorkers,
950 './tests/worker-files/cluster/testWorker.js'
951 )
09c2d0d3 952 const promises = new Set()
fc027381
JB
953 const maxMultiplier = 2
954 for (let i = 0; i < numberOfWorkers * maxMultiplier; i++) {
09c2d0d3 955 promises.add(pool.execute())
bf9549ae 956 }
f06e48d8 957 for (const workerNode of pool.workerNodes) {
465b2940 958 expect(workerNode.usage).toStrictEqual({
a4e07f72
JB
959 tasks: {
960 executed: 0,
961 executing: maxMultiplier,
962 queued: 0,
df593701 963 maxQueued: 0,
68cbdc84 964 stolen: 0,
a4e07f72
JB
965 failed: 0
966 },
967 runTime: {
a4e07f72
JB
968 history: expect.any(CircularArray)
969 },
970 waitTime: {
a4e07f72
JB
971 history: expect.any(CircularArray)
972 },
5df69fab
JB
973 elu: {
974 idle: {
5df69fab
JB
975 history: expect.any(CircularArray)
976 },
977 active: {
5df69fab 978 history: expect.any(CircularArray)
f7510105 979 }
5df69fab 980 }
86bf340d 981 })
bf9549ae
JB
982 }
983 await Promise.all(promises)
f06e48d8 984 for (const workerNode of pool.workerNodes) {
465b2940 985 expect(workerNode.usage).toStrictEqual({
a4e07f72
JB
986 tasks: {
987 executed: maxMultiplier,
988 executing: 0,
989 queued: 0,
df593701 990 maxQueued: 0,
68cbdc84 991 stolen: 0,
a4e07f72
JB
992 failed: 0
993 },
994 runTime: {
a4e07f72
JB
995 history: expect.any(CircularArray)
996 },
997 waitTime: {
a4e07f72
JB
998 history: expect.any(CircularArray)
999 },
5df69fab
JB
1000 elu: {
1001 idle: {
5df69fab
JB
1002 history: expect.any(CircularArray)
1003 },
1004 active: {
5df69fab 1005 history: expect.any(CircularArray)
f7510105 1006 }
5df69fab 1007 }
86bf340d 1008 })
bf9549ae 1009 }
fd7ebd49 1010 await pool.destroy()
bf9549ae
JB
1011 })
1012
2431bdb4 1013 it('Verify that pool worker tasks usage are reset at worker choice strategy change', async () => {
7fd82a1c 1014 const pool = new DynamicThreadPool(
2431bdb4 1015 Math.floor(numberOfWorkers / 2),
8f4878b7 1016 numberOfWorkers,
9e619829
JB
1017 './tests/worker-files/thread/testWorker.js'
1018 )
09c2d0d3 1019 const promises = new Set()
ee9f5295
JB
1020 const maxMultiplier = 2
1021 for (let i = 0; i < numberOfWorkers * maxMultiplier; i++) {
09c2d0d3 1022 promises.add(pool.execute())
9e619829
JB
1023 }
1024 await Promise.all(promises)
f06e48d8 1025 for (const workerNode of pool.workerNodes) {
465b2940 1026 expect(workerNode.usage).toStrictEqual({
a4e07f72
JB
1027 tasks: {
1028 executed: expect.any(Number),
1029 executing: 0,
1030 queued: 0,
df593701 1031 maxQueued: 0,
68cbdc84 1032 stolen: 0,
a4e07f72
JB
1033 failed: 0
1034 },
1035 runTime: {
a4e07f72
JB
1036 history: expect.any(CircularArray)
1037 },
1038 waitTime: {
a4e07f72
JB
1039 history: expect.any(CircularArray)
1040 },
5df69fab
JB
1041 elu: {
1042 idle: {
5df69fab
JB
1043 history: expect.any(CircularArray)
1044 },
1045 active: {
5df69fab 1046 history: expect.any(CircularArray)
f7510105 1047 }
5df69fab 1048 }
86bf340d 1049 })
465b2940 1050 expect(workerNode.usage.tasks.executed).toBeGreaterThan(0)
94407def
JB
1051 expect(workerNode.usage.tasks.executed).toBeLessThanOrEqual(
1052 numberOfWorkers * maxMultiplier
1053 )
b97d82d8
JB
1054 expect(workerNode.usage.runTime.history.length).toBe(0)
1055 expect(workerNode.usage.waitTime.history.length).toBe(0)
1056 expect(workerNode.usage.elu.idle.history.length).toBe(0)
1057 expect(workerNode.usage.elu.active.history.length).toBe(0)
9e619829
JB
1058 }
1059 pool.setWorkerChoiceStrategy(WorkerChoiceStrategies.FAIR_SHARE)
f06e48d8 1060 for (const workerNode of pool.workerNodes) {
465b2940 1061 expect(workerNode.usage).toStrictEqual({
a4e07f72
JB
1062 tasks: {
1063 executed: 0,
1064 executing: 0,
1065 queued: 0,
df593701 1066 maxQueued: 0,
68cbdc84 1067 stolen: 0,
a4e07f72
JB
1068 failed: 0
1069 },
1070 runTime: {
a4e07f72
JB
1071 history: expect.any(CircularArray)
1072 },
1073 waitTime: {
a4e07f72
JB
1074 history: expect.any(CircularArray)
1075 },
5df69fab
JB
1076 elu: {
1077 idle: {
5df69fab
JB
1078 history: expect.any(CircularArray)
1079 },
1080 active: {
5df69fab 1081 history: expect.any(CircularArray)
f7510105 1082 }
5df69fab 1083 }
86bf340d 1084 })
465b2940
JB
1085 expect(workerNode.usage.runTime.history.length).toBe(0)
1086 expect(workerNode.usage.waitTime.history.length).toBe(0)
b97d82d8
JB
1087 expect(workerNode.usage.elu.idle.history.length).toBe(0)
1088 expect(workerNode.usage.elu.active.history.length).toBe(0)
ee11a4a2 1089 }
fd7ebd49 1090 await pool.destroy()
ee11a4a2
JB
1091 })
1092
a1763c54
JB
1093 it("Verify that pool event emitter 'ready' event can register a callback", async () => {
1094 const pool = new DynamicClusterPool(
2431bdb4 1095 Math.floor(numberOfWorkers / 2),
164d950a 1096 numberOfWorkers,
a1763c54 1097 './tests/worker-files/cluster/testWorker.js'
164d950a 1098 )
d46660cd 1099 let poolInfo
a1763c54 1100 let poolReady = 0
041dc05b 1101 pool.emitter.on(PoolEvents.ready, info => {
a1763c54 1102 ++poolReady
d46660cd
JB
1103 poolInfo = info
1104 })
a1763c54
JB
1105 await waitPoolEvents(pool, PoolEvents.ready, 1)
1106 expect(poolReady).toBe(1)
d46660cd 1107 expect(poolInfo).toStrictEqual({
23ccf9d7 1108 version,
d46660cd 1109 type: PoolTypes.dynamic,
a1763c54 1110 worker: WorkerTypes.cluster,
47352846 1111 started: true,
a1763c54 1112 ready: true,
2431bdb4
JB
1113 strategy: WorkerChoiceStrategies.ROUND_ROBIN,
1114 minSize: expect.any(Number),
1115 maxSize: expect.any(Number),
1116 workerNodes: expect.any(Number),
1117 idleWorkerNodes: expect.any(Number),
1118 busyWorkerNodes: expect.any(Number),
1119 executedTasks: expect.any(Number),
1120 executingTasks: expect.any(Number),
2431bdb4
JB
1121 failedTasks: expect.any(Number)
1122 })
1123 await pool.destroy()
1124 })
1125
a1763c54
JB
1126 it("Verify that pool event emitter 'busy' event can register a callback", async () => {
1127 const pool = new FixedThreadPool(
2431bdb4 1128 numberOfWorkers,
a1763c54 1129 './tests/worker-files/thread/testWorker.js'
2431bdb4 1130 )
a1763c54
JB
1131 const promises = new Set()
1132 let poolBusy = 0
2431bdb4 1133 let poolInfo
041dc05b 1134 pool.emitter.on(PoolEvents.busy, info => {
a1763c54 1135 ++poolBusy
2431bdb4
JB
1136 poolInfo = info
1137 })
a1763c54
JB
1138 for (let i = 0; i < numberOfWorkers * 2; i++) {
1139 promises.add(pool.execute())
1140 }
1141 await Promise.all(promises)
1142 // The `busy` event is triggered when the number of submitted tasks at once reach the number of fixed pool workers.
1143 // So in total numberOfWorkers + 1 times for a loop submitting up to numberOfWorkers * 2 tasks to the fixed pool.
1144 expect(poolBusy).toBe(numberOfWorkers + 1)
2431bdb4
JB
1145 expect(poolInfo).toStrictEqual({
1146 version,
a1763c54
JB
1147 type: PoolTypes.fixed,
1148 worker: WorkerTypes.thread,
47352846
JB
1149 started: true,
1150 ready: true,
2431bdb4 1151 strategy: WorkerChoiceStrategies.ROUND_ROBIN,
d46660cd
JB
1152 minSize: expect.any(Number),
1153 maxSize: expect.any(Number),
1154 workerNodes: expect.any(Number),
1155 idleWorkerNodes: expect.any(Number),
1156 busyWorkerNodes: expect.any(Number),
a4e07f72
JB
1157 executedTasks: expect.any(Number),
1158 executingTasks: expect.any(Number),
a4e07f72 1159 failedTasks: expect.any(Number)
d46660cd 1160 })
164d950a
JB
1161 await pool.destroy()
1162 })
1163
a1763c54
JB
1164 it("Verify that pool event emitter 'full' event can register a callback", async () => {
1165 const pool = new DynamicThreadPool(
1166 Math.floor(numberOfWorkers / 2),
7c0ba920
JB
1167 numberOfWorkers,
1168 './tests/worker-files/thread/testWorker.js'
1169 )
09c2d0d3 1170 const promises = new Set()
a1763c54 1171 let poolFull = 0
d46660cd 1172 let poolInfo
041dc05b 1173 pool.emitter.on(PoolEvents.full, info => {
a1763c54 1174 ++poolFull
d46660cd
JB
1175 poolInfo = info
1176 })
7c0ba920 1177 for (let i = 0; i < numberOfWorkers * 2; i++) {
f5d14e90 1178 promises.add(pool.execute())
7c0ba920 1179 }
cf597bc5 1180 await Promise.all(promises)
33e6bb4c 1181 expect(poolFull).toBe(1)
d46660cd 1182 expect(poolInfo).toStrictEqual({
23ccf9d7 1183 version,
a1763c54 1184 type: PoolTypes.dynamic,
d46660cd 1185 worker: WorkerTypes.thread,
47352846
JB
1186 started: true,
1187 ready: true,
2431bdb4 1188 strategy: WorkerChoiceStrategies.ROUND_ROBIN,
8735b4e5
JB
1189 minSize: expect.any(Number),
1190 maxSize: expect.any(Number),
1191 workerNodes: expect.any(Number),
1192 idleWorkerNodes: expect.any(Number),
1193 busyWorkerNodes: expect.any(Number),
1194 executedTasks: expect.any(Number),
1195 executingTasks: expect.any(Number),
1196 failedTasks: expect.any(Number)
1197 })
1198 await pool.destroy()
1199 })
1200
3e8611a8 1201 it("Verify that pool event emitter 'backPressure' event can register a callback", async () => {
b1aae695 1202 const pool = new FixedThreadPool(
8735b4e5
JB
1203 numberOfWorkers,
1204 './tests/worker-files/thread/testWorker.js',
1205 {
1206 enableTasksQueue: true
1207 }
1208 )
3e8611a8 1209 sinon.stub(pool, 'hasBackPressure').returns(true)
8735b4e5
JB
1210 const promises = new Set()
1211 let poolBackPressure = 0
1212 let poolInfo
041dc05b 1213 pool.emitter.on(PoolEvents.backPressure, info => {
8735b4e5
JB
1214 ++poolBackPressure
1215 poolInfo = info
1216 })
033f1776 1217 for (let i = 0; i < numberOfWorkers + 1; i++) {
8735b4e5
JB
1218 promises.add(pool.execute())
1219 }
1220 await Promise.all(promises)
033f1776 1221 expect(poolBackPressure).toBe(1)
8735b4e5
JB
1222 expect(poolInfo).toStrictEqual({
1223 version,
3e8611a8 1224 type: PoolTypes.fixed,
8735b4e5 1225 worker: WorkerTypes.thread,
47352846
JB
1226 started: true,
1227 ready: true,
8735b4e5 1228 strategy: WorkerChoiceStrategies.ROUND_ROBIN,
d46660cd
JB
1229 minSize: expect.any(Number),
1230 maxSize: expect.any(Number),
1231 workerNodes: expect.any(Number),
1232 idleWorkerNodes: expect.any(Number),
1233 busyWorkerNodes: expect.any(Number),
a4e07f72
JB
1234 executedTasks: expect.any(Number),
1235 executingTasks: expect.any(Number),
3e8611a8
JB
1236 maxQueuedTasks: expect.any(Number),
1237 queuedTasks: expect.any(Number),
1238 backPressure: true,
68cbdc84 1239 stolenTasks: expect.any(Number),
a4e07f72 1240 failedTasks: expect.any(Number)
d46660cd 1241 })
3e8611a8 1242 expect(pool.hasBackPressure.called).toBe(true)
fd7ebd49 1243 await pool.destroy()
7c0ba920 1244 })
70a4f5ea 1245
90d7d101
JB
1246 it('Verify that listTaskFunctions() is working', async () => {
1247 const dynamicThreadPool = new DynamicThreadPool(
1248 Math.floor(numberOfWorkers / 2),
1249 numberOfWorkers,
1250 './tests/worker-files/thread/testMultipleTaskFunctionsWorker.js'
1251 )
1252 await waitPoolEvents(dynamicThreadPool, PoolEvents.ready, 1)
66979634 1253 expect(dynamicThreadPool.listTaskFunctionNames()).toStrictEqual([
6cd5248f 1254 DEFAULT_TASK_NAME,
90d7d101
JB
1255 'jsonIntegerSerialization',
1256 'factorial',
1257 'fibonacci'
1258 ])
1259 const fixedClusterPool = new FixedClusterPool(
1260 numberOfWorkers,
1261 './tests/worker-files/cluster/testMultipleTaskFunctionsWorker.js'
1262 )
1263 await waitPoolEvents(fixedClusterPool, PoolEvents.ready, 1)
66979634 1264 expect(fixedClusterPool.listTaskFunctionNames()).toStrictEqual([
6cd5248f 1265 DEFAULT_TASK_NAME,
90d7d101
JB
1266 'jsonIntegerSerialization',
1267 'factorial',
1268 'fibonacci'
1269 ])
0fe39c97
JB
1270 await dynamicThreadPool.destroy()
1271 await fixedClusterPool.destroy()
90d7d101
JB
1272 })
1273
1274 it('Verify that multiple task functions worker is working', async () => {
70a4f5ea 1275 const pool = new DynamicClusterPool(
2431bdb4 1276 Math.floor(numberOfWorkers / 2),
70a4f5ea 1277 numberOfWorkers,
90d7d101 1278 './tests/worker-files/cluster/testMultipleTaskFunctionsWorker.js'
70a4f5ea
JB
1279 )
1280 const data = { n: 10 }
82888165 1281 const result0 = await pool.execute(data)
30b963d4 1282 expect(result0).toStrictEqual({ ok: 1 })
70a4f5ea 1283 const result1 = await pool.execute(data, 'jsonIntegerSerialization')
30b963d4 1284 expect(result1).toStrictEqual({ ok: 1 })
70a4f5ea
JB
1285 const result2 = await pool.execute(data, 'factorial')
1286 expect(result2).toBe(3628800)
1287 const result3 = await pool.execute(data, 'fibonacci')
024daf59 1288 expect(result3).toBe(55)
5bb5be17
JB
1289 expect(pool.info.executingTasks).toBe(0)
1290 expect(pool.info.executedTasks).toBe(4)
b414b84c 1291 for (const workerNode of pool.workerNodes) {
66979634 1292 expect(workerNode.info.taskFunctionNames).toStrictEqual([
6cd5248f 1293 DEFAULT_TASK_NAME,
b414b84c
JB
1294 'jsonIntegerSerialization',
1295 'factorial',
1296 'fibonacci'
1297 ])
1298 expect(workerNode.taskFunctionsUsage.size).toBe(3)
66979634 1299 for (const name of pool.listTaskFunctionNames()) {
5bb5be17
JB
1300 expect(workerNode.getTaskFunctionWorkerUsage(name)).toStrictEqual({
1301 tasks: {
1302 executed: expect.any(Number),
4ba4c7f9 1303 executing: 0,
5bb5be17 1304 failed: 0,
68cbdc84
JB
1305 queued: 0,
1306 stolen: 0
5bb5be17
JB
1307 },
1308 runTime: {
1309 history: expect.any(CircularArray)
1310 },
1311 waitTime: {
1312 history: expect.any(CircularArray)
1313 },
1314 elu: {
1315 idle: {
1316 history: expect.any(CircularArray)
1317 },
1318 active: {
1319 history: expect.any(CircularArray)
1320 }
1321 }
1322 })
1323 expect(
4ba4c7f9
JB
1324 workerNode.getTaskFunctionWorkerUsage(name).tasks.executed
1325 ).toBeGreaterThan(0)
5bb5be17 1326 }
dfd7ec01
JB
1327 expect(
1328 workerNode.getTaskFunctionWorkerUsage(DEFAULT_TASK_NAME)
1329 ).toStrictEqual(
66979634
JB
1330 workerNode.getTaskFunctionWorkerUsage(
1331 workerNode.info.taskFunctionNames[1]
1332 )
dfd7ec01 1333 )
5bb5be17 1334 }
0fe39c97 1335 await pool.destroy()
70a4f5ea 1336 })
52a23942
JB
1337
1338 it('Verify sendKillMessageToWorker()', async () => {
1339 const pool = new DynamicClusterPool(
1340 Math.floor(numberOfWorkers / 2),
1341 numberOfWorkers,
1342 './tests/worker-files/cluster/testWorker.js'
1343 )
1344 const workerNodeKey = 0
1345 await expect(
1346 pool.sendKillMessageToWorker(
1347 workerNodeKey,
1348 pool.workerNodes[workerNodeKey].info.id
1349 )
1350 ).resolves.toBeUndefined()
1351 await pool.destroy()
1352 })
3ec964d6 1353})