mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +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>
39 lines
936 B
JavaScript
39 lines
936 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var events = [];
|
|
var sockets = [];
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(server.connections, 0);
|
|
assert.equal(events.length, 3);
|
|
// Expect to see one server event and two client events. The order of the
|
|
// events is undefined because they arrive on the same event loop tick.
|
|
assert.equal(events.join(' ').match(/server/g).length, 1);
|
|
assert.equal(events.join(' ').match(/client/g).length, 2);
|
|
});
|
|
|
|
var server = net.createServer(function(c) {
|
|
c.on('close', function() {
|
|
events.push('client');
|
|
});
|
|
|
|
sockets.push(c);
|
|
|
|
if (sockets.length === 2) {
|
|
server.close();
|
|
sockets.forEach(function(c) { c.destroy(); });
|
|
}
|
|
});
|
|
|
|
server.on('close', function() {
|
|
events.push('server');
|
|
});
|
|
|
|
server.listen(0, function() {
|
|
net.createConnection(this.address().port);
|
|
net.createConnection(this.address().port);
|
|
});
|