-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: fix negative nodeTiming milestone values
PR-URL: #46588 Fixes: #45958 Refs: #43781 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
- Loading branch information
1 parent
074692a
commit 6740679
Showing
6 changed files
with
73 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const { performance } = require('perf_hooks'); | ||
const { isMainThread } = require('worker_threads'); | ||
|
||
const { nodeTiming } = performance; | ||
assert.strictEqual(nodeTiming.name, 'node'); | ||
assert.strictEqual(nodeTiming.entryType, 'node'); | ||
|
||
assert.strictEqual(nodeTiming.startTime, 0); | ||
const now = performance.now(); | ||
assert.ok(nodeTiming.duration >= now); | ||
|
||
// Check that the nodeTiming milestone values are in the correct order and greater than 0. | ||
const keys = ['nodeStart', 'v8Start', 'environment', 'bootstrapComplete']; | ||
for (let idx = 0; idx < keys.length; idx++) { | ||
if (idx === 0) { | ||
assert.ok(nodeTiming[keys[idx]] >= 0); | ||
continue; | ||
} | ||
assert.ok(nodeTiming[keys[idx]] > nodeTiming[keys[idx - 1]], `expect nodeTiming['${keys[idx]}'] > nodeTiming['${keys[idx - 1]}']`); | ||
} | ||
|
||
// loop milestones. | ||
assert.strictEqual(nodeTiming.idleTime, 0); | ||
if (isMainThread) { | ||
// Main thread does not start loop until the first tick is finished. | ||
assert.strictEqual(nodeTiming.loopStart, -1); | ||
} else { | ||
// Worker threads run the user script after loop is started. | ||
assert.ok(nodeTiming.loopStart >= nodeTiming.bootstrapComplete); | ||
} | ||
assert.strictEqual(nodeTiming.loopExit, -1); | ||
|
||
setTimeout(common.mustCall(() => { | ||
assert.ok(nodeTiming.idleTime >= 0); | ||
assert.ok(nodeTiming.idleTime + nodeTiming.loopExit <= nodeTiming.duration); | ||
assert.ok(nodeTiming.loopStart >= nodeTiming.bootstrapComplete); | ||
}, 1), 1); | ||
|
||
// Can not be wrapped in common.mustCall(). | ||
process.on('exit', () => { | ||
assert.ok(nodeTiming.loopExit > 0); | ||
}); |