mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 17:03:34 +00:00

`--debug=1.2.3.4:5678` and `--debug=example.com:5678` are now accepted, likewise the `--debug-brk` and `--debug-port` switch. The latter is now something of a misnomer but it's undocumented and for internal use only so it shouldn't matter too much. `--inspect=1.2.3.4:5678` and `--inspect=example.com:5678` are also accepted but don't use the host name yet; they still bind to the default address. Fixes: https://github.com/nodejs/node/issues/3306 PR-URL: https://github.com/nodejs/node/pull/3316 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var spawn = require('child_process').spawn;
|
|
|
|
var debugPort = common.PORT;
|
|
var args = ['--interactive', '--debug-port=' + debugPort];
|
|
var childOptions = { stdio: ['pipe', 'pipe', 'pipe', 'ipc'] };
|
|
var child = spawn(process.execPath, args, childOptions);
|
|
|
|
child.stdin.write("process.send({ msg: 'childready' });\n");
|
|
|
|
child.stderr.on('data', function(data) {
|
|
var 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();
|
|
});
|
|
|
|
var outputLines = [];
|
|
function processStderrLine(line) {
|
|
console.log('> ' + line);
|
|
outputLines.push(line);
|
|
|
|
if (/Debugger listening/.test(line)) {
|
|
process.exit();
|
|
}
|
|
}
|
|
|
|
function assertOutputLines() {
|
|
var expectedLines = [
|
|
'Starting debugger agent.',
|
|
'Debugger listening on (\\[::\\]|0\\.0\\.0\\.0):' + debugPort,
|
|
];
|
|
|
|
assert.equal(outputLines.length, expectedLines.length);
|
|
for (var i = 0; i < expectedLines.length; i++)
|
|
assert(RegExp(expectedLines[i]).test(outputLines[i]));
|
|
}
|