build(deps-dev): apply updates
[poolifier.git] / tests / pools / thread / fixed.test.js
CommitLineData
a61a0724 1const { expect } = require('expect')
cdace0e5 2const { FixedThreadPool, PoolEvents } = require('../../../lib')
2d2e32c2 3const { WorkerFunctions } = require('../../test-types')
85a3f8a7 4const TestUtils = require('../../test-utils')
506c2a14 5
a35560ba 6describe('Fixed thread pool test suite', () => {
e1ffb94f
JB
7 const numberOfThreads = 6
8 const pool = new FixedThreadPool(
9 numberOfThreads,
10 './tests/worker-files/thread/testWorker.js',
11 {
12 errorHandler: e => console.error(e)
13 }
14 )
594bfb84
JB
15 const queuePool = new FixedThreadPool(
16 numberOfThreads,
17 './tests/worker-files/thread/testWorker.js',
18 {
19 enableTasksQueue: true,
20 tasksQueueOptions: {
21 concurrency: 2
22 },
23 errorHandler: e => console.error(e)
24 }
25 )
e1ffb94f
JB
26 const emptyPool = new FixedThreadPool(
27 numberOfThreads,
28 './tests/worker-files/thread/emptyWorker.js',
29 { exitHandler: () => console.log('empty pool worker exited') }
30 )
31 const echoPool = new FixedThreadPool(
32 numberOfThreads,
33 './tests/worker-files/thread/echoWorker.js'
34 )
35 const errorPool = new FixedThreadPool(
36 numberOfThreads,
37 './tests/worker-files/thread/errorWorker.js',
38 {
39 errorHandler: e => console.error(e)
40 }
41 )
42 const asyncErrorPool = new FixedThreadPool(
43 numberOfThreads,
44 './tests/worker-files/thread/asyncErrorWorker.js',
45 {
46 errorHandler: e => console.error(e)
47 }
48 )
49 const asyncPool = new FixedThreadPool(
50 numberOfThreads,
51 './tests/worker-files/thread/asyncWorker.js'
52 )
53
0e2503fc
JB
54 after('Destroy all pools', async () => {
55 // We need to clean up the resources after our test
56 await echoPool.destroy()
57 await asyncPool.destroy()
58 await errorPool.destroy()
7c0ba920 59 await asyncErrorPool.destroy()
0e2503fc 60 await emptyPool.destroy()
594bfb84 61 await queuePool.destroy()
0e2503fc
JB
62 })
63
506c2a14 64 it('Verify that the function is executed in a worker thread', async () => {
6db75ad9
JB
65 let result = await pool.execute({
66 function: WorkerFunctions.fibonacci
67 })
70a4f5ea 68 expect(result).toBe(121393)
6db75ad9
JB
69 result = await pool.execute({
70 function: WorkerFunctions.factorial
71 })
70a4f5ea 72 expect(result).toBe(9.33262154439441e157)
506c2a14 73 })
74
318d4156 75 it('Verify that is possible to invoke the execute() method without input', async () => {
106744f7 76 const result = await pool.execute()
6db75ad9 77 expect(result).toBe(false)
106744f7 78 })
79
aee46736 80 it("Verify that 'busy' event is emitted", async () => {
7c0ba920 81 let poolBusy = 0
aee46736 82 pool.emitter.on(PoolEvents.busy, () => ++poolBusy)
7c0ba920 83 for (let i = 0; i < numberOfThreads * 2; i++) {
8cbb82eb 84 pool.execute()
7c0ba920 85 }
14916bf9
JB
86 // The `busy` event is triggered when the number of submitted tasks at once reach the number of fixed pool workers.
87 // So in total numberOfThreads + 1 times for a loop submitting up to numberOfThreads * 2 tasks to the fixed pool.
88 expect(poolBusy).toBe(numberOfThreads + 1)
7c0ba920
JB
89 })
90
594bfb84 91 it('Verify that tasks queuing is working', async () => {
d3d4b67d 92 const promises = new Set()
ee9f5295 93 const maxMultiplier = 2
594bfb84 94 for (let i = 0; i < numberOfThreads * maxMultiplier; i++) {
d3d4b67d 95 promises.add(queuePool.execute())
594bfb84 96 }
d3d4b67d 97 expect(promises.size).toBe(numberOfThreads * maxMultiplier)
594bfb84
JB
98 for (const workerNode of queuePool.workerNodes) {
99 expect(workerNode.tasksUsage.running).toBeLessThanOrEqual(
100 queuePool.opts.tasksQueueOptions.concurrency
101 )
102 expect(workerNode.tasksUsage.run).toBe(0)
4d8bf9e4 103 expect(workerNode.tasksQueue.size).toBeGreaterThan(0)
594bfb84 104 }
d3d4b67d
JB
105 expect(queuePool.numberOfRunningTasks).toBe(numberOfThreads)
106 expect(queuePool.numberOfQueuedTasks).toBe(
107 numberOfThreads * maxMultiplier - numberOfThreads
108 )
594bfb84
JB
109 await Promise.all(promises)
110 for (const workerNode of queuePool.workerNodes) {
111 expect(workerNode.tasksUsage.running).toBe(0)
112 expect(workerNode.tasksUsage.run).toBeGreaterThan(0)
fc027381 113 expect(workerNode.tasksUsage.run).toBeLessThanOrEqual(maxMultiplier)
4d8bf9e4 114 expect(workerNode.tasksQueue.size).toBe(0)
594bfb84
JB
115 }
116 })
117
106744f7 118 it('Verify that is possible to have a worker that return undefined', async () => {
119 const result = await emptyPool.execute()
6db75ad9 120 expect(result).toBeUndefined()
106744f7 121 })
122
123 it('Verify that data are sent to the worker correctly', async () => {
124 const data = { f: 10 }
125 const result = await echoPool.execute(data)
e1ffb94f 126 expect(result).toStrictEqual(data)
106744f7 127 })
128
7c0ba920 129 it('Verify that error handling is working properly:sync', async () => {
106744f7 130 const data = { f: 10 }
131 let inError
132 try {
133 await errorPool.execute(data)
134 } catch (e) {
135 inError = e
136 }
7c0ba920
JB
137 expect(inError).toBeDefined()
138 expect(inError).toBeInstanceOf(Error)
139 expect(inError.message).toBeDefined()
8620fb25 140 expect(typeof inError.message === 'string').toBe(true)
0302f8ec 141 expect(inError.message).toBe('Error Message from ThreadWorker')
18482cec
JB
142 expect(
143 errorPool.workerNodes.some(
144 workerNode => workerNode.tasksUsage.error === 1
145 )
146 ).toBe(true)
7c0ba920
JB
147 })
148
149 it('Verify that error handling is working properly:async', async () => {
150 const data = { f: 10 }
151 let inError
152 try {
153 await asyncErrorPool.execute(data)
154 } catch (e) {
155 inError = e
156 }
157 expect(inError).toBeDefined()
158 expect(inError).toBeInstanceOf(Error)
159 expect(inError.message).toBeDefined()
8620fb25 160 expect(typeof inError.message === 'string').toBe(true)
0302f8ec 161 expect(inError.message).toBe('Error Message from ThreadWorker:async')
18482cec
JB
162 expect(
163 asyncErrorPool.workerNodes.some(
164 workerNode => workerNode.tasksUsage.error === 1
165 )
166 ).toBe(true)
106744f7 167 })
168
7784f548 169 it('Verify that async function is working properly', async () => {
170 const data = { f: 10 }
15e5141f 171 const startTime = performance.now()
7784f548 172 const result = await asyncPool.execute(data)
15e5141f 173 const usedTime = performance.now() - startTime
e1ffb94f 174 expect(result).toStrictEqual(data)
32d490eb 175 expect(usedTime).toBeGreaterThanOrEqual(2000)
7784f548 176 })
177
506c2a14 178 it('Shutdown test', async () => {
85a3f8a7 179 const exitPromise = TestUtils.waitExits(pool, numberOfThreads)
1f9a5a44 180 await pool.destroy()
bdacc2d2
JB
181 const numberOfExitEvents = await exitPromise
182 expect(numberOfExitEvents).toBe(numberOfThreads)
506c2a14 183 })
184
185 it('Should work even without opts in input', async () => {
76b1e974 186 const pool1 = new FixedThreadPool(
e1ffb94f 187 numberOfThreads,
76b1e974
S
188 './tests/worker-files/thread/testWorker.js'
189 )
6db75ad9
JB
190 const res = await pool1.execute()
191 expect(res).toBe(false)
0e2503fc
JB
192 // We need to clean up the resources after our test
193 await pool1.destroy()
506c2a14 194 })
8d3782fa
JB
195
196 it('Verify that a pool with zero worker fails', async () => {
197 expect(
198 () => new FixedThreadPool(0, './tests/worker-files/thread/testWorker.js')
d4aeae5a 199 ).toThrowError('Cannot instantiate a fixed pool with no worker')
8d3782fa 200 })
506c2a14 201})