summaryrefslogtreecommitdiff
path: root/test/parallel/test-dgram-cluster-close-in-listening.js
blob: 8cce54027164eb0c4d974c95e718ef5e49c34fef (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
'use strict';
// Ensure that closing dgram sockets in 'listening' callbacks of cluster workers
// won't throw errors.

const common = require('../common');
const dgram = require('dgram');
const cluster = require('cluster');
if (common.isWindows)
  common.skip('dgram clustering is currently not supported on windows.');

if (cluster.isPrimary) {
  for (let i = 0; i < 3; i += 1) {
    cluster.fork();
  }
} else {
  const socket = dgram.createSocket('udp4');

  socket.on('error', common.mustNotCall());

  socket.on('listening', common.mustCall(() => {
    socket.close();
  }));

  socket.on('close', common.mustCall(() => {
    cluster.worker.disconnect();
  }));

  socket.bind(0);
}