9cd4e72c57b1098256b9c2f356fcfc0ded6da730
1 const { expect
} = require('expect')
2 const { DynamicThreadPool
} = require('../../../lib/index')
3 const { WorkerFunctions
} = require('../../test-types')
4 const TestUtils
= require('../../test-utils')
6 describe('Dynamic thread pool test suite', () => {
9 const pool
= new DynamicThreadPool(
12 './tests/worker-files/thread/testWorker.js',
14 errorHandler
: e
=> console
.error(e
)
18 it('Verify that the function is executed in a worker thread', async () => {
19 let result
= await pool
.execute({
20 function: WorkerFunctions
.fibonacci
22 expect(result
).toBe(false)
23 result
= await pool
.execute({
24 function: WorkerFunctions
.factorial
26 expect(result
).toBe(false)
29 it('Verify that new workers are created when required, max size is not exceeded and that after a while new workers will die', async () => {
32 pool
.emitter
.on('busy', () => poolBusy
++)
33 for (let i
= 0; i
< max
* 2; i
++) {
34 promises
.push(pool
.execute())
36 expect(pool
.workers
.length
).toBeLessThanOrEqual(max
)
37 expect(pool
.workers
.length
).toBeGreaterThan(min
)
38 // The `busy` event is triggered when the number of submitted tasks at once reach the max number of workers in the dynamic pool.
39 // So in total numberOfWorkers + 1 times for a loop submitting up to numberOfWorkers * 2 tasks to the dynamic pool.
40 expect(poolBusy
).toBe(max
+ 1)
41 const numberOfExitEvents
= await TestUtils
.waitExits(pool
, max
- min
)
42 expect(numberOfExitEvents
).toBe(max
- min
)
45 it('Verify scale thread up and down is working', async () => {
46 expect(pool
.workers
.length
).toBe(min
)
47 for (let i
= 0; i
< max
* 10; i
++) {
50 expect(pool
.workers
.length
).toBe(max
)
51 await TestUtils
.waitExits(pool
, max
- min
)
52 expect(pool
.workers
.length
).toBe(min
)
53 for (let i
= 0; i
< max
* 10; i
++) {
56 expect(pool
.workers
.length
).toBe(max
)
57 await TestUtils
.waitExits(pool
, max
- min
)
58 expect(pool
.workers
.length
).toBe(min
)
61 it('Shutdown test', async () => {
62 const exitPromise
= TestUtils
.waitExits(pool
, min
)
64 const numberOfExitEvents
= await exitPromise
65 expect(numberOfExitEvents
).toBe(min
)
68 it('Validation of inputs test', () => {
69 expect(() => new DynamicThreadPool(min
)).toThrowError(
70 new Error('Please specify a file with a worker implementation')
74 it('Should work even without opts in input', async () => {
75 const pool1
= new DynamicThreadPool(
78 './tests/worker-files/thread/testWorker.js'
80 const res
= await pool1
.execute()
81 expect(res
).toBe(false)
82 // We need to clean up the resources after our test
86 it('Verify scale thread up and down is working when long running task is used:hard', async () => {
87 const longRunningPool
= new DynamicThreadPool(
90 './tests/worker-files/thread/longRunningWorkerHardBehavior.js',
92 errorHandler
: e
=> console
.error(e
),
93 onlineHandler
: () => console
.log('long running worker is online'),
94 exitHandler
: () => console
.log('long running worker exited')
97 expect(longRunningPool
.workers
.length
).toBe(min
)
98 for (let i
= 0; i
< max
* 10; i
++) {
99 longRunningPool
.execute()
101 expect(longRunningPool
.workers
.length
).toBe(max
)
102 await TestUtils
.waitExits(longRunningPool
, max
- min
)
103 expect(longRunningPool
.workers
.length
).toBe(min
)
104 // We need to clean up the resources after our test
105 await longRunningPool
.destroy()
108 it('Verify scale thread up and down is working when long running task is used:soft', async () => {
109 const longRunningPool
= new DynamicThreadPool(
112 './tests/worker-files/thread/longRunningWorkerSoftBehavior.js',
114 errorHandler
: e
=> console
.error(e
),
115 onlineHandler
: () => console
.log('long running worker is online'),
116 exitHandler
: () => console
.log('long running worker exited')
119 expect(longRunningPool
.workers
.length
).toBe(min
)
120 for (let i
= 0; i
< max
* 10; i
++) {
121 longRunningPool
.execute()
123 expect(longRunningPool
.workers
.length
).toBe(max
)
124 await TestUtils
.sleep(1500)
125 // Here we expect the workers to be at the max size since that the task is still running
126 expect(longRunningPool
.workers
.length
).toBe(max
)
127 // We need to clean up the resources after our test
128 await longRunningPool
.destroy()
131 it('Verify that a pool with zero worker can be instantiated', async () => {
132 const pool
= new DynamicThreadPool(
135 './tests/worker-files/thread/testWorker.js'
137 expect(pool
).toBeInstanceOf(DynamicThreadPool
)
138 // We need to clean up the resources after our test