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.
49 lines
1.2 KiB
49 lines
1.2 KiB
'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 port ' + debugPort
|
|
];
|
|
|
|
assert.equal(outputLines.length, expectedLines.length);
|
|
for (var i = 0; i < expectedLines.length; i++)
|
|
assert.equal(outputLines[i], expectedLines[i]);
|
|
|
|
}
|
|
|