2010-12-05 07:20:34 +08:00
|
|
|
var common = require('../common');
|
|
|
|
var assert = require('assert');
|
2010-05-10 06:07:54 +08:00
|
|
|
// This test requires the program "ab"
|
2010-12-05 07:20:34 +08:00
|
|
|
var http = require('http');
|
|
|
|
var exec = require("child_process").exec;
|
2010-05-10 06:07:54 +08:00
|
|
|
|
2010-12-05 07:20:34 +08:00
|
|
|
var bodyLength = 12345;
|
2010-05-10 06:07:54 +08:00
|
|
|
|
2010-12-05 07:20:34 +08:00
|
|
|
var body = "";
|
|
|
|
for (var i = 0; i < bodyLength; i++) {
|
|
|
|
body += 'c';
|
|
|
|
}
|
2010-05-10 06:07:54 +08:00
|
|
|
|
2010-12-05 07:20:34 +08:00
|
|
|
var server = http.createServer(function (req, res) {
|
2010-05-10 06:07:54 +08:00
|
|
|
res.writeHead(200, {
|
|
|
|
"Content-Length": bodyLength,
|
|
|
|
"Content-Type": "text/plain"
|
|
|
|
});
|
|
|
|
res.end(body);
|
|
|
|
});
|
|
|
|
|
2010-12-05 07:20:34 +08:00
|
|
|
var runs = 0;
|
2010-05-10 06:07:54 +08:00
|
|
|
|
|
|
|
function runAb(opts, callback) {
|
2010-07-16 02:47:25 +08:00
|
|
|
var command = "ab " + opts + " http://127.0.0.1:" + common.PORT + "/";
|
2010-05-10 06:07:54 +08:00
|
|
|
exec(command, function (err, stdout, stderr) {
|
|
|
|
if (err) {
|
2010-08-13 23:54:40 +08:00
|
|
|
if (stderr.indexOf("ab") >= 0) {
|
|
|
|
console.log("ab not installed? skipping test.\n" + stderr);
|
|
|
|
process.reallyExit(0);
|
|
|
|
}
|
2010-05-10 06:07:54 +08:00
|
|
|
process.exit();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var m = /Document Length:\s*(\d+) bytes/mi.exec(stdout);
|
|
|
|
var documentLength = parseInt(m[1]);
|
|
|
|
|
|
|
|
var m = /Complete requests:\s*(\d+)/mi.exec(stdout);
|
|
|
|
var completeRequests = parseInt(m[1]);
|
|
|
|
|
|
|
|
var m = /HTML transferred:\s*(\d+) bytes/mi.exec(stdout);
|
|
|
|
var htmlTransfered = parseInt(m[1]);
|
|
|
|
|
|
|
|
assert.equal(bodyLength, documentLength);
|
|
|
|
assert.equal(completeRequests * documentLength, htmlTransfered);
|
|
|
|
|
|
|
|
runs++;
|
|
|
|
|
|
|
|
if (callback) callback()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2010-07-16 02:47:25 +08:00
|
|
|
server.listen(common.PORT, function () {
|
2010-05-10 06:07:54 +08:00
|
|
|
runAb("-c 1 -n 10", function () {
|
2010-06-24 08:40:51 +08:00
|
|
|
console.log("-c 1 -n 10 okay");
|
2010-05-10 06:07:54 +08:00
|
|
|
|
|
|
|
runAb("-c 1 -n 100", function () {
|
2010-06-24 08:40:51 +08:00
|
|
|
console.log("-c 1 -n 100 okay");
|
2010-05-10 06:07:54 +08:00
|
|
|
|
|
|
|
runAb("-c 1 -n 1000", function () {
|
2010-06-24 08:40:51 +08:00
|
|
|
console.log("-c 1 -n 1000 okay");
|
2010-05-10 06:07:54 +08:00
|
|
|
server.close();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
process.addListener("exit", function () {
|
|
|
|
assert.equal(3, runs);
|
|
|
|
});
|