X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Futils.test.js;h=0f72aa429fc5caae1494231f2bafaf7a3676b51b;hb=6543999f1fde88840c2879116f5b203c95fa8c40;hp=21a6a7c4aac6d07d8e1ec215ff8df9703a30f1f2;hpb=4a45e8d2e79023615e5c5a3ea4b1c6a5e5cf963f;p=poolifier.git diff --git a/tests/utils.test.js b/tests/utils.test.js index 21a6a7c4..0f72aa42 100644 --- a/tests/utils.test.js +++ b/tests/utils.test.js @@ -1,13 +1,78 @@ +const { randomInt } = require('crypto') const { expect } = require('expect') -const { isPlainObject, median } = require('../lib/utils') +const { + CircularArray, + DEFAULT_CIRCULAR_ARRAY_SIZE +} = require('../lib/circular-array') +const { + availableParallelism, + average, + exponentialDelay, + isAsyncFunction, + isKillBehavior, + isPlainObject, + median, + round, + secureRandom, + sleep, + updateMeasurementStatistics +} = require('../lib/utils') +const { KillBehaviors } = require('../lib/worker/worker-options') describe('Utils test suite', () => { - it('Verify median computation', () => { + it('Verify availableParallelism() behavior', () => { + expect(typeof availableParallelism() === 'number').toBe(true) + expect(availableParallelism()).toBeGreaterThan(0) + expect(Number.isSafeInteger(availableParallelism())).toBe(true) + }) + + it.skip('Verify sleep() behavior', async () => { + const start = performance.now() + await sleep(1000) + const elapsed = performance.now() - start + expect(elapsed).toBeGreaterThanOrEqual(1000) + }) + + it('Verify exponentialDelay() behavior', () => { + expect(typeof exponentialDelay(randomInt(1000)) === 'number').toBe(true) + expect(exponentialDelay(randomInt(1000))).toBeGreaterThanOrEqual( + Number.MIN_VALUE + ) + expect(exponentialDelay(randomInt(1000))).toBeLessThanOrEqual( + Number.MAX_VALUE + ) + }) + + it('Verify average() computation', () => { + expect(average([])).toBe(0) + expect(average([0.08])).toBe(0.08) + expect(average([0.25, 4.75, 3.05, 6.04, 1.01, 2.02, 5.03])).toBe( + 3.1642857142857146 + ) + expect(average([0.25, 4.75, 3.05, 6.04, 1.01, 2.02])).toBe( + 2.8533333333333335 + ) + }) + + it('Verify median() computation', () => { expect(median([])).toBe(0) - const array0 = [0.08] - expect(median(array0)).toBe(0.08) - const array1 = [0.25, 4.75, 3.05, 6.04, 1.01, 2.02, 5.03] - expect(median(array1)).toBe(3.05) + expect(median([0.08])).toBe(0.08) + expect(median([0.25, 4.75, 3.05, 6.04, 1.01, 2.02, 5.03])).toBe(3.05) + expect(median([0.25, 4.75, 3.05, 6.04, 1.01, 2.02])).toBe(2.535) + }) + + it('Verify round() behavior', () => { + expect(round(0)).toBe(0) + expect(round(0.5, 0)).toBe(1) + expect(round(0.5)).toBe(0.5) + expect(round(-0.5, 0)).toBe(-1) + expect(round(-0.5)).toBe(-0.5) + expect(round(1.005)).toBe(1.01) + expect(round(2.175)).toBe(2.18) + expect(round(5.015)).toBe(5.02) + expect(round(-1.005)).toBe(-1.01) + expect(round(-2.175)).toBe(-2.18) + expect(round(-5.015)).toBe(-5.02) }) it('Verify isPlainObject() behavior', () => { @@ -46,4 +111,117 @@ describe('Utils test suite', () => { expect(isPlainObject({})).toBe(true) expect(isPlainObject({ a: 1 })).toBe(true) }) + + it('Verify isKillBehavior() behavior', () => { + expect(isKillBehavior(KillBehaviors.SOFT, KillBehaviors.SOFT)).toBe(true) + expect(isKillBehavior(KillBehaviors.SOFT, KillBehaviors.HARD)).toBe(false) + expect(isKillBehavior(KillBehaviors.HARD, KillBehaviors.HARD)).toBe(true) + expect(isKillBehavior(KillBehaviors.HARD, KillBehaviors.SOFT)).toBe(false) + expect(isKillBehavior(KillBehaviors.SOFT)).toBe(false) + expect(isKillBehavior(KillBehaviors.HARD)).toBe(false) + expect(isKillBehavior(KillBehaviors.HARD, null)).toBe(false) + expect(isKillBehavior(KillBehaviors.HARD, undefined)).toBe(false) + expect(isKillBehavior(KillBehaviors.SOFT, 'unknown')).toBe(false) + }) + + it('Verify isAsyncFunction() behavior', () => { + expect(isAsyncFunction(null)).toBe(false) + expect(isAsyncFunction(undefined)).toBe(false) + expect(isAsyncFunction(true)).toBe(false) + expect(isAsyncFunction(false)).toBe(false) + expect(isAsyncFunction(0)).toBe(false) + expect(isAsyncFunction('')).toBe(false) + expect(isAsyncFunction([])).toBe(false) + expect(isAsyncFunction(new Date())).toBe(false) + expect(isAsyncFunction(new RegExp())).toBe(false) + expect(isAsyncFunction(new Error())).toBe(false) + expect(isAsyncFunction(new Map())).toBe(false) + expect(isAsyncFunction(new Set())).toBe(false) + expect(isAsyncFunction(new WeakMap())).toBe(false) + expect(isAsyncFunction(new WeakSet())).toBe(false) + expect(isAsyncFunction(new Int8Array())).toBe(false) + expect(isAsyncFunction(new Uint8Array())).toBe(false) + expect(isAsyncFunction(new Uint8ClampedArray())).toBe(false) + expect(isAsyncFunction(new Int16Array())).toBe(false) + expect(isAsyncFunction(new Uint16Array())).toBe(false) + expect(isAsyncFunction(new Int32Array())).toBe(false) + expect(isAsyncFunction(new Uint32Array())).toBe(false) + expect(isAsyncFunction(new Float32Array())).toBe(false) + expect(isAsyncFunction(new Float64Array())).toBe(false) + expect(isAsyncFunction(new BigInt64Array())).toBe(false) + expect(isAsyncFunction(new BigUint64Array())).toBe(false) + expect(isAsyncFunction(new Promise(() => {}))).toBe(false) + expect(isAsyncFunction(new WeakRef({}))).toBe(false) + expect(isAsyncFunction(new FinalizationRegistry(() => {}))).toBe(false) + expect(isAsyncFunction(new ArrayBuffer())).toBe(false) + expect(isAsyncFunction(new SharedArrayBuffer())).toBe(false) + expect(isAsyncFunction(new DataView(new ArrayBuffer()))).toBe(false) + expect(isAsyncFunction({})).toBe(false) + expect(isAsyncFunction({ a: 1 })).toBe(false) + expect(isAsyncFunction(() => {})).toBe(false) + expect(isAsyncFunction(function () {})).toBe(false) + expect(isAsyncFunction(function named () {})).toBe(false) + expect(isAsyncFunction(async () => {})).toBe(true) + expect(isAsyncFunction(async function () {})).toBe(true) + expect(isAsyncFunction(async function named () {})).toBe(true) + }) + + it('Verify updateMeasurementStatistics() behavior', () => { + const measurementStatistics = { + history: new CircularArray() + } + updateMeasurementStatistics( + measurementStatistics, + { aggregate: true, average: false, median: false }, + 0.01 + ) + expect(measurementStatistics).toStrictEqual({ + aggregate: 0.01, + maximum: 0.01, + minimum: 0.01, + history: new CircularArray() + }) + updateMeasurementStatistics( + measurementStatistics, + { aggregate: true, average: false, median: false }, + 0.02 + ) + expect(measurementStatistics).toStrictEqual({ + aggregate: 0.03, + maximum: 0.02, + minimum: 0.01, + history: new CircularArray() + }) + updateMeasurementStatistics( + measurementStatistics, + { aggregate: true, average: true, median: false }, + 0.001 + ) + expect(measurementStatistics).toStrictEqual({ + aggregate: 0.031, + maximum: 0.02, + minimum: 0.001, + average: 0.001, + history: new CircularArray(DEFAULT_CIRCULAR_ARRAY_SIZE, 0.001) + }) + updateMeasurementStatistics( + measurementStatistics, + { aggregate: true, average: true, median: false }, + 0.003 + ) + expect(measurementStatistics).toStrictEqual({ + aggregate: 0.034, + maximum: 0.02, + minimum: 0.001, + average: 0.002, + history: new CircularArray(DEFAULT_CIRCULAR_ARRAY_SIZE, 0.001, 0.003) + }) + }) + + it('Verify secureRandom() behavior', () => { + const randomNumber = secureRandom() + expect(typeof randomNumber === 'number').toBe(true) + expect(randomNumber).toBeGreaterThanOrEqual(0) + expect(randomNumber).toBeLessThan(1) + }) })