const { expect } = require('expect')
-const sinon = require('sinon')
+// const sinon = require('sinon')
const {
SelectionStrategiesUtils
} = require('../../../lib/pools/selection-strategies/selection-strategies-utils')
const {
FairShareWorkerChoiceStrategy
} = require('../../../lib/pools/selection-strategies/fair-share-worker-choice-strategy')
-// const {
-// WeightedRoundRobinWorkerChoiceStrategy
-// } = require('../../../lib/pools/selection-strategies/weighted-round-robin-choice-strategy')
+const {
+ WeightedRoundRobinWorkerChoiceStrategy
+} = require('../../../lib/pools/selection-strategies/weighted-round-robin-choice-strategy')
describe('Selection strategies utils test suite', () => {
+ const max = 3
let pool
- beforeEach(() => {
- pool = sinon.createStubInstance(FixedThreadPool)
+
+ before(() => {
+ pool = new FixedThreadPool(max, './tests/worker-files/thread/testWorker.js')
})
- afterEach(() => {
- sinon.restore()
+ // afterEach(() => {
+ // sinon.restore()
+ // })
+
+ after(() => {
+ pool.destroy()
})
it('Verify that getWorkerChoiceStrategy() default return ROUND_ROBIN strategy', () => {
expect(strategy).toBeInstanceOf(FairShareWorkerChoiceStrategy)
})
- // it('Verify that getWorkerChoiceStrategy() can return WEIGHTED_ROUND_ROBIN strategy', () => {
- // const strategy = SelectionStrategiesUtils.getWorkerChoiceStrategy(
- // pool,
- // WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN
- // )
- // expect(strategy).toBeInstanceOf(WeightedRoundRobinWorkerChoiceStrategy)
- // })
+ it('Verify that getWorkerChoiceStrategy() can return WEIGHTED_ROUND_ROBIN strategy', () => {
+ const strategy = SelectionStrategiesUtils.getWorkerChoiceStrategy(
+ pool,
+ WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN
+ )
+ expect(strategy).toBeInstanceOf(WeightedRoundRobinWorkerChoiceStrategy)
+ })
it('Verify that getWorkerChoiceStrategy() throw error on unknown strategy', () => {
expect(() => {
const {
FairShareWorkerChoiceStrategy
} = require('../../../lib/pools/selection-strategies/fair-share-worker-choice-strategy')
-// const {
-// WeightedRoundRobinWorkerChoiceStrategy
-// } = require('../../../lib/pools/selection-strategies/weighted-round-robin-choice-strategy')
+const {
+ WeightedRoundRobinWorkerChoiceStrategy
+} = require('../../../lib/pools/selection-strategies/weighted-round-robin-choice-strategy')
const {
DynamicPoolWorkerChoiceStrategy
} = require('../../../lib/pools/selection-strategies/dynamic-pool-worker-choice-strategy')
describe('Worker choice strategy context test suite', () => {
+ const min = 1
+ const max = 3
let fixedPool, dynamicPool
- beforeEach(() => {
- fixedPool = sinon.createStubInstance(FixedThreadPool)
- dynamicPool = sinon.createStubInstance(DynamicThreadPool)
+
+ before(() => {
+ fixedPool = new FixedThreadPool(
+ max,
+ './tests/worker-files/thread/testWorker.js'
+ )
+ dynamicPool = new DynamicThreadPool(
+ min,
+ max,
+ './tests/worker-files/thread/testWorker.js'
+ )
})
afterEach(() => {
sinon.restore()
})
+ after(() => {
+ fixedPool.destroy()
+ dynamicPool.destroy()
+ })
+
it('Verify that execute() return the worker chosen by the strategy with fixed pool', () => {
const workerChoiceStrategyContext = new WorkerChoiceStrategyContext(
fixedPool
)
})
- // it('Verify that setWorkerChoiceStrategy() works with WEIGHTED_ROUND_ROBIN and fixed pool', () => {
- // const workerChoiceStrategyContext = new WorkerChoiceStrategyContext(
- // fixedPool
- // )
- // workerChoiceStrategyContext.setWorkerChoiceStrategy(
- // WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN
- // )
- // expect(workerChoiceStrategyContext.workerChoiceStrategy).toBeInstanceOf(
- // WeightedRoundRobinWorkerChoiceStrategy
- // )
- // })
+ it('Verify that setWorkerChoiceStrategy() works with WEIGHTED_ROUND_ROBIN and fixed pool', () => {
+ const workerChoiceStrategyContext = new WorkerChoiceStrategyContext(
+ fixedPool
+ )
+ workerChoiceStrategyContext.setWorkerChoiceStrategy(
+ WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN
+ )
+ expect(workerChoiceStrategyContext.workerChoiceStrategy).toBeInstanceOf(
+ WeightedRoundRobinWorkerChoiceStrategy
+ )
+ })
- // it('Verify that setWorkerChoiceStrategy() works with WEIGHTED_ROUND_ROBIN and dynamic pool', () => {
- // const workerChoiceStrategyContext = new WorkerChoiceStrategyContext(
- // dynamicPool
- // )
- // workerChoiceStrategyContext.setWorkerChoiceStrategy(
- // WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN
- // )
- // expect(workerChoiceStrategyContext.workerChoiceStrategy).toBeInstanceOf(
- // DynamicPoolWorkerChoiceStrategy
- // )
- // })
+ it('Verify that setWorkerChoiceStrategy() works with WEIGHTED_ROUND_ROBIN and dynamic pool', () => {
+ const workerChoiceStrategyContext = new WorkerChoiceStrategyContext(
+ dynamicPool
+ )
+ workerChoiceStrategyContext.setWorkerChoiceStrategy(
+ WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN
+ )
+ expect(workerChoiceStrategyContext.workerChoiceStrategy).toBeInstanceOf(
+ DynamicPoolWorkerChoiceStrategy
+ )
+ })
})