X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fcluster%2Ffixed.test.js;h=63399c6e4629ba4326080153cf5448ae3f2d7f40;hb=0e19141a4c860c96cde0eac21023cef79e6b22f5;hp=f5300eccf424c39028e340296b18d1d0492f45f4;hpb=6fdc721bfdc82852c19cf4d53e0918c9665a580f;p=poolifier.git diff --git a/tests/pools/cluster/fixed.test.js b/tests/pools/cluster/fixed.test.js index f5300ecc..63399c6e 100644 --- a/tests/pools/cluster/fixed.test.js +++ b/tests/pools/cluster/fixed.test.js @@ -1,5 +1,6 @@ const expect = require('expect') const { FixedClusterPool } = require('../../../lib/index') +const TestUtils = require('../../test-utils') const numberOfWorkers = 10 const maxTasks = 500 const pool = new FixedClusterPool( @@ -41,6 +42,15 @@ const asyncPool = new FixedClusterPool( ) describe('Fixed cluster pool test suite ', () => { + after('Destroy all pools', async () => { + // We need to clean up the resources after our test + await echoPool.destroy() + await asyncPool.destroy() + await errorPool.destroy() + await asyncErrorPool.destroy() + await emptyPool.destroy() + }) + it('Choose worker round robin test', async () => { const results = new Set() for (let i = 0; i < numberOfWorkers; i++) { @@ -115,27 +125,10 @@ describe('Fixed cluster pool test suite ', () => { }) it('Shutdown test', async () => { - let closedWorkers = 0 - pool.workers.forEach(w => { - w.on('exit', () => { - closedWorkers++ - }) - }) + const exitPromise = TestUtils.waitExits(pool, numberOfWorkers) await pool.destroy() - await new Promise(resolve => setTimeout(resolve, 500)) - expect(closedWorkers).toBe(numberOfWorkers) - }) - - it('Validations test', () => { - let error - try { - const pool1 = new FixedClusterPool() - console.log(pool1) - } catch (e) { - error = e - } - expect(error).toBeTruthy() - expect(error.message).toBeTruthy() + const res = await exitPromise + expect(res).toBe(numberOfWorkers) }) it('Should work even without opts in input', async () => { @@ -145,5 +138,7 @@ describe('Fixed cluster pool test suite ', () => { ) const res = await pool1.execute({ test: 'test' }) expect(res).toBeFalsy() + // We need to clean up the resources after our test + await pool1.destroy() }) })