summaryrefslogtreecommitdiff
path: root/test/parallel/test-worker-http2-generic-streams-terminate.js
blob: 234697fb4d26dc333f1840b31067fbc9cf5395cd (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
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
const common = require('../common');
if (!common.hasCrypto)
  common.skip('missing crypto');

const assert = require('assert');
const http2 = require('http2');
const { Duplex } = require('stream');
const { Worker, workerData } = require('worker_threads');

// Tests the interaction between terminating a Worker thread and running
// the native SetImmediate queue, which may attempt to perform multiple
// calls into JS even though one already terminates the Worker.

if (!workerData) {
  const counter = new Int32Array(new SharedArrayBuffer(4));
  const worker = new Worker(__filename, { workerData: { counter } });
  worker.on('exit', common.mustCall(() => {
    assert.strictEqual(counter[0], 1);
  }));
} else {
  const { counter } = workerData;

  // Start two HTTP/2 connections. This will trigger write()s call from inside
  // the SetImmediate queue.
  for (let i = 0; i < 2; i++) {
    http2.connect('http://localhost', {
      createConnection() {
        return new Duplex({
          write(chunk, enc, cb) {
            Atomics.add(counter, 0, 1);
            process.exit();
          },
          read() { }
        });
      }
    });
  }
}