add4b0ab8cc0ec6 made the assumption that compressed data would never lead to an empty decompressed stream. Fix that by explicitly checking the number of read bytes. PR-URL: https://github.com/nodejs/node/pull/17042 Fixes: https://github.com/nodejs/node/issues/17041 Refs: https://github.com/nodejs/node/pull/13322 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
27 lines
978 B
JavaScript
27 lines
978 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const zlib = require('zlib');
|
|
const { inspect, promisify } = require('util');
|
|
const assert = require('assert');
|
|
const emptyBuffer = new Buffer(0);
|
|
|
|
common.crashOnUnhandledRejection();
|
|
|
|
(async function() {
|
|
for (const [ compress, decompress, method ] of [
|
|
[ zlib.deflateRawSync, zlib.inflateRawSync, 'raw sync' ],
|
|
[ zlib.deflateSync, zlib.inflateSync, 'deflate sync' ],
|
|
[ zlib.gzipSync, zlib.gunzipSync, 'gzip sync' ],
|
|
[ promisify(zlib.deflateRaw), promisify(zlib.inflateRaw), 'raw' ],
|
|
[ promisify(zlib.deflate), promisify(zlib.inflate), 'deflate' ],
|
|
[ promisify(zlib.gzip), promisify(zlib.gunzip), 'gzip' ]
|
|
]) {
|
|
const compressed = await compress(emptyBuffer);
|
|
const decompressed = await decompress(compressed);
|
|
assert.deepStrictEqual(
|
|
emptyBuffer, decompressed,
|
|
`Expected ${inspect(compressed)} to match ${inspect(decompressed)} ` +
|
|
`to match for ${method}`);
|
|
}
|
|
})();
|