2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2015-03-04 12:09:07 +11:00
|
|
|
var common = require('../common');
|
|
|
|
var assert = require('assert');
|
|
|
|
if (!common.opensslCli) {
|
|
|
|
console.error('Skipping because node compiled without OpenSSL CLI.');
|
2011-02-16 13:16:44 -08:00
|
|
|
process.exit(0);
|
|
|
|
}
|
|
|
|
|
2010-11-01 18:23:13 -07:00
|
|
|
// http://groups.google.com/group/nodejs/browse_thread/thread/f66cd3c960406919
|
2011-07-05 01:06:39 +02:00
|
|
|
var http = require('http');
|
|
|
|
var cp = require('child_process');
|
|
|
|
var fs = require('fs');
|
2010-11-01 18:23:13 -07:00
|
|
|
|
2013-03-08 09:10:57 -08:00
|
|
|
var filename = require('path').join(common.tmpDir, 'big');
|
2011-07-05 01:06:39 +02:00
|
|
|
|
2010-11-01 18:23:13 -07:00
|
|
|
var count = 0;
|
2010-12-06 01:33:52 +03:00
|
|
|
function maybeMakeRequest() {
|
2010-11-01 18:23:13 -07:00
|
|
|
if (++count < 2) return;
|
2010-12-06 01:33:52 +03:00
|
|
|
console.log('making curl request');
|
2015-03-12 10:16:26 +09:00
|
|
|
var cmd = 'curl http://127.0.0.1:' + common.PORT + '/ | ' +
|
|
|
|
'"' + common.opensslCli + '" sha1';
|
2011-02-16 13:16:44 -08:00
|
|
|
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 09:10:57 -08:00
|
|
|
fs.unlink(filename);
|
2011-02-16 13:16:44 -08:00
|
|
|
server.close();
|
|
|
|
});
|
2010-11-01 18:23:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-09 11:40:55 -07:00
|
|
|
common.refreshTmpDir();
|
|
|
|
|
2011-08-09 17:43:57 -07:00
|
|
|
var ddcmd = common.ddCommand(filename, 10240);
|
2011-10-04 18:08:18 -04:00
|
|
|
console.log('dd command: ', ddcmd);
|
2011-08-09 17:43:57 -07:00
|
|
|
|
|
|
|
cp.exec(ddcmd, function(err, stdout, stderr) {
|
|
|
|
if (err) throw err;
|
|
|
|
maybeMakeRequest();
|
|
|
|
});
|
2010-11-01 18:23:13 -07:00
|
|
|
|
|
|
|
|
2010-12-06 01:33:52 +03:00
|
|
|
var server = http.createServer(function(req, res) {
|
2010-11-01 18:23:13 -07: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-06 01:33:52 +03:00
|
|
|
cat.stdout.on('data', function(data) {
|
2010-11-01 18:23:13 -07:00
|
|
|
res.write(data);
|
|
|
|
});
|
|
|
|
|
2015-02-27 15:48:34 -08:00
|
|
|
cat.stdout.on('end', function onStdoutEnd() {
|
|
|
|
res.end();
|
|
|
|
});
|
|
|
|
|
2010-11-01 18:23:13 -07:00
|
|
|
// End the response on exit (and log errors)
|
2010-12-06 01:33:52 +03:00
|
|
|
cat.on('exit', function(code) {
|
2010-11-01 18:23:13 -07:00
|
|
|
if (code !== 0) {
|
|
|
|
console.error('subprocess exited with code ' + code);
|
2013-03-18 10:48:13 -07:00
|
|
|
process.exit(1);
|
2010-11-01 18:23:13 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
server.listen(common.PORT, maybeMakeRequest);
|
|
|
|
|
|
|
|
console.log('Server running at http://localhost:8080');
|