X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fabstract%2Fabstract-pool.test.js;h=a2170491243313c13c65c36f8222eb5324e19eb9;hb=e843b9042b77e0e4e17c193820a3e05ffc92cffe;hp=bc2385f416c6c23b38d88fcccc6110cd70deaa5b;hpb=c510fea7f620c9b406f1b3f655729ad83ed32c2b;p=poolifier.git diff --git a/tests/pools/abstract/abstract-pool.test.js b/tests/pools/abstract/abstract-pool.test.js index bc2385f4..a2170491 100644 --- a/tests/pools/abstract/abstract-pool.test.js +++ b/tests/pools/abstract/abstract-pool.test.js @@ -1,7 +1,13 @@ const expect = require('expect') -const { FixedThreadPool } = require('../../../lib/index') +const { + FixedClusterPool, + FixedThreadPool, + WorkerChoiceStrategies +} = require('../../../lib/index') const expectedError = new Error('Worker could not be found in tasks map') +const numberOfWorkers = 1 + class StubPoolWithTasksMapClear extends FixedThreadPool { removeAllWorker () { this.tasks.clear() @@ -14,51 +20,124 @@ class StubPoolWithIsMainMethod extends FixedThreadPool { } } -describe('Abstract pool test suite ', () => { +describe('Abstract pool test suite', () => { it('Simulate worker not found during increaseWorkersTask', () => { const pool = new StubPoolWithTasksMapClear( - 1, - './tests/worker-files/cluster/testWorker.js', - { - errorHandler: e => console.error(e) - } + numberOfWorkers, + './tests/worker-files/thread/testWorker.js' ) - // simulate worker not found. + // Simulate worker not found. pool.removeAllWorker() expect(() => pool.increaseWorkersTask()).toThrowError(expectedError) + pool.destroy() }) it('Simulate worker not found during decreaseWorkersTasks', () => { const pool = new StubPoolWithTasksMapClear( - 1, - './tests/worker-files/cluster/testWorker.js', + numberOfWorkers, + './tests/worker-files/thread/testWorker.js', { errorHandler: e => console.error(e) } ) - // simulate worker not found. + // Simulate worker not found. pool.removeAllWorker() expect(() => pool.decreaseWorkersTasks()).toThrowError(expectedError) + pool.destroy() }) it('Simulate pool creation from a non main thread/process', () => { - expect(() => { - const pool = new StubPoolWithIsMainMethod( - 1, - './tests/worker-files/cluster/testWorker.js', - { - errorHandler: e => console.error(e) - } - ) - }).toThrowError() + expect( + () => + new StubPoolWithIsMainMethod( + numberOfWorkers, + './tests/worker-files/thread/testWorker.js', + { + errorHandler: e => console.error(e) + } + ) + ).toThrowError(new Error('Cannot start a pool from a worker!')) }) it('Verify that filePath is checked', () => { - expect(() => { - const pool = new StubPoolWithIsMainMethod(1).toThrowError() - }) - expect(() => { - const pool = new StubPoolWithIsMainMethod(1, '').toThrowError() - }) + const expectedError = new Error( + 'Please specify a file with a worker implementation' + ) + expect(() => new FixedThreadPool(numberOfWorkers)).toThrowError( + expectedError + ) + expect(() => new FixedThreadPool(numberOfWorkers, '')).toThrowError( + expectedError + ) + }) + + it('Verify that numberOfWorkers is checked', () => { + expect(() => new FixedThreadPool()).toThrowError( + new Error( + 'Cannot instantiate a pool without specifying the number of workers' + ) + ) + }) + + it('Verify that a negative number of workers is checked', () => { + expect( + () => + new FixedClusterPool(-1, './tests/worker-files/cluster/testWorker.js') + ).toThrowError( + new Error('Cannot instantiate a pool with a negative number of workers') + ) + }) + + it('Verify that a non integer number of workers is checked', () => { + expect( + () => + new FixedThreadPool(0.25, './tests/worker-files/thread/testWorker.js') + ).toThrowError( + new Error( + 'Cannot instantiate a pool with a non integer number of workers' + ) + ) + }) + + it('Verify that pool options are checked', () => { + let pool = new FixedThreadPool( + numberOfWorkers, + './tests/worker-files/thread/testWorker.js' + ) + expect(pool.opts.enableEvents).toEqual(true) + expect(pool.emitter).toBeDefined() + expect(pool.opts.workerChoiceStrategy).toBe( + WorkerChoiceStrategies.ROUND_ROBIN + ) + pool.destroy() + pool = new FixedThreadPool( + numberOfWorkers, + './tests/worker-files/thread/testWorker.js', + { + workerChoiceStrategy: WorkerChoiceStrategies.LESS_RECENTLY_USED, + enableEvents: false + } + ) + expect(pool.opts.enableEvents).toEqual(false) + expect(pool.emitter).toBeUndefined() + expect(pool.opts.workerChoiceStrategy).toBe( + WorkerChoiceStrategies.LESS_RECENTLY_USED + ) + pool.destroy() + }) + + it("Verify that pool event emitter 'busy' event can register a callback", () => { + const pool = new FixedThreadPool( + numberOfWorkers, + './tests/worker-files/thread/testWorker.js' + ) + const promises = [] + let poolBusy = 0 + pool.emitter.on('busy', () => poolBusy++) + for (let i = 0; i < numberOfWorkers * 2; i++) { + promises.push(pool.execute({ test: 'test' })) + } + expect(poolBusy).toEqual(numberOfWorkers) + pool.destroy() }) })