mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 20:06:58 +00:00

It makes it easier to locate all tests related to the worker subsystem. PR-URL: https://github.com/nodejs/node/pull/21512 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
24 lines
733 B
JavaScript
24 lines
733 B
JavaScript
// Flags: --experimental-worker
|
|
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const { MessageChannel } = require('worker_threads');
|
|
|
|
{
|
|
const { port1: basePort1, port2: basePort2 } = new MessageChannel();
|
|
const {
|
|
port1: transferredPort1, port2: transferredPort2
|
|
} = new MessageChannel();
|
|
|
|
basePort1.postMessage({ transferredPort1 }, [ transferredPort1 ]);
|
|
basePort2.on('message', common.mustCall(({ transferredPort1 }) => {
|
|
transferredPort1.postMessage('foobar');
|
|
transferredPort2.on('message', common.mustCall((msg) => {
|
|
assert.strictEqual(msg, 'foobar');
|
|
transferredPort1.close(common.mustCall());
|
|
basePort1.close(common.mustCall());
|
|
}));
|
|
}));
|
|
}
|