X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fworker%2Fabstract-worker.test.js;h=e9da7a874de95d1739be54216ed1a540a3aff9d3;hb=440dd7d77da6e027b3b9543504addcf805f76c1d;hp=e5bf4c81005f94a33cee53bc2f04a10b48549847;hpb=e102732c0e3966b81834b2c0bdd087eb051162ad;p=poolifier.git diff --git a/tests/worker/abstract-worker.test.js b/tests/worker/abstract-worker.test.js index e5bf4c81..e9da7a87 100644 --- a/tests/worker/abstract-worker.test.js +++ b/tests/worker/abstract-worker.test.js @@ -82,6 +82,16 @@ describe('Abstract worker test suite', () => { ) }) + it('Verify that taskFunctions parameter with unique function is taken', () => { + const worker = new ThreadWorker(() => {}) + expect(worker.taskFunctions.get('default')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn1')).toBeInstanceOf(Function) + expect(worker.taskFunctions.size).toBe(2) + expect(worker.taskFunctions.get('default')).toStrictEqual( + worker.taskFunctions.get('fn1') + ) + }) + it('Verify that taskFunctions parameter with multiple task functions contains function', () => { const fn1 = () => { return 1 @@ -100,15 +110,22 @@ describe('Abstract worker test suite', () => { return 2 } const worker = new ClusterWorker({ fn1, fn2 }) - expect(typeof worker.taskFunctions.get('default') === 'function').toBe(true) - expect(typeof worker.taskFunctions.get('fn1') === 'function').toBe(true) - expect(typeof worker.taskFunctions.get('fn2') === 'function').toBe(true) + expect(worker.taskFunctions.get('default')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn1')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn2')).toBeInstanceOf(Function) + expect(worker.taskFunctions.size).toBe(3) + expect(worker.taskFunctions.get('default')).toStrictEqual( + worker.taskFunctions.get('fn1') + ) }) - it('Verify that handleError() method is working properly', () => { - const error = new Error('My error') - const worker = new ThreadWorker(() => {}) - expect(worker.handleError(error)).toStrictEqual(error) + it('Verify that handleError() method works properly', () => { + const error = new Error('Error as an error') + const worker = new ClusterWorker(() => {}) + expect(worker.handleError(error)).not.toBeInstanceOf(Error) + expect(worker.handleError(error)).toStrictEqual(error.message) + const errorMessage = 'Error as a string' + expect(worker.handleError(errorMessage)).toStrictEqual(errorMessage) }) it('Verify that getMainWorker() throw error if main worker is not set', () => { @@ -116,4 +133,129 @@ describe('Abstract worker test suite', () => { new StubWorkerWithMainWorker(() => {}).getMainWorker() ).toThrowError('Main worker not set') }) + + it('Verify that hasTaskFunction() works', () => { + const fn1 = () => { + return 1 + } + const fn2 = () => { + return 2 + } + const worker = new ClusterWorker({ fn1, fn2 }) + expect(worker.hasTaskFunction('default')).toBe(true) + expect(worker.hasTaskFunction('fn1')).toBe(true) + expect(worker.hasTaskFunction('fn2')).toBe(true) + expect(worker.hasTaskFunction('fn3')).toBe(false) + }) + + it('Verify that addTaskFunction() works', () => { + const fn1 = () => { + return 1 + } + const fn2 = () => { + return 2 + } + const fn1Replacement = () => { + return 3 + } + const worker = new ThreadWorker(fn1) + expect(worker.taskFunctions.get('default')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn1')).toBeInstanceOf(Function) + expect(worker.taskFunctions.size).toBe(2) + expect(worker.taskFunctions.get('default')).toStrictEqual( + worker.taskFunctions.get('fn1') + ) + expect(() => worker.addTaskFunction('default', fn2)).toThrowError( + new Error('Cannot add a task function with the default reserved name') + ) + worker.addTaskFunction('fn2', fn2) + expect(worker.taskFunctions.get('default')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn1')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn2')).toBeInstanceOf(Function) + expect(worker.taskFunctions.size).toBe(3) + expect(worker.taskFunctions.get('default')).toStrictEqual( + worker.taskFunctions.get('fn1') + ) + worker.addTaskFunction('fn1', fn1Replacement) + expect(worker.taskFunctions.get('default')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn1')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn2')).toBeInstanceOf(Function) + expect(worker.taskFunctions.size).toBe(3) + expect(worker.taskFunctions.get('default')).toStrictEqual( + worker.taskFunctions.get('fn1') + ) + }) + + it('Verify that removeTaskFunction() works', () => { + const fn1 = () => { + return 1 + } + const fn2 = () => { + return 2 + } + const worker = new ClusterWorker({ fn1, fn2 }) + expect(worker.taskFunctions.get('default')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn1')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn2')).toBeInstanceOf(Function) + expect(worker.taskFunctions.size).toBe(3) + expect(worker.taskFunctions.get('default')).toStrictEqual( + worker.taskFunctions.get('fn1') + ) + expect(() => worker.removeTaskFunction('default')).toThrowError( + new Error( + 'Cannot remove the task function with the default reserved name' + ) + ) + expect(() => worker.removeTaskFunction('fn1')).toThrowError( + new Error( + 'Cannot remove the task function used as the default task function' + ) + ) + worker.removeTaskFunction('fn2') + expect(worker.taskFunctions.get('default')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn1')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn2')).toBeUndefined() + expect(worker.taskFunctions.size).toBe(2) + }) + + it('Verify that listTaskFunctions() works', () => { + const fn1 = () => { + return 1 + } + const fn2 = () => { + return 2 + } + const worker = new ClusterWorker({ fn1, fn2 }) + expect(worker.listTaskFunctions()).toStrictEqual(['default', 'fn1', 'fn2']) + }) + + it('Verify that setDefaultTaskFunction() works', () => { + const fn1 = () => { + return 1 + } + const fn2 = () => { + return 2 + } + const worker = new ThreadWorker({ fn1, fn2 }) + expect(worker.taskFunctions.get('default')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn1')).toBeInstanceOf(Function) + expect(worker.taskFunctions.get('fn2')).toBeInstanceOf(Function) + expect(worker.taskFunctions.size).toBe(3) + expect(worker.taskFunctions.get('default')).toStrictEqual( + worker.taskFunctions.get('fn1') + ) + expect(() => worker.setDefaultTaskFunction('default')).toThrowError( + new Error( + 'Cannot set the default task function reserved name as the default task function' + ) + ) + worker.setDefaultTaskFunction('fn1') + expect(worker.taskFunctions.get('default')).toStrictEqual( + worker.taskFunctions.get('fn1') + ) + worker.setDefaultTaskFunction('fn2') + expect(worker.taskFunctions.get('default')).toStrictEqual( + worker.taskFunctions.get('fn2') + ) + }) })