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

if (!common.hasCrypto) {
  common.skip('missing crypto');
  return;
}

const child = spawn(process.execPath, ['debug']);
child.stderr.setEncoding('utf8');

const expectedLines = [
  /^\(node:\d+\) \[DEP0068\] DeprecationWarning:/,
  /^Usage: .*node.* debug script\.js$/,
  /^       .*node.* debug <host>:<port>$/
];

let actualUsageMessage = '';
child.stderr.on('data', function(data) {
  actualUsageMessage += data.toString();
});

child.on('exit', common.mustCall(function(code) {
  const outputLines = actualUsageMessage.split('\n');
  assert.strictEqual(code, 1);
  for (let i = 0; i < expectedLines.length; i++)
    assert(expectedLines[i].test(outputLines[i]));
}));