Improve jsdoc comments (#175)
[poolifier.git] / tests / pools / thread / dynamic.test.js
CommitLineData
506c2a14 1const expect = require('expect')
325f50bc 2const { DynamicThreadPool } = require('../../../lib/index')
506c2a14 3const min = 1
c719859c 4const max = 3
325f50bc
S
5const pool = new DynamicThreadPool(
6 min,
7 max,
76b1e974 8 './tests/worker-files/thread/testWorker.js',
325f50bc 9 {
e5177d86 10 errorHandler: e => console.error(e)
325f50bc
S
11 }
12)
506c2a14 13
14describe('Dynamic thread pool test suite ', () => {
15 it('Verify that the function is executed in a worker thread', async () => {
16 const result = await pool.execute({ test: 'test' })
17 expect(result).toBeDefined()
18 expect(result).toBeFalsy()
19 })
20
21 it('Verify that new workers are created when required, max size is not exceeded and that after a while new workers will die', async () => {
22 const promises = []
23 let closedThreads = 0
b755d5be 24 let fullPool = 0
25 pool.emitter.on('FullPool', () => fullPool++)
cf9aa6c3 26 for (let i = 0; i < max * 2; i++) {
506c2a14 27 promises.push(pool.execute({ test: 'test' }))
28 }
29 expect(pool.workers.length).toBe(max)
30 pool.workers.forEach(w => {
31 w.on('exit', () => {
32 closedThreads++
33 })
34 })
b755d5be 35 expect(fullPool > 1).toBeTruthy()
c719859c 36 await new Promise(resolve => setTimeout(resolve, 2000))
506c2a14 37 expect(closedThreads).toBe(max - min)
38 })
39
bcf04003 40 it('Verify scale thread up and down is working', async () => {
41 expect(pool.workers.length).toBe(min)
42 for (let i = 0; i < max * 10; i++) {
43 pool.execute({ test: 'test' })
44 }
45 expect(pool.workers.length).toBe(max)
46 await new Promise(resolve => setTimeout(resolve, 1000))
47 expect(pool.workers.length).toBe(min)
48 for (let i = 0; i < max * 10; i++) {
49 pool.execute({ test: 'test' })
50 }
51 expect(pool.workers.length).toBe(max)
5efc2a90 52 await new Promise(resolve => setTimeout(resolve, 1500))
bcf04003 53 expect(pool.workers.length).toBe(min)
54 })
c01733f1 55
506c2a14 56 it('Shutdown test', async () => {
57 let closedThreads = 0
58 pool.workers.forEach(w => {
59 w.on('exit', () => {
60 closedThreads++
61 })
62 })
1f9a5a44 63 await pool.destroy()
506c2a14 64 expect(closedThreads).toBe(min)
65 })
66
67 it('Validations test', () => {
68 let error
69 try {
70 const pool1 = new DynamicThreadPool()
71 console.log(pool1)
72 } catch (e) {
73 error = e
74 }
75 expect(error).toBeTruthy()
76 expect(error.message).toBeTruthy()
77 })
78
79 it('Should work even without opts in input', async () => {
325f50bc
S
80 const pool1 = new DynamicThreadPool(
81 1,
82 1,
76b1e974 83 './tests/worker-files/thread/testWorker.js'
325f50bc 84 )
506c2a14 85 const res = await pool1.execute({ test: 'test' })
86 expect(res).toBeFalsy()
87 })
c01733f1 88
4c35177b 89 it('Verify scale thread up and down is working when long running task is used:hard', async () => {
c01733f1 90 const longRunningPool = new DynamicThreadPool(
91 min,
92 max,
4c35177b 93 './tests/worker/thread/longRunningWorkerHardBehavior.js',
94 {
95 errorHandler: e => console.error(e),
96 onlineHandler: () => console.log('worker is online')
97 }
98 )
99 expect(longRunningPool.workers.length).toBe(min)
100 for (let i = 0; i < max * 10; i++) {
101 longRunningPool.execute({ test: 'test' })
102 }
103 expect(longRunningPool.workers.length).toBe(max)
5efc2a90 104 await new Promise(resolve => setTimeout(resolve, 1500))
4c35177b 105 expect(longRunningPool.workers.length).toBe(min)
106 })
107
108 it('Verify scale thread up and down is working when long running task is used:soft', async () => {
109 const longRunningPool = new DynamicThreadPool(
110 min,
111 max,
112 './tests/worker/thread/longRunningWorkerSoftBehavior.js',
c01733f1 113 {
114 errorHandler: e => console.error(e),
115 onlineHandler: () => console.log('worker is online')
116 }
117 )
118 expect(longRunningPool.workers.length).toBe(min)
119 for (let i = 0; i < max * 10; i++) {
120 longRunningPool.execute({ test: 'test' })
121 }
122 expect(longRunningPool.workers.length).toBe(max)
5efc2a90 123 await new Promise(resolve => setTimeout(resolve, 1500))
c01733f1 124 // Here we expect the workers to be at the max size since that the task is still running
125 expect(longRunningPool.workers.length).toBe(max)
126 })
506c2a14 127})