mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
28c7394319
PR-URL: https://github.com/nodejs/node/pull/55063 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
30 lines
851 B
JavaScript
30 lines
851 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { MessageChannel } = require('worker_threads');
|
|
|
|
// Test that passing duplicate transferables in the transfer list throws
|
|
// DataCloneError exceptions.
|
|
|
|
{
|
|
const { port1, port2 } = new MessageChannel();
|
|
port2.once('message', common.mustNotCall());
|
|
|
|
const port3 = new MessageChannel().port1;
|
|
assert.throws(() => {
|
|
port1.postMessage(port3, [port3, port3]);
|
|
}, /^DataCloneError: Transfer list contains duplicate MessagePort$/);
|
|
port1.close();
|
|
}
|
|
|
|
{
|
|
const { port1, port2 } = new MessageChannel();
|
|
port2.once('message', common.mustNotCall());
|
|
|
|
const buf = new Uint8Array(10);
|
|
assert.throws(() => {
|
|
port1.postMessage(buf, [buf.buffer, buf.buffer]);
|
|
}, /^DataCloneError: Transfer list contains duplicate ArrayBuffer$/);
|
|
port1.close();
|
|
}
|