-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: refactor test-beforeexit-event
- replaced var with const/let. - removed all console.log() statements. - removed deaths and revivals vars. - wrapped beforexit listener callbacks with common.mustCall(). - removed exit event listener.
- Loading branch information
Showing
1 changed file
with
12 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,26 @@ | ||
'use strict'; | ||
require('../common'); | ||
var assert = require('assert'); | ||
var net = require('net'); | ||
var revivals = 0; | ||
var deaths = 0; | ||
const common = require('../common'); | ||
const net = require('net'); | ||
|
||
process.on('beforeExit', function() { deaths++; }); | ||
|
||
process.once('beforeExit', tryImmediate); | ||
process.once('beforeExit', common.mustCall(tryImmediate)); | ||
|
||
function tryImmediate() { | ||
console.log('set immediate'); | ||
setImmediate(function() { | ||
revivals++; | ||
process.once('beforeExit', tryTimer); | ||
}); | ||
setImmediate(common.mustCall(() => { | ||
process.once('beforeExit', common.mustCall(tryTimer)); | ||
})); | ||
} | ||
|
||
function tryTimer() { | ||
console.log('set a timeout'); | ||
setTimeout(function() { | ||
console.log('timeout cb, do another once beforeExit'); | ||
revivals++; | ||
process.once('beforeExit', tryListen); | ||
}, 1); | ||
setTimeout(common.mustCall(() => { | ||
process.once('beforeExit', common.mustCall(tryListen)); | ||
}), 1); | ||
} | ||
|
||
function tryListen() { | ||
console.log('create a server'); | ||
net.createServer() | ||
.listen(0) | ||
.on('listening', function() { | ||
revivals++; | ||
.on('listening', common.mustCall(function() { | ||
this.close(); | ||
}); | ||
process.on('beforeExit', common.mustCall(() => {})); | ||
})); | ||
} | ||
|
||
process.on('exit', function() { | ||
assert.strictEqual(4, deaths); | ||
assert.strictEqual(3, revivals); | ||
}); |