mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 09:52:21 +00:00

Make changes so that tests will pass when the comma-dangle settings applied to the rest of the code base are also applied to tests. PR-URL: https://github.com/nodejs/node/pull/37930 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
31 lines
819 B
JavaScript
31 lines
819 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const zlib = require('zlib');
|
|
|
|
const data = Buffer.concat([
|
|
zlib.gzipSync('abc'),
|
|
zlib.gzipSync('def'),
|
|
]);
|
|
|
|
const resultBuffers = [];
|
|
|
|
const unzip = zlib.createUnzip()
|
|
.on('error', (err) => {
|
|
assert.ifError(err);
|
|
})
|
|
.on('data', (data) => resultBuffers.push(data))
|
|
.on('finish', common.mustCall(() => {
|
|
assert.deepStrictEqual(Buffer.concat(resultBuffers).toString(), 'abcdef',
|
|
`'${Buffer.concat(resultBuffers).toString()}' ` +
|
|
'should match \'abcdef\' after ' +
|
|
'zipping and unzipping');
|
|
}));
|
|
|
|
for (let i = 0; i < data.length; i++) {
|
|
// Write each single byte individually.
|
|
unzip.write(Buffer.from([data[i]]));
|
|
}
|
|
|
|
unzip.end();
|