Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-debug-usage.js « parallel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fcf2d8edb944e052840bc9ac0ae55d6f51f59fa6 (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
'use strict';
const common = require('../common');
if (!common.hasCrypto)
  common.skip('missing crypto');

const assert = require('assert');
const spawn = require('child_process').spawn;

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

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

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

child.on('exit', common.mustCall(function(code) {
  assert.strictEqual(code, 1);
  for (let i = 0; i < expectedLines.length; i++)
    assert.ok(
      expectedLines[i].test(actualUsageMessage),
      `${actualUsageMessage} did not match ${expectedLines[i]}`
    );
}));