0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-timers-socket-timeout-removes-other-socket-unref-timer.js
James M Snell 7192e913f7 test: improve multiple timers tests
PR-URL: https://github.com/nodejs/node/pull/14616
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Refael Ackermann <refack@gmail.com>
2017-08-07 17:33:59 -07:00

48 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 Countdown = require('../common/countdown');
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, () => {
clients[1].setTimeout(0);
clients[0].end();
clients[1].end();
});
// Use a delay that is higher than the lowest timer resolution across all
// supported platforms, so that the two timers don't fire at the same time.
clients[1].setTimeout(50);
}
});
server.listen(0, common.localhostIPv4, common.mustCall(() => {
const countdown = new Countdown(2, common.mustCall(() => server.close()));
{
const client = net.connect({ port: server.address().port });
client.on('end', () => countdown.dec());
}
{
const client = net.connect({ port: server.address().port });
client.on('end', () => countdown.dec());
}
}));