summaryrefslogtreecommitdiff
path: root/test/parallel/test-worker-onmessage.js
blob: 3ed10755cece283e36d17c8d2b5df29a6aeaae81 (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
'use strict';
const common = require('../common');
const assert = require('assert');
const { Worker, parentPort } = require('worker_threads');

// Do not use isMainThread so that this test itself can be run inside a Worker.
if (!process.env.HAS_STARTED_WORKER) {
  process.env.HAS_STARTED_WORKER = 1;
  const w = new Worker(__filename);
  const expectation = [ 4, undefined, null ];
  const actual = [];
  w.on('message', common.mustCall((message) => {
    actual.push(message);
    if (actual.length === expectation.length) {
      assert.deepStrictEqual(expectation, actual);
      w.terminate();
    }
  }, expectation.length));
  w.postMessage(2);
} else {
  parentPort.onmessage = common.mustCall((message) => {
    parentPort.postMessage(message.data * 2);
    parentPort.postMessage(undefined);
    parentPort.postMessage(null);
  });
}