9a27479bb58e33140429157adbd62b48c5a8d30c
[poolifier.git] / tests / pools / selection-strategies / weighted-round-robin-worker-choice-strategy.test.js
1 const { expect } = require('expect')
2 const sinon = require('sinon')
3 const { FixedThreadPool } = require('../../../lib')
4 const {
5 WeightedRoundRobinWorkerChoiceStrategy
6 } = require('../../../lib/pools/selection-strategies/weighted-round-robin-worker-choice-strategy')
7 const { generateRandomInteger } = require('../../test-utils')
8
9 describe('Weighted round robin strategy worker choice strategy test suite', () => {
10 // const min = 1
11 const max = 3
12 let pool
13
14 before(() => {
15 pool = new FixedThreadPool(max, './tests/worker-files/thread/testWorker.js')
16 })
17
18 afterEach(() => {
19 sinon.restore()
20 })
21
22 after(async () => {
23 await pool.destroy()
24 })
25
26 it('Verify that reset() resets internals', () => {
27 const strategy = new WeightedRoundRobinWorkerChoiceStrategy(pool)
28 strategy.currentWorkerId = generateRandomInteger(Number.MAX_SAFE_INTEGER, 1)
29 strategy.workerVirtualTaskRunTime = generateRandomInteger(
30 Number.MAX_SAFE_INTEGER,
31 1
32 )
33 expect(strategy.reset()).toBe(true)
34 expect(strategy.nextWorkerNodeKey).toBe(0)
35 expect(strategy.previousWorkerNodeKey).toBe(0)
36 expect(strategy.workerVirtualTaskRunTime).toBe(0)
37 })
38 })