mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 17:57:53 +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>
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
// Flags: --experimental-worker
|
|
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { MessageChannel, MessagePort, Worker } = require('worker_threads');
|
|
|
|
{
|
|
const channel = new MessageChannel();
|
|
|
|
channel.port1.on('message', common.mustCall(({ typedArray }) => {
|
|
assert.deepStrictEqual(typedArray, new Uint8Array([0, 1, 2, 3, 4]));
|
|
}));
|
|
|
|
const typedArray = new Uint8Array([0, 1, 2, 3, 4]);
|
|
channel.port2.postMessage({ typedArray }, [ typedArray.buffer ]);
|
|
assert.strictEqual(typedArray.buffer.byteLength, 0);
|
|
channel.port2.close();
|
|
}
|
|
|
|
{
|
|
const channel = new MessageChannel();
|
|
|
|
channel.port1.on('close', common.mustCall());
|
|
channel.port2.on('close', common.mustCall());
|
|
channel.port2.close();
|
|
}
|
|
|
|
{
|
|
const channel = new MessageChannel();
|
|
|
|
const w = new Worker(`
|
|
const { MessagePort } = require('worker_threads');
|
|
const assert = require('assert');
|
|
require('worker_threads').parentPort.on('message', ({ port }) => {
|
|
assert(port instanceof MessagePort);
|
|
port.postMessage('works');
|
|
});
|
|
`, { eval: true });
|
|
w.postMessage({ port: channel.port2 }, [ channel.port2 ]);
|
|
assert(channel.port1 instanceof MessagePort);
|
|
assert(channel.port2 instanceof MessagePort);
|
|
channel.port1.on('message', common.mustCall((message) => {
|
|
assert.strictEqual(message, 'works');
|
|
w.terminate();
|
|
}));
|
|
}
|