Bump @types/node from 14.14.31 to 14.14.32 (#258)
[poolifier.git] / tests / pools / cluster / dynamic.test.js
CommitLineData
506c2a14 1const expect = require('expect')
325f50bc 2const { DynamicClusterPool } = require('../../../lib/index')
85a3f8a7 3const TestUtils = require('../../test-utils')
506c2a14 4const min = 1
c719859c 5const max = 3
325f50bc
S
6const pool = new DynamicClusterPool(
7 min,
8 max,
76b1e974 9 './tests/worker-files/cluster/testWorker.js',
325f50bc 10 {
e5177d86 11 errorHandler: e => console.error(e)
325f50bc
S
12 }
13)
506c2a14 14
a35560ba 15describe('Dynamic cluster pool test suite', () => {
325f50bc 16 it('Verify that the function is executed in a worker cluster', async () => {
506c2a14 17 const result = await pool.execute({ test: 'test' })
18 expect(result).toBeDefined()
19 expect(result).toBeFalsy()
20 })
21
22 it('Verify that new workers are created when required, max size is not exceeded and that after a while new workers will die', async () => {
23 const promises = []
7c0ba920
JB
24 let poolBusy = 0
25 pool.emitter.on('busy', () => poolBusy++)
cf9aa6c3 26 for (let i = 0; i < max * 2; i++) {
506c2a14 27 promises.push(pool.execute({ test: 'test' }))
28 }
325f50bc
S
29 expect(pool.workers.length).toBeLessThanOrEqual(max)
30 expect(pool.workers.length).toBeGreaterThan(min)
7c0ba920 31 expect(poolBusy).toEqual(max + 1)
85a3f8a7
APA
32 const numberOfExitEvents = await TestUtils.waitExits(pool, max - min)
33 expect(numberOfExitEvents).toBe(max - min)
506c2a14 34 })
35
325f50bc 36 it('Verify scale worker up and down is working', async () => {
bcf04003 37 expect(pool.workers.length).toBe(min)
38 for (let i = 0; i < max * 10; i++) {
39 pool.execute({ test: 'test' })
40 }
325f50bc 41 expect(pool.workers.length).toBeGreaterThan(min)
85a3f8a7 42 await TestUtils.waitExits(pool, max - min)
bcf04003 43 expect(pool.workers.length).toBe(min)
44 for (let i = 0; i < max * 10; i++) {
45 pool.execute({ test: 'test' })
46 }
325f50bc 47 expect(pool.workers.length).toBeGreaterThan(min)
85a3f8a7 48 await TestUtils.waitExits(pool, max - min)
bcf04003 49 expect(pool.workers.length).toBe(min)
50 })
506c2a14 51
85a3f8a7
APA
52 it('Shutdown test', async () => {
53 const exitPromise = TestUtils.waitExits(pool, min)
54 await pool.destroy()
55 const res = await exitPromise
56 expect(res).toBe(min)
506c2a14 57 })
58
8d3782fa
JB
59 it('Validation of inputs test', () => {
60 expect(() => new DynamicClusterPool(min)).toThrowError(
61 new Error('Please specify a file with a worker implementation')
62 )
63 })
64
506c2a14 65 it('Should work even without opts in input', async () => {
325f50bc
S
66 const pool1 = new DynamicClusterPool(
67 1,
68 1,
76b1e974 69 './tests/worker-files/cluster/testWorker.js'
325f50bc 70 )
8bc77620
APA
71 const result = await pool1.execute({ test: 'test' })
72 expect(result).toBeFalsy()
73 // We need to clean up the resources after our test
74 await pool1.destroy()
506c2a14 75 })
e826bd34 76
4c35177b 77 it('Verify scale processes up and down is working when long running task is used:hard', async () => {
c01733f1 78 const longRunningPool = new DynamicClusterPool(
79 min,
80 max,
85a3f8a7 81 './tests/worker-files/cluster/longRunningWorkerHardBehavior.js'
4c35177b 82 )
83 expect(longRunningPool.workers.length).toBe(min)
84 for (let i = 0; i < max * 10; i++) {
85 longRunningPool.execute({ test: 'test' })
86 }
87 expect(longRunningPool.workers.length).toBe(max)
85a3f8a7 88 await TestUtils.waitExits(longRunningPool, max - min)
4c35177b 89 // Here we expect the workers to be at the max size since that the task is still running
90 expect(longRunningPool.workers.length).toBe(min)
8bc77620
APA
91 // We need to clean up the resources after our test
92 await longRunningPool.destroy()
4c35177b 93 })
94
95 it('Verify scale processes up and down is working when long running task is used:soft', async () => {
96 const longRunningPool = new DynamicClusterPool(
97 min,
98 max,
85a3f8a7 99 './tests/worker-files/cluster/longRunningWorkerSoftBehavior.js'
c01733f1 100 )
101 expect(longRunningPool.workers.length).toBe(min)
102 for (let i = 0; i < max * 10; i++) {
103 longRunningPool.execute({ test: 'test' })
104 }
105 expect(longRunningPool.workers.length).toBe(max)
85a3f8a7 106 await TestUtils.sleep(1500)
c01733f1 107 // Here we expect the workers to be at the max size since that the task is still running
108 expect(longRunningPool.workers.length).toBe(max)
8bc77620
APA
109 // We need to clean up the resources after our test
110 await longRunningPool.destroy()
c01733f1 111 })
8d3782fa
JB
112
113 it('Verify that a pool with zero worker can be instantiated', async () => {
114 const pool = new DynamicClusterPool(
115 0,
116 max,
117 './tests/worker-files/cluster/testWorker.js'
118 )
119 expect(pool).toBeInstanceOf(DynamicClusterPool)
120 // We need to clean up the resources after our test
121 await pool.destroy()
122 })
506c2a14 123})