X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fpools%2Fcluster%2Ffixed.test.js;h=1137b407ac92e051096d648616912357f0ceae72;hb=3be5ac00a9f736bda56c5ef053c4cd3b17f851f6;hp=51501df0350dde87d73be94cc4ddebb7be66cee2;hpb=ccd3ada6c3dd16a882523f9721d16f38e6a73cac;p=poolifier.git diff --git a/tests/pools/cluster/fixed.test.js b/tests/pools/cluster/fixed.test.js index 51501df0..1137b407 100644 --- a/tests/pools/cluster/fixed.test.js +++ b/tests/pools/cluster/fixed.test.js @@ -1,43 +1,55 @@ const expect = require('expect') const { FixedClusterPool } = require('../../../lib/index') +const TestUtils = require('../../test-utils') const numberOfWorkers = 10 const maxTasks = 500 const pool = new FixedClusterPool( numberOfWorkers, - './tests/worker/cluster/testWorker.js', + './tests/worker-files/cluster/testWorker.js', { errorHandler: e => console.error(e) } ) const emptyPool = new FixedClusterPool( 1, - './tests/worker/cluster/emptyWorker.js' + './tests/worker-files/cluster/emptyWorker.js' +) +const echoPool = new FixedClusterPool( + 1, + './tests/worker-files/cluster/echoWorker.js' ) -const echoPool = new FixedClusterPool(1, './tests/worker/cluster/echoWorker.js') const errorPool = new FixedClusterPool( 1, - './tests/worker/cluster/errorWorker.js', + './tests/worker-files/cluster/errorWorker.js', { errorHandler: e => console.error(e) } ) - const asyncErrorPool = new FixedClusterPool( 1, - './tests/worker/cluster/asyncErrorWorker.js', + './tests/worker-files/cluster/asyncErrorWorker.js', { onlineHandler: () => console.log('worker is online') } ) const asyncPool = new FixedClusterPool( 1, - './tests/worker/cluster/asyncWorker.js', + './tests/worker-files/cluster/asyncWorker.js', { maxTasks: maxTasks } ) -describe('Fixed cluster pool test suite ', () => { +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++) { @@ -112,35 +124,20 @@ 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, 200)) - 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 () => { const pool1 = new FixedClusterPool( 1, - './tests/worker/cluster/testWorker.js' + './tests/worker-files/cluster/testWorker.js' ) const res = await pool1.execute({ test: 'test' }) expect(res).toBeFalsy() + // We need to clean up the resources after our test + await pool1.destroy() }) })