summaryrefslogtreecommitdiff
path: root/test/parallel/test-inspector-workers-flat-list.js
blob: 9f6495d10fb147f7abeab075f0b5e84a9c4dfbac (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
'use strict';
const common = require('../common');

common.skipIfInspectorDisabled();

const { Worker, isMainThread, parentPort, workerData } =
  require('worker_threads');

if (isMainThread || workerData !== 'launched by test') {
  common.skipIfWorker();
}

const { Session } = require('inspector');

const MAX_DEPTH = 3;

let rootWorker = null;

const runTest = common.mustCall(function() {
  let reportedWorkersCount = 0;
  const session = new Session();
  session.connect();
  session.on('NodeWorker.attachedToWorker', common.mustCall(
    ({ params: { workerInfo } }) => {
      console.log(`Worker ${workerInfo.title} was reported`);
      if (++reportedWorkersCount === MAX_DEPTH) {
        rootWorker.postMessage({ done: true });
      }
    }, MAX_DEPTH));
  session.post('NodeWorker.enable', { waitForDebuggerOnStart: false });
});

function processMessage({ child }) {
  console.log(`Worker ${child} is running`);
  if (child === MAX_DEPTH) {
    runTest();
  }
}

function workerCallback(message) {
  parentPort.postMessage(message);
}

function startWorker(depth, messageCallback) {
  const worker = new Worker(__filename, { workerData: 'launched by test' });
  worker.on('message', messageCallback);
  worker.postMessage({ depth });
  return worker;
}

function runMainThread() {
  rootWorker = startWorker(1, processMessage);
}

function runChildWorkerThread() {
  let worker = null;
  parentPort.on('message', ({ child, depth, done }) => {
    if (done) {
      if (worker) {
        worker.postMessage({ done: true });
      }
      parentPort.close();
    } else if (depth) {
      parentPort.postMessage({ child: depth });
      if (depth < MAX_DEPTH) {
        worker = startWorker(depth + 1, workerCallback);
      }
    } else if (child) {
      parentPort.postMessage({ child });
    }
  });
}

if (isMainThread) {
  runMainThread();
} else {
  runChildWorkerThread();
}