mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
85ab4a5f12
Several changes: * Soft-Deprecate Buffer() constructors * Add `Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()` * Add `--zero-fill-buffers` command line option * Add byteOffset and length to `new Buffer(arrayBuffer)` constructor * buffer.fill('') previously had no effect, now zero-fills * Update the docs PR-URL: https://github.com/nodejs/node/pull/4682 Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.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) {
|
|
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();
|
|
});
|