X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fcluster%2Ffixed.test.js;h=63399c6e4629ba4326080153cf5448ae3f2d7f40;hb=0e19141a4c860c96cde0eac21023cef79e6b22f5;hp=7e319ac686ea3fc63e36e40682e1c4ade38ab7db;hpb=325f50bc1777ea44abc9736ce9d780ec0c8f90e2;p=poolifier.git diff --git a/tests/pools/cluster/fixed.test.js b/tests/pools/cluster/fixed.test.js index 7e319ac6..63399c6e 100644 --- a/tests/pools/cluster/fixed.test.js +++ b/tests/pools/cluster/fixed.test.js @@ -1,48 +1,62 @@ const expect = require('expect') const { FixedClusterPool } = require('../../../lib/index') -const numWorkers = 10 +const TestUtils = require('../../test-utils') +const numberOfWorkers = 10 +const maxTasks = 500 const pool = new FixedClusterPool( - numWorkers, - './tests/worker/cluster/testWorker.js', + numberOfWorkers, + './tests/worker-files/cluster/testWorker.js', { - errorHandler: e => console.error(e), - onlineHandler: () => console.log('worker is online') + 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), - onlineHandler: () => console.log('worker is online') + errorHandler: e => console.error(e) } ) const asyncErrorPool = new FixedClusterPool( 1, - './tests/worker/cluster/asyncErrorWorker.js', + './tests/worker-files/cluster/asyncErrorWorker.js', { - errorHandler: e => console.error(e), 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 ', () => { + 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 < numWorkers; i++) { + for (let i = 0; i < numberOfWorkers; i++) { results.add(pool.chooseWorker().id) } - expect(results.size).toBe(numWorkers) + expect(results.size).toBe(numberOfWorkers) }) it('Verify that the function is executed in a worker cluster', async () => { @@ -105,36 +119,26 @@ describe('Fixed cluster pool test suite ', () => { expect(usedTime).toBeGreaterThanOrEqual(2000) }) - it('Shutdown test', async () => { - let closedWorkers = 0 - pool.workers.forEach(w => { - w.on('exit', () => { - closedWorkers++ - }) - }) - pool.destroy() - await new Promise(resolve => setTimeout(resolve, 200)) - expect(closedWorkers).toBe(numWorkers) + it('Verify that maxTasks is set properly', async () => { + const worker = asyncPool.chooseWorker() + expect(worker.getMaxListeners()).toBe(maxTasks) }) - it('Validations test', () => { - let error - try { - const pool1 = new FixedClusterPool() - console.log(pool1) - } catch (e) { - error = e - } - expect(error).toBeTruthy() - expect(error.message).toBeTruthy() + it('Shutdown test', async () => { + const exitPromise = TestUtils.waitExits(pool, numberOfWorkers) + await pool.destroy() + 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() }) })