mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
02fe8215f0
common.js contains code that checks for variables leaking into the global namespace. Load common.js in all tests that do not intentionally leak variables. PR-URL: https://github.com/nodejs/node/pull/3095 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
25 lines
579 B
JavaScript
25 lines
579 B
JavaScript
'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 = new Buffer('H4sIAAAAAAAAA0tMHFgAAIw2K/GAAAAA', 'base64');
|
|
|
|
// Async
|
|
zlib.gunzip(encoded, function(err) {
|
|
assert.ok(err instanceof RangeError);
|
|
});
|
|
|
|
// Sync
|
|
assert.throws(function() {
|
|
zlib.gunzipSync(encoded);
|
|
}, RangeError);
|