summaryrefslogtreecommitdiff
path: root/test/parallel/test-timers-socket-timeout-removes-other-socket-unref-timer.js
blob: 8670c3c2b6e8f3a487c0da73a992b0d9ce500093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'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);
});