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.
22 lines
525 B
22 lines
525 B
'use strict';
|
|
|
|
const assert = require('assert');
|
|
|
|
// Change kMaxLength for zlib to trigger the error
|
|
// without having to allocate 1GB of buffers
|
|
const smalloc = process.binding('smalloc');
|
|
smalloc.kMaxLength = 128;
|
|
const zlib = require('zlib');
|
|
smalloc.kMaxLength = 0x3fffffff;
|
|
|
|
const encoded = new Buffer('H4sIAAAAAAAAA0tMHFgAAIw2K/GAAAAA', 'base64');
|
|
|
|
// Async
|
|
zlib.gunzip(encoded, function(err) {
|
|
assert.ok(err instanceof RangeError);
|
|
});
|
|
|
|
// Sync
|
|
assert.throws(function() {
|
|
zlib.gunzipSync(encoded);
|
|
}, RangeError);
|
|
|