forked from konstantin-azarov/node
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: refactor several parallel/test-timer tests
Change var to const/let. Simplify test-timers-uncaught-exception. Backport-PR-URL: nodejs/node#12401 PR-URL: nodejs/node#10524 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
- Loading branch information
1 parent
43d93fa
commit 1078086
Showing
4 changed files
with
13 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,19 @@ | ||
'use strict'; | ||
require('../common'); | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
let exceptions = 0; | ||
let timer1 = 0; | ||
let timer2 = 0; | ||
const errorMsg = 'BAM!'; | ||
|
||
// the first timer throws... | ||
console.error('set first timer'); | ||
setTimeout(function() { | ||
console.error('first timer'); | ||
timer1++; | ||
throw new Error('BAM!'); | ||
}, 100); | ||
setTimeout(common.mustCall(function() { | ||
throw new Error(errorMsg); | ||
}), 1); | ||
|
||
// ...but the second one should still run | ||
console.error('set second timer'); | ||
setTimeout(function() { | ||
console.error('second timer'); | ||
assert.strictEqual(timer1, 1); | ||
timer2++; | ||
}, 100); | ||
setTimeout(common.mustCall(function() {}), 1); | ||
|
||
function uncaughtException(err) { | ||
console.error('uncaught handler'); | ||
assert.strictEqual(err.message, 'BAM!'); | ||
exceptions++; | ||
assert.strictEqual(err.message, errorMsg); | ||
} | ||
process.on('uncaughtException', uncaughtException); | ||
|
||
let exited = false; | ||
process.on('exit', function() { | ||
assert(!exited); | ||
exited = true; | ||
process.removeListener('uncaughtException', uncaughtException); | ||
assert.strictEqual(exceptions, 1); | ||
assert.strictEqual(timer1, 1); | ||
assert.strictEqual(timer2, 1); | ||
}); | ||
process.on('uncaughtException', common.mustCall(uncaughtException)); |