X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fcluster%2Ffixed.test.js;h=2ef709c1d0fc71fa3d6da9af508d8afa3859d5cf;hb=a38092895499e2e6e9f8c45bd12bdef3849897ff;hp=c69b72d8370666f0b1f907e2c26e1e784e784c93;hpb=7c0ba92006a5c188738ffc5ff642c51f172df3d6;p=poolifier.git diff --git a/tests/pools/cluster/fixed.test.js b/tests/pools/cluster/fixed.test.js index c69b72d8..2ef709c1 100644 --- a/tests/pools/cluster/fixed.test.js +++ b/tests/pools/cluster/fixed.test.js @@ -1,4 +1,4 @@ -const expect = require('expect') +const { expect } = require('expect') const { FixedClusterPool } = require('../../../lib/index') const TestUtils = require('../../test-utils') const numberOfWorkers = 10 @@ -29,7 +29,7 @@ const asyncErrorPool = new FixedClusterPool( 1, './tests/worker-files/cluster/asyncErrorWorker.js', { - onlineHandler: () => console.log('worker is online') + errorHandler: e => console.error(e) } ) const asyncPool = new FixedClusterPool( @@ -74,7 +74,9 @@ describe('Fixed cluster pool test suite', () => { for (let i = 0; i < numberOfWorkers * 2; i++) { promises.push(pool.execute({ test: 'test' })) } - expect(poolBusy).toEqual(numberOfWorkers) + // The `busy` event is triggered when the number of submitted tasks at once reach the number of fixed pool workers. + // So in total numberOfWorkers + 1 times for a loop submitting up to numberOfWorkers * 2 tasks to the fixed pool. + expect(poolBusy).toBe(numberOfWorkers + 1) }) it('Verify that is possible to have a worker that return undefined', async () => { @@ -98,7 +100,7 @@ describe('Fixed cluster pool test suite', () => { inError = e } expect(inError).toBeDefined() - expect(typeof inError === 'string').toEqual(true) + expect(typeof inError === 'string').toBe(true) expect(inError).toBe('Error Message from ClusterWorker') }) @@ -111,7 +113,7 @@ describe('Fixed cluster pool test suite', () => { inError = e } expect(inError).toBeDefined() - expect(typeof inError === 'string').toEqual(true) + expect(typeof inError === 'string').toBe(true) expect(inError).toBe('Error Message from ClusterWorker:async') }) @@ -128,8 +130,8 @@ describe('Fixed cluster pool test suite', () => { it('Shutdown test', async () => { const exitPromise = TestUtils.waitExits(pool, numberOfWorkers) await pool.destroy() - const res = await exitPromise - expect(res).toBe(numberOfWorkers) + const numberOfExitEvents = await exitPromise + expect(numberOfExitEvents).toBe(numberOfWorkers) }) it('Should work even without opts in input', async () => {