mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
2d2986ae72
* Make common.skip() exit. Also add common.printSkipMessage() for partial skips. * Don't make needless things before skip PR-URL: https://github.com/nodejs/node/pull/14021 Fixes: https://github.com/nodejs/node/issues/14016 Reviewed-By: Refael Ackermann <refack@gmail.com>
95 lines
2.1 KiB
JavaScript
95 lines
2.1 KiB
JavaScript
'use strict';
|
|
// http://groups.google.com/group/nodejs/browse_thread/thread/f66cd3c960406919
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
|
|
if (process.argv[2] === 'request') {
|
|
const http = require('http');
|
|
const options = {
|
|
port: +process.argv[3],
|
|
path: '/'
|
|
};
|
|
|
|
http.get(options, (res) => {
|
|
res.pipe(process.stdout);
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
if (process.argv[2] === 'shasum') {
|
|
const crypto = require('crypto');
|
|
const shasum = crypto.createHash('sha1');
|
|
process.stdin.on('data', (d) => {
|
|
shasum.update(d);
|
|
});
|
|
|
|
process.stdin.on('close', () => {
|
|
process.stdout.write(shasum.digest('hex'));
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
const http = require('http');
|
|
const cp = require('child_process');
|
|
|
|
const filename = require('path').join(common.tmpDir, 'big');
|
|
let server;
|
|
|
|
function executeRequest(cb) {
|
|
cp.exec([`"${process.execPath}"`,
|
|
`"${__filename}"`,
|
|
'request',
|
|
server.address().port,
|
|
'|',
|
|
`"${process.execPath}"`,
|
|
`"${__filename}"`,
|
|
'shasum' ].join(' '),
|
|
(err, stdout, stderr) => {
|
|
assert.ifError(err);
|
|
assert.strictEqual('8c206a1a87599f532ce68675536f0b1546900d7a',
|
|
stdout.slice(0, 40));
|
|
cb();
|
|
}
|
|
);
|
|
}
|
|
|
|
|
|
common.refreshTmpDir();
|
|
|
|
const ddcmd = common.ddCommand(filename, 10240);
|
|
|
|
cp.exec(ddcmd, function(err, stdout, stderr) {
|
|
assert.ifError(err);
|
|
server = http.createServer(function(req, res) {
|
|
res.writeHead(200);
|
|
|
|
// Create the subprocess
|
|
const cat = cp.spawn('cat', [filename]);
|
|
|
|
// Stream the data through to the response as binary chunks
|
|
cat.stdout.on('data', (data) => {
|
|
res.write(data);
|
|
});
|
|
|
|
cat.stdout.on('end', () => res.end());
|
|
|
|
// End the response on exit (and log errors)
|
|
cat.on('exit', (code) => {
|
|
if (code !== 0) {
|
|
console.error(`subprocess exited with code ${code}`);
|
|
process.exit(1);
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
server.listen(0, () => {
|
|
executeRequest(() => server.close());
|
|
});
|
|
});
|