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

76 lines
2.4 KiB
JavaScript
Raw Normal View History

// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
'use strict';
const common = require('../common');
const assert = require('assert');
2011-01-28 04:27:25 +01:00
const fs = require('fs');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
const https = require('https');
2011-01-28 04:27:25 +01:00
const options = {
2011-01-28 04:27:25 +01:00
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
};
process.stdout.write('build body...');
const body = 'hello world\n'.repeat(1024 * 1024);
2011-01-28 04:27:25 +01:00
process.stdout.write('done\n');
const 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
let 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);
}));
}));
}));