refactor: switch Date.now() -> performance.now() where appropriate
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 8 Apr 2023 13:28:03 +0000 (15:28 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 8 Apr 2023 13:28:03 +0000 (15:28 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
examples/dynamicExample.js
examples/fixedExample.js
tests/pools/cluster/fixed.test.js
tests/pools/thread/fixed.test.js

index e1d9b5035c1e1f45e1be29cc2f9b20c184f4c2f1..1b7391d759b01c7d6a41dbc0a953bfc33e5f2c8b 100644 (file)
@@ -9,7 +9,7 @@ const pool = new DynamicThreadPool(10, 20, './yourWorker.js', {
 pool.emitter.on(PoolEvents.full, () => poolFull++)
 pool.emitter.on(PoolEvents.busy, () => poolBusy++)
 
-const start = Date.now()
+const start = performance.now()
 const iterations = 1000
 for (let i = 1; i <= iterations; i++) {
   pool
@@ -17,7 +17,7 @@ for (let i = 1; i <= iterations; i++) {
     .then(() => {
       resolved++
       if (resolved === iterations) {
-        console.log('Time taken is ' + (Date.now() - start))
+        console.log('Time taken is ' + (performance.now() - start))
         console.log('The pool was full for ' + poolFull + ' times')
         return console.log('The pool was busy for ' + poolBusy + ' times')
       }
index d10c206281fe03af8b6c1e4e08399e50ff5a59b4..3f103ca5523f85441fc864172f24f7f142cca477 100644 (file)
@@ -7,7 +7,7 @@ const pool = new FixedThreadPool(15, './yourWorker.js', {
 })
 pool.emitter.on(PoolEvents.busy, () => poolBusy++)
 
-const start = Date.now()
+const start = performance.now()
 const iterations = 1000
 for (let i = 1; i <= iterations; i++) {
   pool
@@ -15,7 +15,7 @@ for (let i = 1; i <= iterations; i++) {
     .then(() => {
       resolved++
       if (resolved === iterations) {
-        console.log('Time taken is ' + (Date.now() - start))
+        console.log('Time taken is ' + (performance.now() - start))
         return console.log('The pool was busy for ' + poolBusy + ' times')
       }
       return null
index 908acbfe84530f59d3facb59cfec315df7333cd1..b9c7d676d0404c7787e2fd8a00560e4167b88290 100644 (file)
@@ -115,9 +115,9 @@ describe('Fixed cluster pool test suite', () => {
 
   it('Verify that async function is working properly', async () => {
     const data = { f: 10 }
-    const startTime = Date.now()
+    const startTime = performance.now()
     const result = await asyncPool.execute(data)
-    const usedTime = Date.now() - startTime
+    const usedTime = performance.now() - startTime
     expect(result).toStrictEqual(data)
     expect(usedTime).toBeGreaterThanOrEqual(2000)
   })
index a42b5d37ede902bd5c6a490ce7ff832e6025d1fc..cf5c3175df42d9a5c94732e46d440af5a8f5deb1 100644 (file)
@@ -119,9 +119,9 @@ describe('Fixed thread pool test suite', () => {
 
   it('Verify that async function is working properly', async () => {
     const data = { f: 10 }
-    const startTime = Date.now()
+    const startTime = performance.now()
     const result = await asyncPool.execute(data)
-    const usedTime = Date.now() - startTime
+    const usedTime = performance.now() - startTime
     expect(result).toStrictEqual(data)
     expect(usedTime).toBeGreaterThanOrEqual(2000)
   })