build: silence linter
[poolifier.git] / tests / pools / thread / fixed.test.js
CommitLineData
a61a0724 1const { expect } = require('expect')
cdace0e5 2const { FixedThreadPool, PoolEvents } = require('../../../lib')
dbca3be9 3const { TaskFunctions } = require('../../test-types')
1dcbfefc 4const { waitPoolEvents, waitWorkerEvents } = require('../../test-utils')
506c2a14 5
079de991 6describe('Fixed thread pool test suite', () => {
e1ffb94f 7 const numberOfThreads = 6
4e377863 8 const tasksConcurrency = 2
e1ffb94f
JB
9 const pool = new FixedThreadPool(
10 numberOfThreads,
11 './tests/worker-files/thread/testWorker.js',
12 {
13 errorHandler: e => console.error(e)
14 }
15 )
594bfb84
JB
16 const queuePool = new FixedThreadPool(
17 numberOfThreads,
18 './tests/worker-files/thread/testWorker.js',
19 {
20 enableTasksQueue: true,
21 tasksQueueOptions: {
4e377863 22 concurrency: tasksConcurrency
594bfb84
JB
23 },
24 errorHandler: e => console.error(e)
25 }
26 )
e1ffb94f
JB
27 const emptyPool = new FixedThreadPool(
28 numberOfThreads,
29 './tests/worker-files/thread/emptyWorker.js',
73bfd59d 30 { exitHandler: () => console.info('empty pool worker exited') }
e1ffb94f
JB
31 )
32 const echoPool = new FixedThreadPool(
33 numberOfThreads,
34 './tests/worker-files/thread/echoWorker.js'
35 )
36 const errorPool = new FixedThreadPool(
37 numberOfThreads,
38 './tests/worker-files/thread/errorWorker.js',
39 {
40 errorHandler: e => console.error(e)
41 }
42 )
43 const asyncErrorPool = new FixedThreadPool(
44 numberOfThreads,
45 './tests/worker-files/thread/asyncErrorWorker.js',
46 {
47 errorHandler: e => console.error(e)
48 }
49 )
50 const asyncPool = new FixedThreadPool(
51 numberOfThreads,
52 './tests/worker-files/thread/asyncWorker.js'
53 )
54
0e2503fc
JB
55 after('Destroy all pools', async () => {
56 // We need to clean up the resources after our test
57 await echoPool.destroy()
58 await asyncPool.destroy()
59 await errorPool.destroy()
7c0ba920 60 await asyncErrorPool.destroy()
0e2503fc 61 await emptyPool.destroy()
594bfb84 62 await queuePool.destroy()
0e2503fc
JB
63 })
64
506c2a14 65 it('Verify that the function is executed in a worker thread', async () => {
6db75ad9 66 let result = await pool.execute({
dbca3be9 67 function: TaskFunctions.fibonacci
6db75ad9 68 })
024daf59 69 expect(result).toBe(75025)
6db75ad9 70 result = await pool.execute({
dbca3be9 71 function: TaskFunctions.factorial
6db75ad9 72 })
70a4f5ea 73 expect(result).toBe(9.33262154439441e157)
506c2a14 74 })
75
318d4156 76 it('Verify that is possible to invoke the execute() method without input', async () => {
106744f7 77 const result = await pool.execute()
30b963d4 78 expect(result).toStrictEqual({ ok: 1 })
106744f7 79 })
80
1dcbfefc 81 it("Verify that 'ready' event is emitted", async () => {
079de991
JB
82 const pool1 = new FixedThreadPool(
83 numberOfThreads,
84 './tests/worker-files/thread/testWorker.js',
85 {
86 errorHandler: e => console.error(e)
87 }
88 )
89 let poolReady = 0
66293e7d 90 pool1.emitter.on(PoolEvents.ready, () => ++poolReady)
1dcbfefc 91 await waitPoolEvents(pool1, 'ready', 1)
216541b6
JB
92 expect(poolReady).toBe(1)
93 })
94
1dcbfefc 95 it("Verify that 'busy' event is emitted", () => {
7c0ba920 96 let poolBusy = 0
aee46736 97 pool.emitter.on(PoolEvents.busy, () => ++poolBusy)
7c0ba920 98 for (let i = 0; i < numberOfThreads * 2; i++) {
8cbb82eb 99 pool.execute()
7c0ba920 100 }
14916bf9
JB
101 // The `busy` event is triggered when the number of submitted tasks at once reach the number of fixed pool workers.
102 // So in total numberOfThreads + 1 times for a loop submitting up to numberOfThreads * 2 tasks to the fixed pool.
103 expect(poolBusy).toBe(numberOfThreads + 1)
7c0ba920
JB
104 })
105
594bfb84 106 it('Verify that tasks queuing is working', async () => {
d3d4b67d 107 const promises = new Set()
4e377863 108 const maxMultiplier = 3 // Must be greater than tasksConcurrency
594bfb84 109 for (let i = 0; i < numberOfThreads * maxMultiplier; i++) {
d3d4b67d 110 promises.add(queuePool.execute())
594bfb84 111 }
d3d4b67d 112 expect(promises.size).toBe(numberOfThreads * maxMultiplier)
594bfb84 113 for (const workerNode of queuePool.workerNodes) {
f59e1027 114 expect(workerNode.usage.tasks.executing).toBeLessThanOrEqual(
594bfb84
JB
115 queuePool.opts.tasksQueueOptions.concurrency
116 )
f59e1027 117 expect(workerNode.usage.tasks.executed).toBe(0)
4e377863
JB
118 expect(workerNode.usage.tasks.queued).toBe(
119 maxMultiplier - queuePool.opts.tasksQueueOptions.concurrency
120 )
121 expect(workerNode.usage.tasks.maxQueued).toBe(
122 maxMultiplier - queuePool.opts.tasksQueueOptions.concurrency
123 )
594bfb84 124 }
4e377863
JB
125 expect(queuePool.info.executingTasks).toBe(
126 numberOfThreads * queuePool.opts.tasksQueueOptions.concurrency
127 )
6b27d407 128 expect(queuePool.info.queuedTasks).toBe(
4e377863
JB
129 numberOfThreads *
130 (maxMultiplier - queuePool.opts.tasksQueueOptions.concurrency)
6b27d407
JB
131 )
132 expect(queuePool.info.maxQueuedTasks).toBe(
4e377863
JB
133 numberOfThreads *
134 (maxMultiplier - queuePool.opts.tasksQueueOptions.concurrency)
d3d4b67d 135 )
594bfb84
JB
136 await Promise.all(promises)
137 for (const workerNode of queuePool.workerNodes) {
f59e1027 138 expect(workerNode.usage.tasks.executing).toBe(0)
4e377863 139 expect(workerNode.usage.tasks.executed).toBe(maxMultiplier)
f59e1027 140 expect(workerNode.usage.tasks.queued).toBe(0)
4e377863
JB
141 expect(workerNode.usage.tasks.maxQueued).toBe(
142 maxMultiplier - queuePool.opts.tasksQueueOptions.concurrency
143 )
594bfb84
JB
144 }
145 })
146
106744f7 147 it('Verify that is possible to have a worker that return undefined', async () => {
148 const result = await emptyPool.execute()
6db75ad9 149 expect(result).toBeUndefined()
106744f7 150 })
151
152 it('Verify that data are sent to the worker correctly', async () => {
153 const data = { f: 10 }
154 const result = await echoPool.execute(data)
e1ffb94f 155 expect(result).toStrictEqual(data)
106744f7 156 })
157
9ea61037
JB
158 it('Verify that transferable objects are sent to the worker correctly', async () => {
159 const transferList = [new ArrayBuffer(16), new MessageChannel().port1]
160 let error
161 let result
162 try {
163 result = await pool.execute(undefined, undefined, transferList)
164 } catch (e) {
165 error = e
166 }
167 expect(result).toStrictEqual({ ok: 1 })
168 expect(error).toBeUndefined()
169 })
170
7c0ba920 171 it('Verify that error handling is working properly:sync', async () => {
106744f7 172 const data = { f: 10 }
d46660cd
JB
173 let taskError
174 errorPool.emitter.on(PoolEvents.taskError, e => {
175 taskError = e
176 })
106744f7 177 let inError
178 try {
179 await errorPool.execute(data)
180 } catch (e) {
181 inError = e
182 }
7c0ba920
JB
183 expect(inError).toBeDefined()
184 expect(inError).toBeInstanceOf(Error)
185 expect(inError.message).toBeDefined()
8620fb25 186 expect(typeof inError.message === 'string').toBe(true)
985d0e79
JB
187 expect(inError.message).toBe('Error Message from ThreadWorker')
188 expect(taskError).toStrictEqual({
ff128cc9 189 name: 'default',
985d0e79
JB
190 message: new Error('Error Message from ThreadWorker'),
191 data
192 })
18482cec
JB
193 expect(
194 errorPool.workerNodes.some(
f59e1027 195 workerNode => workerNode.usage.tasks.failed === 1
18482cec
JB
196 )
197 ).toBe(true)
7c0ba920
JB
198 })
199
200 it('Verify that error handling is working properly:async', async () => {
201 const data = { f: 10 }
4f0b85b3
JB
202 let taskError
203 asyncErrorPool.emitter.on(PoolEvents.taskError, e => {
204 taskError = e
205 })
7c0ba920
JB
206 let inError
207 try {
208 await asyncErrorPool.execute(data)
209 } catch (e) {
210 inError = e
211 }
212 expect(inError).toBeDefined()
213 expect(inError).toBeInstanceOf(Error)
214 expect(inError.message).toBeDefined()
8620fb25 215 expect(typeof inError.message === 'string').toBe(true)
985d0e79
JB
216 expect(inError.message).toBe('Error Message from ThreadWorker:async')
217 expect(taskError).toStrictEqual({
ff128cc9 218 name: 'default',
985d0e79
JB
219 message: new Error('Error Message from ThreadWorker:async'),
220 data
221 })
18482cec
JB
222 expect(
223 asyncErrorPool.workerNodes.some(
f59e1027 224 workerNode => workerNode.usage.tasks.failed === 1
18482cec
JB
225 )
226 ).toBe(true)
106744f7 227 })
228
7784f548 229 it('Verify that async function is working properly', async () => {
230 const data = { f: 10 }
15e5141f 231 const startTime = performance.now()
7784f548 232 const result = await asyncPool.execute(data)
15e5141f 233 const usedTime = performance.now() - startTime
e1ffb94f 234 expect(result).toStrictEqual(data)
32d490eb 235 expect(usedTime).toBeGreaterThanOrEqual(2000)
7784f548 236 })
237
506c2a14 238 it('Shutdown test', async () => {
bac873bd 239 const exitPromise = waitWorkerEvents(pool, 'exit', numberOfThreads)
1f9a5a44 240 await pool.destroy()
bdacc2d2
JB
241 const numberOfExitEvents = await exitPromise
242 expect(numberOfExitEvents).toBe(numberOfThreads)
506c2a14 243 })
244
90082c8c 245 it('Verify that thread pool options are checked', async () => {
f59e1027 246 const workerFilePath = './tests/worker-files/thread/testWorker.js'
90082c8c
JB
247 let pool1 = new FixedThreadPool(numberOfThreads, workerFilePath)
248 expect(pool1.opts.workerOptions).toBeUndefined()
249 await pool1.destroy()
250 pool1 = new FixedThreadPool(numberOfThreads, workerFilePath, {
251 workerOptions: {
252 env: { TEST: 'test' },
253 name: 'test'
254 }
255 })
256 expect(pool1.opts.workerOptions).toStrictEqual({
257 env: { TEST: 'test' },
258 name: 'test'
259 })
260 await pool1.destroy()
261 })
262
506c2a14 263 it('Should work even without opts in input', async () => {
76b1e974 264 const pool1 = new FixedThreadPool(
e1ffb94f 265 numberOfThreads,
76b1e974
S
266 './tests/worker-files/thread/testWorker.js'
267 )
6db75ad9 268 const res = await pool1.execute()
30b963d4 269 expect(res).toStrictEqual({ ok: 1 })
0e2503fc
JB
270 // We need to clean up the resources after our test
271 await pool1.destroy()
506c2a14 272 })
8d3782fa
JB
273
274 it('Verify that a pool with zero worker fails', async () => {
275 expect(
276 () => new FixedThreadPool(0, './tests/worker-files/thread/testWorker.js')
2431bdb4 277 ).toThrowError('Cannot instantiate a fixed pool with zero worker')
8d3782fa 278 })
506c2a14 279})