mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
52bae222a3
The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
47 lines
1.0 KiB
JavaScript
47 lines
1.0 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('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();
|
|
});
|