Merge branch 'master' of github.com:poolifier/poolifier
[poolifier.git] / tests / pools / thread / fixed.test.js
CommitLineData
a61a0724 1const { expect } = require('expect')
325f50bc 2const { FixedThreadPool } = require('../../../lib/index')
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 )
15 const emptyPool = new FixedThreadPool(
16 numberOfThreads,
17 './tests/worker-files/thread/emptyWorker.js',
18 { exitHandler: () => console.log('empty pool worker exited') }
19 )
20 const echoPool = new FixedThreadPool(
21 numberOfThreads,
22 './tests/worker-files/thread/echoWorker.js'
23 )
24 const errorPool = new FixedThreadPool(
25 numberOfThreads,
26 './tests/worker-files/thread/errorWorker.js',
27 {
28 errorHandler: e => console.error(e)
29 }
30 )
31 const asyncErrorPool = new FixedThreadPool(
32 numberOfThreads,
33 './tests/worker-files/thread/asyncErrorWorker.js',
34 {
35 errorHandler: e => console.error(e)
36 }
37 )
38 const asyncPool = new FixedThreadPool(
39 numberOfThreads,
40 './tests/worker-files/thread/asyncWorker.js'
41 )
42
0e2503fc
JB
43 after('Destroy all pools', async () => {
44 // We need to clean up the resources after our test
45 await echoPool.destroy()
46 await asyncPool.destroy()
47 await errorPool.destroy()
7c0ba920 48 await asyncErrorPool.destroy()
0e2503fc
JB
49 await emptyPool.destroy()
50 })
51
506c2a14 52 it('Choose worker round robin test', async () => {
53 const results = new Set()
5c5a1fb7 54 for (let i = 0; i < numberOfThreads; i++) {
fa0f5b28 55 results.add(pool.chooseWorker().threadId)
506c2a14 56 }
5c5a1fb7 57 expect(results.size).toBe(numberOfThreads)
506c2a14 58 })
59
60 it('Verify that the function is executed in a worker thread', async () => {
6db75ad9
JB
61 let result = await pool.execute({
62 function: WorkerFunctions.fibonacci
63 })
64 expect(result).toBe(false)
65 result = await pool.execute({
66 function: WorkerFunctions.factorial
67 })
68 expect(result).toBe(false)
506c2a14 69 })
70
106744f7 71 it('Verify that is possible to invoke the execute method without input', async () => {
72 const result = await pool.execute()
6db75ad9 73 expect(result).toBe(false)
106744f7 74 })
75
7c0ba920 76 it('Verify that busy event is emitted', async () => {
7c0ba920
JB
77 let poolBusy = 0
78 pool.emitter.on('busy', () => poolBusy++)
79 for (let i = 0; i < numberOfThreads * 2; i++) {
8cbb82eb 80 pool.execute()
7c0ba920 81 }
14916bf9
JB
82 // The `busy` event is triggered when the number of submitted tasks at once reach the number of fixed pool workers.
83 // So in total numberOfThreads + 1 times for a loop submitting up to numberOfThreads * 2 tasks to the fixed pool.
84 expect(poolBusy).toBe(numberOfThreads + 1)
7c0ba920
JB
85 })
86
106744f7 87 it('Verify that is possible to have a worker that return undefined', async () => {
88 const result = await emptyPool.execute()
6db75ad9 89 expect(result).toBeUndefined()
106744f7 90 })
91
92 it('Verify that data are sent to the worker correctly', async () => {
93 const data = { f: 10 }
94 const result = await echoPool.execute(data)
e1ffb94f 95 expect(result).toStrictEqual(data)
106744f7 96 })
97
7c0ba920 98 it('Verify that error handling is working properly:sync', async () => {
106744f7 99 const data = { f: 10 }
100 let inError
101 try {
102 await errorPool.execute(data)
103 } catch (e) {
104 inError = e
105 }
7c0ba920
JB
106 expect(inError).toBeDefined()
107 expect(inError).toBeInstanceOf(Error)
108 expect(inError.message).toBeDefined()
8620fb25 109 expect(typeof inError.message === 'string').toBe(true)
0302f8ec 110 expect(inError.message).toBe('Error Message from ThreadWorker')
7c0ba920
JB
111 })
112
113 it('Verify that error handling is working properly:async', async () => {
114 const data = { f: 10 }
115 let inError
116 try {
117 await asyncErrorPool.execute(data)
118 } catch (e) {
119 inError = e
120 }
121 expect(inError).toBeDefined()
122 expect(inError).toBeInstanceOf(Error)
123 expect(inError.message).toBeDefined()
8620fb25 124 expect(typeof inError.message === 'string').toBe(true)
0302f8ec 125 expect(inError.message).toBe('Error Message from ThreadWorker:async')
106744f7 126 })
127
7784f548 128 it('Verify that async function is working properly', async () => {
129 const data = { f: 10 }
3f7eb773 130 const startTime = Date.now()
7784f548 131 const result = await asyncPool.execute(data)
3f7eb773 132 const usedTime = Date.now() - startTime
e1ffb94f 133 expect(result).toStrictEqual(data)
32d490eb 134 expect(usedTime).toBeGreaterThanOrEqual(2000)
7784f548 135 })
136
506c2a14 137 it('Shutdown test', async () => {
85a3f8a7 138 const exitPromise = TestUtils.waitExits(pool, numberOfThreads)
1f9a5a44 139 await pool.destroy()
bdacc2d2
JB
140 const numberOfExitEvents = await exitPromise
141 expect(numberOfExitEvents).toBe(numberOfThreads)
506c2a14 142 })
143
144 it('Should work even without opts in input', async () => {
76b1e974 145 const pool1 = new FixedThreadPool(
e1ffb94f 146 numberOfThreads,
76b1e974
S
147 './tests/worker-files/thread/testWorker.js'
148 )
6db75ad9
JB
149 const res = await pool1.execute()
150 expect(res).toBe(false)
0e2503fc
JB
151 // We need to clean up the resources after our test
152 await pool1.destroy()
506c2a14 153 })
8d3782fa
JB
154
155 it('Verify that a pool with zero worker fails', async () => {
156 expect(
157 () => new FixedThreadPool(0, './tests/worker-files/thread/testWorker.js')
158 ).toThrowError(new Error('Cannot instantiate a fixed pool with no worker'))
159 })
506c2a14 160})