2011-03-10 09:54:52 +01:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2011-08-24 08:42:23 +02:00
|
|
|
// libuv-broken
|
|
|
|
|
|
|
|
|
2010-12-22 04:14:29 +01:00
|
|
|
var common = require('../common');
|
|
|
|
var assert = require('assert');
|
2010-12-22 07:31:30 +01:00
|
|
|
var debug = require('_debugger');
|
2010-12-22 04:14:29 +01:00
|
|
|
|
|
|
|
var spawn = require('child_process').spawn;
|
|
|
|
|
|
|
|
|
|
|
|
var resCount = 0;
|
2010-12-22 07:31:30 +01:00
|
|
|
var p = new debug.Protocol();
|
2011-10-05 00:08:18 +02:00
|
|
|
p.onResponse = function(res) {
|
2010-12-22 04:14:29 +01:00
|
|
|
resCount++;
|
|
|
|
};
|
|
|
|
|
2011-10-05 00:08:18 +02:00
|
|
|
p.execute('Type: connect\r\n' +
|
|
|
|
'V8-Version: 3.0.4.1\r\n' +
|
|
|
|
'Protocol-Version: 1\r\n' +
|
|
|
|
'Embedding-Host: node v0.3.3-pre\r\n' +
|
|
|
|
'Content-Length: 0\r\n\r\n');
|
2010-12-22 04:14:29 +01:00
|
|
|
assert.equal(1, resCount);
|
|
|
|
|
2010-12-31 02:33:06 +01:00
|
|
|
// Make sure split messages go in.
|
|
|
|
|
|
|
|
var parts = [];
|
|
|
|
parts.push('Content-Length: 336\r\n');
|
|
|
|
assert.equal(21, parts[0].length);
|
|
|
|
parts.push('\r\n');
|
|
|
|
assert.equal(2, parts[1].length);
|
|
|
|
var bodyLength = 0;
|
|
|
|
|
|
|
|
parts.push('{"seq":12,"type":"event","event":"break","body":' +
|
|
|
|
'{"invocationText":"#<a Server>');
|
|
|
|
assert.equal(78, parts[2].length);
|
|
|
|
bodyLength += parts[2].length;
|
|
|
|
|
|
|
|
parts.push('.[anonymous](req=#<an IncomingMessage>, res=#<a ServerResponse>)",' +
|
|
|
|
'"sourceLine"');
|
|
|
|
assert.equal(78, parts[3].length);
|
|
|
|
bodyLength += parts[3].length;
|
|
|
|
|
|
|
|
parts.push(':45,"sourceColumn":4,"sourceLineText":" debugger;","script":' +
|
|
|
|
'{"id":24,"name":"/home/ryan/projects/node/benchmark/http_simple.js",' +
|
|
|
|
'"lineOffset":0,"columnOffset":0,"lineCount":98}}}');
|
|
|
|
assert.equal(180, parts[4].length);
|
|
|
|
bodyLength += parts[4].length;
|
|
|
|
|
|
|
|
assert.equal(336, bodyLength);
|
|
|
|
|
|
|
|
for (var i = 0; i < parts.length; i++) {
|
|
|
|
p.execute(parts[i]);
|
|
|
|
}
|
|
|
|
assert.equal(2, resCount);
|
|
|
|
|
|
|
|
|
|
|
|
// Make sure that if we get backed up, we still manage to get all the
|
|
|
|
// messages
|
|
|
|
var d = 'Content-Length: 466\r\n\r\n' +
|
|
|
|
'{"seq":10,"type":"event","event":"afterCompile","success":true,' +
|
|
|
|
'"body":{"script":{"handle":1,"type":"script","name":"dns.js",' +
|
|
|
|
'"id":34,"lineOffset":0,"columnOffset":0,"lineCount":241,"sourceStart":' +
|
|
|
|
'"(function (module, exports, require) {var dns = process.binding(\'cares\')' +
|
|
|
|
';\\nvar ne","sourceLength":6137,"scriptType":2,"compilationType":0,' +
|
|
|
|
'"context":{"ref":0},"text":"dns.js (lines: 241)"}},"refs":[{"handle":0' +
|
|
|
|
',"type":"context","text":"#<a ContextMirror>"}],"running":true}' +
|
|
|
|
'Content-Length: 119\r\n\r\n' +
|
|
|
|
'{"seq":11,"type":"event","event":"scriptCollected","success":true,' +
|
|
|
|
'"body":{"script":{"id":26}},"refs":[],"running":true}';
|
|
|
|
p.execute(d);
|
|
|
|
assert.equal(4, resCount);
|
|
|
|
|
2010-12-22 23:31:57 +01:00
|
|
|
var expectedConnections = 0;
|
|
|
|
var tests = [];
|
2011-10-05 00:08:18 +02:00
|
|
|
function addTest(cb) {
|
2010-12-22 23:31:57 +01:00
|
|
|
expectedConnections++;
|
|
|
|
tests.push(cb);
|
|
|
|
}
|
|
|
|
|
2011-10-05 00:08:18 +02:00
|
|
|
addTest(function(client, done) {
|
|
|
|
console.error('requesting version');
|
|
|
|
client.reqVersion(function(err, v) {
|
2011-09-27 19:16:29 +02:00
|
|
|
assert.ok(!err);
|
2011-10-05 00:08:18 +02:00
|
|
|
console.log('version: %s', v);
|
2010-12-22 23:31:57 +01:00
|
|
|
assert.equal(process.versions.v8, v);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2011-10-05 00:08:18 +02:00
|
|
|
addTest(function(client, done) {
|
|
|
|
console.error('requesting scripts');
|
|
|
|
client.reqScripts(function(err) {
|
2011-09-27 19:16:29 +02:00
|
|
|
assert.ok(!err);
|
2011-10-05 00:08:18 +02:00
|
|
|
console.error('got %d scripts', Object.keys(client.scripts).length);
|
2010-12-31 02:52:14 +01:00
|
|
|
|
2010-12-22 23:31:57 +01:00
|
|
|
var foundMainScript = false;
|
2010-12-31 02:52:14 +01:00
|
|
|
for (var k in client.scripts) {
|
|
|
|
var script = client.scripts[k];
|
|
|
|
if (script && script.name === 'node.js') {
|
2010-12-22 23:31:57 +01:00
|
|
|
foundMainScript = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert.ok(foundMainScript);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2011-10-05 00:08:18 +02:00
|
|
|
addTest(function(client, done) {
|
|
|
|
console.error('eval 2+2');
|
|
|
|
client.reqEval('2+2', function(err, res) {
|
2010-12-22 23:31:57 +01:00
|
|
|
console.error(res);
|
2011-09-27 19:16:29 +02:00
|
|
|
assert.ok(!err);
|
|
|
|
assert.equal('4', res.text);
|
|
|
|
assert.equal(4, res.value);
|
2010-12-22 23:31:57 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2010-12-22 04:14:29 +01:00
|
|
|
|
2010-12-22 07:31:30 +01:00
|
|
|
var connectCount = 0;
|
2010-12-22 04:14:29 +01:00
|
|
|
|
2010-12-22 23:31:57 +01:00
|
|
|
function doTest(cb, done) {
|
2010-12-22 07:31:30 +01:00
|
|
|
var nodeProcess = spawn(process.execPath,
|
2010-12-22 23:40:28 +01:00
|
|
|
['-e', 'setInterval(function () { console.log("blah"); }, 100);']);
|
2010-12-22 04:14:29 +01:00
|
|
|
|
2011-10-05 00:08:18 +02:00
|
|
|
nodeProcess.stdout.once('data', function() {
|
|
|
|
console.log('>>> new node process: %d', nodeProcess.pid);
|
|
|
|
process.kill(nodeProcess.pid, 'SIGUSR1');
|
|
|
|
console.log('>>> signaling it with SIGUSR1');
|
2010-12-22 07:31:30 +01:00
|
|
|
});
|
2010-12-22 04:14:29 +01:00
|
|
|
|
2010-12-22 07:31:30 +01:00
|
|
|
var didTryConnect = false;
|
|
|
|
nodeProcess.stderr.setEncoding('utf8');
|
2011-10-05 00:08:18 +02:00
|
|
|
var b = '';
|
|
|
|
nodeProcess.stderr.on('data', function(data) {
|
2011-01-12 01:30:01 +01:00
|
|
|
b += data;
|
|
|
|
if (didTryConnect == false && /debugger listening on port/.test(b)) {
|
2010-12-22 07:31:30 +01:00
|
|
|
didTryConnect = true;
|
|
|
|
|
2011-01-12 01:30:01 +01:00
|
|
|
setTimeout(function() {
|
|
|
|
// Wait for some data before trying to connect
|
|
|
|
var c = new debug.Client();
|
2011-10-05 00:08:18 +02:00
|
|
|
process.stdout.write('>>> connecting...');
|
|
|
|
c.connect(debug.port);
|
|
|
|
c.on('ready', function() {
|
2011-01-12 01:30:01 +01:00
|
|
|
connectCount++;
|
2011-10-05 00:08:18 +02:00
|
|
|
console.log('ready!');
|
|
|
|
cb(c, function() {
|
|
|
|
console.error('>>> killing node process %d\n\n', nodeProcess.pid);
|
2011-01-12 01:30:01 +01:00
|
|
|
nodeProcess.kill();
|
|
|
|
done();
|
|
|
|
});
|
2010-12-22 23:31:57 +01:00
|
|
|
});
|
2011-01-12 01:30:01 +01:00
|
|
|
}, 100);
|
2010-12-22 07:31:30 +01:00
|
|
|
}
|
2010-12-22 04:14:29 +01:00
|
|
|
});
|
2010-12-22 07:31:30 +01:00
|
|
|
}
|
2010-12-22 04:14:29 +01:00
|
|
|
|
2010-12-22 07:31:30 +01:00
|
|
|
|
2011-10-05 00:08:18 +02:00
|
|
|
function run() {
|
2010-12-22 23:31:57 +01:00
|
|
|
var t = tests[0];
|
|
|
|
if (!t) return;
|
|
|
|
|
2011-10-05 00:08:18 +02:00
|
|
|
doTest(t, function() {
|
2010-12-22 23:31:57 +01:00
|
|
|
tests.shift();
|
|
|
|
run();
|
2010-12-22 04:14:29 +01:00
|
|
|
});
|
2010-12-22 23:31:57 +01:00
|
|
|
}
|
2010-12-22 04:14:29 +01:00
|
|
|
|
2010-12-22 23:31:57 +01:00
|
|
|
run();
|
2010-12-22 04:14:29 +01:00
|
|
|
|
|
|
|
process.on('exit', function() {
|
2010-12-22 23:31:57 +01:00
|
|
|
assert.equal(expectedConnections, connectCount);
|
2010-12-22 04:14:29 +01:00
|
|
|
});
|
|
|
|
|