summaryrefslogtreecommitdiff
path: root/test/parallel/test-cluster-worker-init.js
blob: eaa9746c5f99a3fa2670cab39236935f01c30876 (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
'use strict';
// test-cluster-worker-init.js
// verifies that, when a child process is forked, the cluster.worker
// object can receive messages as expected

const common = require('../common');
const assert = require('assert');
const cluster = require('cluster');
const msg = 'foo';

if (cluster.isMaster) {
  const worker = cluster.fork();

  worker.on('message', common.mustCall((message) => {
    assert.strictEqual(message, true, 'did not receive expected message');
    const w = worker.disconnect();
    assert.strictEqual(worker, w, 'did not return a reference');
  }));

  worker.on('online', () => {
    worker.send(msg);
  });
} else {
  // GH #7998
  cluster.worker.on('message', (message) => {
    process.send(message === msg);
  });
}