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.
24 lines
580 B
24 lines
580 B
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
// Change kMaxLength for zlib to trigger the error without having to allocate
|
|
// large Buffers.
|
|
const buffer = require('buffer');
|
|
const oldkMaxLength = buffer.kMaxLength;
|
|
buffer.kMaxLength = 128;
|
|
const zlib = require('zlib');
|
|
buffer.kMaxLength = oldkMaxLength;
|
|
|
|
const encoded = Buffer.from('H4sIAAAAAAAAA0tMHFgAAIw2K/GAAAAA', 'base64');
|
|
|
|
// Async
|
|
zlib.gunzip(encoded, function(err) {
|
|
assert.ok(err instanceof RangeError);
|
|
});
|
|
|
|
// Sync
|
|
assert.throws(function() {
|
|
zlib.gunzipSync(encoded);
|
|
}, RangeError);
|
|
|