summaryrefslogtreecommitdiff
path: root/test/parallel/test-debug-port-from-cmdline.js
blob: 111da8e001c5e4447cbb2428ff0eb02a470ab1b5 (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
'use strict';
const common = require('../common');
const assert = require('assert');
const spawn = require('child_process').spawn;
const os = require('os');

const debugPort = common.PORT;
const args = ['--interactive', '--debug-port=' + debugPort];
const childOptions = { stdio: ['pipe', 'pipe', 'pipe', 'ipc'] };
const child = spawn(process.execPath, args, childOptions);

const reDeprecationWarning = new RegExp(
  /^\(node:\d+\) \[DEP0062\] DeprecationWarning: /.source +
  /node --debug is deprecated\. /.source +
  /Please use node --inspect instead\.$/.source
);

child.stdin.write("process.send({ msg: 'childready' });\n");

child.stderr.on('data', function(data) {
  const lines = data.toString().replace(/\r/g, '').trim().split('\n');
  lines.forEach(processStderrLine);
});

child.on('message', function onChildMsg(message) {
  if (message.msg === 'childready') {
    process._debugProcess(child.pid);
  }
});

process.on('exit', function() {
  child.kill();
  assertOutputLines();
});

const outputLines = [];
function processStderrLine(line) {
  console.log('> ' + line);
  outputLines.push(line);

  if (/Debugger listening/.test(line)) {
    process.exit();
  }
}

function assertOutputLines() {
  // need a var so can swap the first two lines in following
  // eslint-disable-next-line no-var
  var expectedLines = [
    /^Starting debugger agent\.$/,
    reDeprecationWarning,
    new RegExp(`^Debugger listening on 127\\.0\\.0\\.1:${debugPort}$`)
  ];

  if (os.platform() === 'win32') {
    expectedLines[1] = expectedLines[0];
    expectedLines[0] = reDeprecationWarning;
  }

  assert.strictEqual(outputLines.length, expectedLines.length);
  for (let i = 0; i < expectedLines.length; i++)
    assert(expectedLines[i].test(outputLines[i]));
}