2011-02-16 22:16:44 +01:00
|
|
|
if (!process.versions.openssl) {
|
2011-10-05 00:08:18 +02:00
|
|
|
console.error('Skipping because node compiled without OpenSSL.');
|
2011-02-16 22:16:44 +01:00
|
|
|
process.exit(0);
|
|
|
|
}
|
|
|
|
|
2010-11-02 02:23:13 +01:00
|
|
|
// http://groups.google.com/group/nodejs/browse_thread/thread/f66cd3c960406919
|
|
|
|
var common = require('../common');
|
|
|
|
var assert = require('assert');
|
2011-07-05 01:06:39 +02:00
|
|
|
var http = require('http');
|
|
|
|
var cp = require('child_process');
|
|
|
|
var fs = require('fs');
|
2010-11-02 02:23:13 +01:00
|
|
|
|
2013-03-08 18:10:57 +01:00
|
|
|
var filename = require('path').join(common.tmpDir, 'big');
|
2011-07-05 01:06:39 +02:00
|
|
|
|
2010-11-02 02:23:13 +01:00
|
|
|
var count = 0;
|
2010-12-05 23:33:52 +01:00
|
|
|
function maybeMakeRequest() {
|
2010-11-02 02:23:13 +01:00
|
|
|
if (++count < 2) return;
|
2010-12-05 23:33:52 +01:00
|
|
|
console.log('making curl request');
|
2011-02-16 22:16:44 +01:00
|
|
|
var cmd = 'curl http://127.0.0.1:' + common.PORT + '/ | openssl sha1';
|
|
|
|
cp.exec(cmd, function(err, stdout, stderr) {
|
|
|
|
if (err) throw err;
|
|
|
|
var hex = stdout.match(/([A-Fa-f0-9]{40})/)[0];
|
|
|
|
assert.equal('8c206a1a87599f532ce68675536f0b1546900d7a', hex);
|
|
|
|
console.log('got the correct response');
|
2013-03-08 18:10:57 +01:00
|
|
|
fs.unlink(filename);
|
2011-02-16 22:16:44 +01:00
|
|
|
server.close();
|
|
|
|
});
|
2010-11-02 02:23:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-10 02:43:57 +02:00
|
|
|
var ddcmd = common.ddCommand(filename, 10240);
|
2011-10-05 00:08:18 +02:00
|
|
|
console.log('dd command: ', ddcmd);
|
2011-08-10 02:43:57 +02:00
|
|
|
|
|
|
|
cp.exec(ddcmd, function(err, stdout, stderr) {
|
|
|
|
if (err) throw err;
|
|
|
|
maybeMakeRequest();
|
|
|
|
});
|
2010-11-02 02:23:13 +01:00
|
|
|
|
|
|
|
|
2010-12-05 23:33:52 +01:00
|
|
|
var server = http.createServer(function(req, res) {
|
2010-11-02 02:23:13 +01:00
|
|
|
res.writeHead(200);
|
|
|
|
|
|
|
|
// Create the subprocess
|
|
|
|
var cat = cp.spawn('cat', [filename]);
|
|
|
|
|
|
|
|
// Stream the data through to the response as binary chunks
|
2010-12-05 23:33:52 +01:00
|
|
|
cat.stdout.on('data', function(data) {
|
2010-11-02 02:23:13 +01:00
|
|
|
res.write(data);
|
|
|
|
});
|
|
|
|
|
|
|
|
// End the response on exit (and log errors)
|
2010-12-05 23:33:52 +01:00
|
|
|
cat.on('exit', function(code) {
|
2010-11-02 02:23:13 +01:00
|
|
|
if (code !== 0) {
|
|
|
|
console.error('subprocess exited with code ' + code);
|
2013-03-18 18:48:13 +01:00
|
|
|
process.exit(1);
|
2010-11-02 02:23:13 +01:00
|
|
|
}
|
|
|
|
res.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
server.listen(common.PORT, maybeMakeRequest);
|
|
|
|
|
|
|
|
console.log('Server running at http://localhost:8080');
|