test: improve task error handling
[poolifier.git] / tests / pools / thread / fixed.test.js
1 const { expect } = require('expect')
2 const { FixedThreadPool, PoolEvents } = require('../../../lib')
3 const { WorkerFunctions } = require('../../test-types')
4 const TestUtils = require('../../test-utils')
5
6 describe('Fixed thread pool test suite', () => {
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 )
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 )
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
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()
59 await asyncErrorPool.destroy()
60 await emptyPool.destroy()
61 await queuePool.destroy()
62 })
63
64 it('Verify that the function is executed in a worker thread', async () => {
65 let result = await pool.execute({
66 function: WorkerFunctions.fibonacci
67 })
68 expect(result).toBe(121393)
69 result = await pool.execute({
70 function: WorkerFunctions.factorial
71 })
72 expect(result).toBe(9.33262154439441e157)
73 })
74
75 it('Verify that is possible to invoke the execute() method without input', async () => {
76 const result = await pool.execute()
77 expect(result).toBe(false)
78 })
79
80 it("Verify that 'busy' event is emitted", async () => {
81 let poolBusy = 0
82 pool.emitter.on(PoolEvents.busy, () => ++poolBusy)
83 for (let i = 0; i < numberOfThreads * 2; i++) {
84 pool.execute()
85 }
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)
89 })
90
91 it('Verify that tasks queuing is working', async () => {
92 const promises = new Set()
93 const maxMultiplier = 2
94 for (let i = 0; i < numberOfThreads * maxMultiplier; i++) {
95 promises.add(queuePool.execute())
96 }
97 expect(promises.size).toBe(numberOfThreads * maxMultiplier)
98 for (const workerNode of queuePool.workerNodes) {
99 expect(workerNode.tasksUsage.running).toBeLessThanOrEqual(
100 queuePool.opts.tasksQueueOptions.concurrency
101 )
102 expect(workerNode.tasksUsage.ran).toBe(0)
103 expect(workerNode.tasksQueue.size).toBeGreaterThan(0)
104 }
105 expect(queuePool.info.runningTasks).toBe(numberOfThreads)
106 expect(queuePool.info.queuedTasks).toBe(
107 numberOfThreads * maxMultiplier - numberOfThreads
108 )
109 expect(queuePool.info.maxQueuedTasks).toBe(
110 numberOfThreads * maxMultiplier - numberOfThreads
111 )
112 await Promise.all(promises)
113 for (const workerNode of queuePool.workerNodes) {
114 expect(workerNode.tasksUsage.running).toBe(0)
115 expect(workerNode.tasksUsage.ran).toBeGreaterThan(0)
116 expect(workerNode.tasksUsage.ran).toBeLessThanOrEqual(maxMultiplier)
117 expect(workerNode.tasksQueue.size).toBe(0)
118 }
119 })
120
121 it('Verify that is possible to have a worker that return undefined', async () => {
122 const result = await emptyPool.execute()
123 expect(result).toBeUndefined()
124 })
125
126 it('Verify that data are sent to the worker correctly', async () => {
127 const data = { f: 10 }
128 const result = await echoPool.execute(data)
129 expect(result).toStrictEqual(data)
130 })
131
132 it('Verify that error handling is working properly:sync', async () => {
133 const data = { f: 10 }
134 let taskError
135 errorPool.emitter.on(PoolEvents.taskError, e => {
136 taskError = e
137 })
138 let inError
139 try {
140 await errorPool.execute(data)
141 } catch (e) {
142 inError = e
143 }
144 expect(inError).toBeDefined()
145 expect(inError).toBeInstanceOf(Error)
146 expect(inError.message).toBeDefined()
147 expect(typeof inError.message === 'string').toBe(true)
148 expect(inError.message).toBe('Error Message from ThreadWorker')
149 expect(taskError).toStrictEqual({
150 error: new Error('Error Message from ThreadWorker'),
151 errorData: data
152 })
153 expect(
154 errorPool.workerNodes.some(
155 workerNode => workerNode.tasksUsage.error === 1
156 )
157 ).toBe(true)
158 })
159
160 it('Verify that error handling is working properly:async', async () => {
161 const data = { f: 10 }
162 // let taskError
163 // errorPool.emitter.on(PoolEvents.taskError, e => {
164 // taskError = e
165 // })
166 let inError
167 try {
168 await asyncErrorPool.execute(data)
169 } catch (e) {
170 inError = e
171 }
172 expect(inError).toBeDefined()
173 expect(inError).toBeInstanceOf(Error)
174 expect(inError.message).toBeDefined()
175 expect(typeof inError.message === 'string').toBe(true)
176 expect(inError.message).toBe('Error Message from ThreadWorker:async')
177 // expect(taskError).toStrictEqual({
178 // error: new Error('Error Message from ThreadWorker:async'),
179 // errorData: data
180 // })
181 expect(
182 asyncErrorPool.workerNodes.some(
183 workerNode => workerNode.tasksUsage.error === 1
184 )
185 ).toBe(true)
186 })
187
188 it('Verify that async function is working properly', async () => {
189 const data = { f: 10 }
190 const startTime = performance.now()
191 const result = await asyncPool.execute(data)
192 const usedTime = performance.now() - startTime
193 expect(result).toStrictEqual(data)
194 expect(usedTime).toBeGreaterThanOrEqual(2000)
195 })
196
197 it('Shutdown test', async () => {
198 const exitPromise = TestUtils.waitExits(pool, numberOfThreads)
199 await pool.destroy()
200 const numberOfExitEvents = await exitPromise
201 expect(numberOfExitEvents).toBe(numberOfThreads)
202 })
203
204 it('Should work even without opts in input', async () => {
205 const pool1 = new FixedThreadPool(
206 numberOfThreads,
207 './tests/worker-files/thread/testWorker.js'
208 )
209 const res = await pool1.execute()
210 expect(res).toBe(false)
211 // We need to clean up the resources after our test
212 await pool1.destroy()
213 })
214
215 it('Verify that a pool with zero worker fails', async () => {
216 expect(
217 () => new FixedThreadPool(0, './tests/worker-files/thread/testWorker.js')
218 ).toThrowError('Cannot instantiate a fixed pool with no worker')
219 })
220 })