1 const expect
= require('expect')
2 const DynamicThreadPool
= require('../lib/dynamic')
5 const pool
= new DynamicThreadPool(min
, max
,
6 './tests/testWorker.js',
7 { errorHandler
: (e
) => console
.error(e
), onlineHandler
: () => console
.log('worker is online') })
9 describe('Dynamic thread pool test suite ', () => {
10 it('Verify that the function is executed in a worker thread', async () => {
11 const result
= await pool
.execute({ test
: 'test' })
12 expect(result
).toBeDefined()
13 expect(result
).toBeFalsy()
16 it('Verify that new workers are created when required, max size is not exceeded and that after a while new workers will die', async () => {
20 pool
.emitter
.on('FullPool', () => fullPool
++)
21 for (let i
= 0; i
< (max
* 2); i
++) {
22 promises
.push(pool
.execute({ test
: 'test' }))
24 expect(pool
.workers
.length
).toBe(max
)
25 pool
.workers
.forEach(w
=> {
30 expect(fullPool
> 1).toBeTruthy()
31 await
new Promise(resolve
=> setTimeout(resolve
, 2000))
32 expect(closedThreads
).toBe(max
- min
)
35 it('Shutdown test', async () => {
37 pool
.workers
.forEach(w
=> {
43 await
new Promise(resolve
=> setTimeout(resolve
, 2000))
44 expect(closedThreads
).toBe(min
)
47 it('Validations test', () => {
50 const pool1
= new DynamicThreadPool()
55 expect(error
).toBeTruthy()
56 expect(error
.message
).toBeTruthy()
59 it('Should work even without opts in input', async () => {
60 const pool1
= new DynamicThreadPool(1, 1, './tests/testWorker.js')
61 const res
= await pool1
.execute({ test
: 'test' })
62 expect(res
).toBeFalsy()