mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
2bc7841d0f
This helps to prevent issues where a failed test can keep a bound socket open long enough to cause other tests to fail with EADDRINUSE because the same port number is used. PR-URL: https://github.com/nodejs/node/pull/7045 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
const async_wrap = process.binding('async_wrap');
|
|
const providers = Object.keys(async_wrap.Providers);
|
|
|
|
const uidSymbol = Symbol('uid');
|
|
|
|
let cntr = 0;
|
|
let client;
|
|
|
|
function init(uid, type, parentUid, parentHandle) {
|
|
this[uidSymbol] = uid;
|
|
|
|
if (parentHandle) {
|
|
cntr++;
|
|
// Cannot assert in init callback or will abort.
|
|
process.nextTick(() => {
|
|
assert.equal(providers[type], 'TCPWRAP');
|
|
assert.equal(parentUid, server._handle[uidSymbol],
|
|
'server uid doesn\'t match parent uid');
|
|
assert.equal(parentHandle, server._handle,
|
|
'server handle doesn\'t match parent handle');
|
|
assert.equal(this, client._handle, 'client doesn\'t match context');
|
|
});
|
|
}
|
|
}
|
|
|
|
function noop() { }
|
|
|
|
async_wrap.setupHooks({ init });
|
|
async_wrap.enable();
|
|
|
|
const server = net.createServer(function(c) {
|
|
client = c;
|
|
// Allow init callback to run before closing.
|
|
setImmediate(() => {
|
|
c.end();
|
|
this.close();
|
|
});
|
|
}).listen(0, function() {
|
|
net.connect(this.address().port, noop);
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
// init should have only been called once with a parent.
|
|
assert.equal(cntr, 1);
|
|
});
|