0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/pummel/test-https-large-response.js

55 lines
1.3 KiB
JavaScript
Raw Normal View History

'use strict';
2011-01-28 04:27:25 +01:00
var common = require('../common');
var assert = require('assert');
var fs = require('fs');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
2011-01-28 04:27:25 +01:00
var https = require('https');
var options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
};
process.stdout.write('build body...');
var body = 'hello world\n'.repeat(1024 * 1024);
2011-01-28 04:27:25 +01:00
process.stdout.write('done\n');
var server = https.createServer(options, common.mustCall(function(req, res) {
2011-01-28 04:27:25 +01:00
console.log('got request');
res.writeHead(200, { 'content-type': 'text/plain' });
res.end(body);
}));
2011-01-28 04:27:25 +01:00
server.listen(common.PORT, common.mustCall(function() {
https.get({
port: common.PORT,
rejectUnauthorized: false
}, common.mustCall(function(res) {
console.log('response!');
2011-01-28 04:27:25 +01:00
var count = 0;
2011-01-28 04:27:25 +01:00
res.on('data', function(d) {
process.stdout.write('.');
count += d.length;
res.pause();
process.nextTick(function() {
res.resume();
});
2011-01-28 04:27:25 +01:00
});
res.on('end', common.mustCall(function(d) {
2011-01-28 04:27:25 +01:00
process.stdout.write('\n');
console.log('expected: ', body.length);
console.log(' got: ', count);
2011-01-28 04:27:25 +01:00
server.close();
assert.strictEqual(count, body.length);
}));
}));
}));