refactor: improve task error message
[poolifier.git] / tests / pools / cluster / fixed.test.js
CommitLineData
a61a0724 1const { expect } = require('expect')
cdace0e5 2const { FixedClusterPool, PoolEvents } = require('../../../lib')
2d2e32c2 3const { WorkerFunctions } = require('../../test-types')
85a3f8a7 4const TestUtils = require('../../test-utils')
325f50bc 5
a35560ba 6describe('Fixed cluster pool test suite', () => {
e1ffb94f
JB
7 const numberOfWorkers = 6
8 const pool = new FixedClusterPool(
9 numberOfWorkers,
10 './tests/worker-files/cluster/testWorker.js',
11 {
12 errorHandler: e => console.error(e)
13 }
14 )
594bfb84
JB
15 const queuePool = new FixedClusterPool(
16 numberOfWorkers,
17 './tests/worker-files/cluster/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 FixedClusterPool(
27 numberOfWorkers,
28 './tests/worker-files/cluster/emptyWorker.js',
29 { exitHandler: () => console.log('empty pool worker exited') }
30 )
31 const echoPool = new FixedClusterPool(
32 numberOfWorkers,
33 './tests/worker-files/cluster/echoWorker.js'
34 )
35 const errorPool = new FixedClusterPool(
36 numberOfWorkers,
37 './tests/worker-files/cluster/errorWorker.js',
38 {
39 errorHandler: e => console.error(e)
40 }
41 )
42 const asyncErrorPool = new FixedClusterPool(
43 numberOfWorkers,
44 './tests/worker-files/cluster/asyncErrorWorker.js',
45 {
46 errorHandler: e => console.error(e)
47 }
48 )
49 const asyncPool = new FixedClusterPool(
50 numberOfWorkers,
51 './tests/worker-files/cluster/asyncWorker.js'
52 )
53
8bc77620
APA
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()
594bfb84 61 await queuePool.destroy()
8bc77620
APA
62 })
63
325f50bc 64 it('Verify that the function is executed in a worker cluster', async () => {
6db75ad9
JB
65 let result = await pool.execute({
66 function: WorkerFunctions.fibonacci
67 })
024daf59 68 expect(result).toBe(75025)
6db75ad9
JB
69 result = await pool.execute({
70 function: WorkerFunctions.factorial
71 })
70a4f5ea 72 expect(result).toBe(9.33262154439441e157)
325f50bc
S
73 })
74
318d4156 75 it('Verify that is possible to invoke the execute() method without input', async () => {
325f50bc 76 const result = await pool.execute()
6db75ad9 77 expect(result).toBe(false)
325f50bc
S
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 < numberOfWorkers * 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 numberOfWorkers + 1 times for a loop submitting up to numberOfWorkers * 2 tasks to the fixed pool.
88 expect(poolBusy).toBe(numberOfWorkers + 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 < numberOfWorkers * maxMultiplier; i++) {
d3d4b67d 95 promises.add(queuePool.execute())
594bfb84 96 }
d3d4b67d 97 expect(promises.size).toBe(numberOfWorkers * maxMultiplier)
594bfb84 98 for (const workerNode of queuePool.workerNodes) {
f59e1027 99 expect(workerNode.usage.tasks.executing).toBeLessThanOrEqual(
594bfb84
JB
100 queuePool.opts.tasksQueueOptions.concurrency
101 )
f59e1027
JB
102 expect(workerNode.usage.tasks.executed).toBe(0)
103 expect(workerNode.usage.tasks.queued).toBeGreaterThan(0)
104 expect(workerNode.usage.tasks.maxQueued).toBeGreaterThan(0)
594bfb84 105 }
a4e07f72 106 expect(queuePool.info.executingTasks).toBe(numberOfWorkers)
6b27d407
JB
107 expect(queuePool.info.queuedTasks).toBe(
108 numberOfWorkers * maxMultiplier - numberOfWorkers
109 )
110 expect(queuePool.info.maxQueuedTasks).toBe(
d3d4b67d
JB
111 numberOfWorkers * maxMultiplier - numberOfWorkers
112 )
594bfb84
JB
113 await Promise.all(promises)
114 for (const workerNode of queuePool.workerNodes) {
f59e1027
JB
115 expect(workerNode.usage.tasks.executing).toBe(0)
116 expect(workerNode.usage.tasks.executed).toBeGreaterThan(0)
117 expect(workerNode.usage.tasks.executed).toBeLessThanOrEqual(maxMultiplier)
118 expect(workerNode.usage.tasks.queued).toBe(0)
119 expect(workerNode.usage.tasks.maxQueued).toBe(1)
594bfb84
JB
120 }
121 })
122
325f50bc
S
123 it('Verify that is possible to have a worker that return undefined', async () => {
124 const result = await emptyPool.execute()
6db75ad9 125 expect(result).toBeUndefined()
325f50bc
S
126 })
127
128 it('Verify that data are sent to the worker correctly', async () => {
129 const data = { f: 10 }
130 const result = await echoPool.execute(data)
e1ffb94f 131 expect(result).toStrictEqual(data)
325f50bc
S
132 })
133
134 it('Verify that error handling is working properly:sync', async () => {
135 const data = { f: 10 }
d46660cd
JB
136 let taskError
137 errorPool.emitter.on(PoolEvents.taskError, e => {
138 taskError = e
139 })
325f50bc
S
140 let inError
141 try {
142 await errorPool.execute(data)
143 } catch (e) {
144 inError = e
145 }
146 expect(inError).toBeDefined()
8620fb25 147 expect(typeof inError === 'string').toBe(true)
eb7bf744
JB
148 expect(inError).toContain('Error Message from ClusterWorker on worker')
149 expect(taskError.data).toStrictEqual(data)
18482cec
JB
150 expect(
151 errorPool.workerNodes.some(
f59e1027 152 workerNode => workerNode.usage.tasks.failed === 1
18482cec
JB
153 )
154 ).toBe(true)
325f50bc
S
155 })
156
157 it('Verify that error handling is working properly:async', async () => {
158 const data = { f: 10 }
4f0b85b3
JB
159 let taskError
160 asyncErrorPool.emitter.on(PoolEvents.taskError, e => {
161 taskError = e
162 })
325f50bc
S
163 let inError
164 try {
165 await asyncErrorPool.execute(data)
166 } catch (e) {
167 inError = e
168 }
169 expect(inError).toBeDefined()
8620fb25 170 expect(typeof inError === 'string').toBe(true)
eb7bf744
JB
171 expect(inError).toContain(
172 'Error Message from ClusterWorker:async on worker'
173 )
174 expect(taskError.data).toStrictEqual(data)
18482cec
JB
175 expect(
176 asyncErrorPool.workerNodes.some(
f59e1027 177 workerNode => workerNode.usage.tasks.failed === 1
18482cec
JB
178 )
179 ).toBe(true)
325f50bc
S
180 })
181
182 it('Verify that async function is working properly', async () => {
183 const data = { f: 10 }
15e5141f 184 const startTime = performance.now()
325f50bc 185 const result = await asyncPool.execute(data)
15e5141f 186 const usedTime = performance.now() - startTime
e1ffb94f 187 expect(result).toStrictEqual(data)
325f50bc
S
188 expect(usedTime).toBeGreaterThanOrEqual(2000)
189 })
190
191 it('Shutdown test', async () => {
2c039e43
JB
192 const exitPromise = TestUtils.waitWorkerEvents(
193 pool,
194 'exit',
195 numberOfWorkers
196 )
45dbbb14 197 await pool.destroy()
bdacc2d2
JB
198 const numberOfExitEvents = await exitPromise
199 expect(numberOfExitEvents).toBe(numberOfWorkers)
325f50bc
S
200 })
201
1a76932b
JB
202 it('Verify that cluster pool options are checked', async () => {
203 const workerFilePath = './tests/worker-files/cluster/testWorker.js'
204 let pool1 = new FixedClusterPool(numberOfWorkers, workerFilePath)
205 expect(pool1.opts.env).toBeUndefined()
206 expect(pool1.opts.settings).toBeUndefined()
207 await pool1.destroy()
208 pool1 = new FixedClusterPool(numberOfWorkers, workerFilePath, {
209 env: { TEST: 'test' },
210 settings: { args: ['--use', 'http'], silent: true }
211 })
212 expect(pool1.opts.env).toStrictEqual({ TEST: 'test' })
213 expect(pool1.opts.settings).toStrictEqual({
214 args: ['--use', 'http'],
215 silent: true
216 })
217 expect({ ...pool1.opts.settings, exec: workerFilePath }).toStrictEqual({
218 args: ['--use', 'http'],
219 silent: true,
220 exec: workerFilePath
221 })
222 await pool1.destroy()
223 })
224
325f50bc
S
225 it('Should work even without opts in input', async () => {
226 const pool1 = new FixedClusterPool(
e1ffb94f 227 numberOfWorkers,
76b1e974 228 './tests/worker-files/cluster/testWorker.js'
325f50bc 229 )
6db75ad9
JB
230 const res = await pool1.execute()
231 expect(res).toBe(false)
8bc77620
APA
232 // We need to clean up the resources after our test
233 await pool1.destroy()
325f50bc 234 })
8d3782fa
JB
235
236 it('Verify that a pool with zero worker fails', async () => {
237 expect(
238 () =>
239 new FixedClusterPool(0, './tests/worker-files/cluster/testWorker.js')
d4aeae5a 240 ).toThrowError('Cannot instantiate a fixed pool with no worker')
8d3782fa 241 })
325f50bc 242})