mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 10:54:13 +00:00

A number of test files use IIFEs to separate distinct tests from each other in the same file. The project has been moving toward using block scopes and let/const in favor of IIFEs. This commit moves IIFE tests to block scopes. Some additional cleanup such as use of strictEqual() and common.mustCall() is also included. PR-URL: https://github.com/nodejs/node/pull/7694 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
29 lines
834 B
JavaScript
29 lines
834 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var zlib = require('zlib');
|
|
|
|
// Should raise an error, not trigger an assertion in src/node_zlib.cc
|
|
{
|
|
const stream = zlib.createInflate();
|
|
|
|
stream.on('error', common.mustCall(function(err) {
|
|
assert(/Missing dictionary/.test(err.message));
|
|
}));
|
|
|
|
// String "test" encoded with dictionary "dict".
|
|
stream.write(Buffer.from([0x78, 0xBB, 0x04, 0x09, 0x01, 0xA5]));
|
|
}
|
|
|
|
// Should raise an error, not trigger an assertion in src/node_zlib.cc
|
|
{
|
|
const stream = zlib.createInflate({ dictionary: Buffer.from('fail') });
|
|
|
|
stream.on('error', common.mustCall(function(err) {
|
|
assert(/Bad dictionary/.test(err.message));
|
|
}));
|
|
|
|
// String "test" encoded with dictionary "dict".
|
|
stream.write(Buffer.from([0x78, 0xBB, 0x04, 0x09, 0x01, 0xA5]));
|
|
}
|