1 const { WorkerFunctions
} = require('./test-types')
4 static async
waitExits (pool
, numberOfExitEventsToWait
) {
5 return new Promise(resolve
=> {
7 for (const workerNode
of pool
.workerNodes
) {
8 workerNode
.worker
.on('exit', () => {
10 if (exitEvents
=== numberOfExitEventsToWait
) {
18 static async
sleep (ms
) {
19 return new Promise(resolve
=> setTimeout(resolve
, ms
))
22 static async
sleepWorkerFunction (
28 return new Promise((resolve
, reject
) => {
32 ? reject(new Error(rejectionMessage
))
39 static generateRandomInteger (max
= Number
.MAX_SAFE_INTEGER
, min
= 0) {
40 if (max
< min
|| max
< 0 || min
< 0) {
41 throw new RangeError('Invalid interval')
44 if (min
!= null && min
!== 0) {
46 return Math
.floor(Math
.random() * (max
- min
+ 1)) + min
48 return Math
.floor(Math
.random() * (max
+ 1))
51 static jsonIntegerSerialization (n
) {
52 for (let i
= 0; i
< n
; i
++) {
61 * Intentionally inefficient implementation.
62 * @param {number} n - The number of fibonacci numbers to generate.
63 * @returns {number} - The nth fibonacci number.
65 static fibonacci (n
) {
67 return TestUtils
.fibonacci(n
- 1) + TestUtils
.fibonacci(n
- 2)
71 * Intentionally inefficient implementation.
72 * @param {number} n - The number to calculate the factorial of.
73 * @returns {number} - The factorial of n.
75 static factorial (n
) {
79 return TestUtils
.factorial(n
- 1) * n
82 static executeWorkerFunction (data
) {
83 switch (data
.function) {
84 case WorkerFunctions
.jsonIntegerSerialization
:
85 return TestUtils
.jsonIntegerSerialization(data
.n
|| 100)
86 case WorkerFunctions
.fibonacci
:
87 return TestUtils
.fibonacci(data
.n
|| 25)
88 case WorkerFunctions
.factorial
:
89 return TestUtils
.factorial(data
.n
|| 100)
91 throw new Error('Unknown worker function')
96 module
.exports
= TestUtils