0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/test/parallel/test-timers-socket-timeout-removes-other-socket-unref-timer.js
Brian White 2bc7841d0f
test: use random ports where possible
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>
2016-06-10 22:30:55 -04:00

50 lines
1.3 KiB
JavaScript

'use strict';
/*
* This test is a regression test for joyent/node#8897.
*/
const common = require('../common');
const net = require('net');
const clients = [];
const server = net.createServer(function onClient(client) {
clients.push(client);
if (clients.length === 2) {
/*
* Enroll two timers, and make the one supposed to fire first
* unenroll the other one supposed to fire later. This mutates
* the list of unref timers when traversing it, and exposes the
* original issue in joyent/node#8897.
*/
clients[0].setTimeout(1, function onTimeout() {
clients[1].setTimeout(0);
clients[0].end();
clients[1].end();
});
// Use a delay that is higher than the lowest timer resolution accross all
// supported platforms, so that the two timers don't fire at the same time.
clients[1].setTimeout(50);
}
});
server.listen(0, common.localhostIPv4, function() {
var nbClientsEnded = 0;
function addEndedClient(client) {
++nbClientsEnded;
if (nbClientsEnded === 2) {
server.close();
}
}
const client1 = net.connect({ port: this.address().port });
client1.on('end', addEndedClient);
const client2 = net.connect({ port: this.address().port });
client2.on('end', addEndedClient);
});