mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
return;
|
|
}
|
|
var https = require('https');
|
|
|
|
var Buffer = require('buffer').Buffer;
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
var options = {
|
|
key: fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem')),
|
|
cert: fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'))
|
|
};
|
|
|
|
var buf = Buffer.allocUnsafe(1024 * 1024);
|
|
|
|
var server = https.createServer(options, function(req, res) {
|
|
res.writeHead(200);
|
|
for (var i = 0; i < 50; i++) {
|
|
res.write(buf);
|
|
}
|
|
res.end();
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
var req = https.request({
|
|
method: 'POST',
|
|
port: common.PORT,
|
|
rejectUnauthorized: false
|
|
}, function(res) {
|
|
res.read(0);
|
|
|
|
setTimeout(function() {
|
|
// Read buffer should be somewhere near high watermark
|
|
// (i.e. should not leak)
|
|
assert(res._readableState.length < 100 * 1024);
|
|
process.exit(0);
|
|
}, 2000);
|
|
});
|
|
req.end();
|
|
});
|
|
|