summaryrefslogtreecommitdiff
path: root/test/parallel/test-worker-message-port-arraybuffer.js
blob: a30378674a311d9a67866e766ea37c1ee8f28d9f (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 { MessageChannel } = require('worker_threads');

{
  const { port1, port2 } = new MessageChannel();

  const arrayBuffer = new ArrayBuffer(40);
  const typedArray = new Uint32Array(arrayBuffer);
  typedArray[0] = 0x12345678;

  port1.postMessage(typedArray, [ arrayBuffer ]);
  assert.strictEqual(arrayBuffer.byteLength, 0);
  // Transferring again should throw a DataCloneError.
  assert.throws(() => port1.postMessage(typedArray, [ arrayBuffer ]), {
    code: 25,
    name: 'DataCloneError',
  });

  port2.on('message', common.mustCall((received) => {
    assert.strictEqual(received[0], 0x12345678);
    port2.close(common.mustCall());
  }));
}