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.
37 lines
958 B
37 lines
958 B
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const assert = require('assert');
|
|
const zlib = require('zlib');
|
|
|
|
// For raw deflate encoding, requests for 256-byte windows are rejected as
|
|
// invalid by zlib.
|
|
// (http://zlib.net/manual.html#Advanced)
|
|
assert.throws(() => {
|
|
zlib.createDeflateRaw({ windowBits: 8 });
|
|
}, /^Error: Init error$/);
|
|
|
|
// Regression tests for bugs in the validation logic.
|
|
|
|
assert.throws(() => {
|
|
zlib.createGzip({ chunkSize: 0 });
|
|
}, /^RangeError: Invalid chunk size: 0$/);
|
|
|
|
assert.throws(() => {
|
|
zlib.createGzip({ windowBits: 0 });
|
|
}, /^RangeError: Invalid windowBits: 0$/);
|
|
|
|
assert.throws(() => {
|
|
zlib.createGzip({ memLevel: 0 });
|
|
}, /^RangeError: Invalid memLevel: 0$/);
|
|
|
|
{
|
|
const stream = zlib.createGzip({ level: NaN });
|
|
assert.strictEqual(stream._level, zlib.constants.Z_DEFAULT_COMPRESSION);
|
|
}
|
|
|
|
{
|
|
const stream = zlib.createGzip({ strategy: NaN });
|
|
assert.strictEqual(stream._strategy, zlib.constants.Z_DEFAULT_STRATEGY);
|
|
}
|
|
|