mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
791 B
28 lines
791 B
'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$/,
|
|
/^ .*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]));
|
|
}));
|
|
|