Fix busy event emission on fixed pool: (#332)
[poolifier.git] / tests / pools / abstract / abstract-pool.test.js
CommitLineData
3ec964d6 1const expect = require('expect')
e843b904
JB
2const {
3 FixedClusterPool,
4 FixedThreadPool,
5 WorkerChoiceStrategies
6} = require('../../../lib/index')
3ec964d6 7const expectedError = new Error('Worker could not be found in tasks map')
8
7c0ba920
JB
9const numberOfWorkers = 1
10
3ec964d6 11class StubPoolWithTasksMapClear extends FixedThreadPool {
12 removeAllWorker () {
13 this.tasks.clear()
14 }
15}
16
17class StubPoolWithIsMainMethod extends FixedThreadPool {
18 isMain () {
19 return false
20 }
21}
22
a35560ba 23describe('Abstract pool test suite', () => {
3ec964d6 24 it('Simulate worker not found during increaseWorkersTask', () => {
25 const pool = new StubPoolWithTasksMapClear(
7c0ba920 26 numberOfWorkers,
1927ee67 27 './tests/worker-files/thread/testWorker.js'
3ec964d6 28 )
0e2503fc 29 // Simulate worker not found.
3ec964d6 30 pool.removeAllWorker()
31 expect(() => pool.increaseWorkersTask()).toThrowError(expectedError)
7c0ba920 32 pool.destroy()
3ec964d6 33 })
34
35 it('Simulate worker not found during decreaseWorkersTasks', () => {
36 const pool = new StubPoolWithTasksMapClear(
7c0ba920 37 numberOfWorkers,
8d3782fa 38 './tests/worker-files/thread/testWorker.js',
3ec964d6 39 {
40 errorHandler: e => console.error(e)
41 }
42 )
0e2503fc 43 // Simulate worker not found.
3ec964d6 44 pool.removeAllWorker()
45 expect(() => pool.decreaseWorkersTasks()).toThrowError(expectedError)
7c0ba920 46 pool.destroy()
3ec964d6 47 })
48
49 it('Simulate pool creation from a non main thread/process', () => {
8d3782fa
JB
50 expect(
51 () =>
52 new StubPoolWithIsMainMethod(
7c0ba920 53 numberOfWorkers,
8d3782fa
JB
54 './tests/worker-files/thread/testWorker.js',
55 {
56 errorHandler: e => console.error(e)
57 }
58 )
59 ).toThrowError(new Error('Cannot start a pool from a worker!'))
3ec964d6 60 })
c510fea7
APA
61
62 it('Verify that filePath is checked', () => {
292ad316
JB
63 const expectedError = new Error(
64 'Please specify a file with a worker implementation'
65 )
7c0ba920 66 expect(() => new FixedThreadPool(numberOfWorkers)).toThrowError(
292ad316 67 expectedError
8d3782fa 68 )
7c0ba920 69 expect(() => new FixedThreadPool(numberOfWorkers, '')).toThrowError(
292ad316 70 expectedError
8d3782fa
JB
71 )
72 })
73
74 it('Verify that numberOfWorkers is checked', () => {
75 expect(() => new FixedThreadPool()).toThrowError(
76 new Error(
77 'Cannot instantiate a pool without specifying the number of workers'
78 )
79 )
80 })
81
82 it('Verify that a negative number of workers is checked', () => {
83 expect(
84 () =>
85 new FixedClusterPool(-1, './tests/worker-files/cluster/testWorker.js')
86 ).toThrowError(
87 new Error('Cannot instantiate a pool with a negative number of workers')
88 )
89 })
90
91 it('Verify that a non integer number of workers is checked', () => {
92 expect(
93 () =>
94 new FixedThreadPool(0.25, './tests/worker-files/thread/testWorker.js')
95 ).toThrowError(
96 new Error(
97 'Cannot instantiate a pool with a non integer number of workers'
98 )
99 )
c510fea7 100 })
7c0ba920
JB
101
102 it('Verify that pool options are checked', () => {
103 let pool = new FixedThreadPool(
104 numberOfWorkers,
105 './tests/worker-files/thread/testWorker.js'
106 )
8620fb25 107 expect(pool.opts.enableEvents).toBe(true)
7c0ba920 108 expect(pool.emitter).toBeDefined()
e843b904
JB
109 expect(pool.opts.workerChoiceStrategy).toBe(
110 WorkerChoiceStrategies.ROUND_ROBIN
111 )
7c0ba920
JB
112 pool.destroy()
113 pool = new FixedThreadPool(
114 numberOfWorkers,
115 './tests/worker-files/thread/testWorker.js',
116 {
e843b904 117 workerChoiceStrategy: WorkerChoiceStrategies.LESS_RECENTLY_USED,
7c0ba920
JB
118 enableEvents: false
119 }
120 )
8620fb25 121 expect(pool.opts.enableEvents).toBe(false)
7c0ba920 122 expect(pool.emitter).toBeUndefined()
e843b904
JB
123 expect(pool.opts.workerChoiceStrategy).toBe(
124 WorkerChoiceStrategies.LESS_RECENTLY_USED
125 )
7c0ba920
JB
126 pool.destroy()
127 })
128
129 it("Verify that pool event emitter 'busy' event can register a callback", () => {
130 const pool = new FixedThreadPool(
131 numberOfWorkers,
132 './tests/worker-files/thread/testWorker.js'
133 )
134 const promises = []
135 let poolBusy = 0
136 pool.emitter.on('busy', () => poolBusy++)
137 for (let i = 0; i < numberOfWorkers * 2; i++) {
138 promises.push(pool.execute({ test: 'test' }))
139 }
14916bf9
JB
140 // The `busy` event is triggered when the number of submitted tasks at once reach the number of fixed pool workers.
141 // So in total numberOfWorkers + 1 times for a loop submitting up to numberOfWorkers * 2 tasks to the fixed pool.
142 expect(poolBusy).toBe(numberOfWorkers + 1)
7c0ba920
JB
143 pool.destroy()
144 })
3ec964d6 145})