mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 16:22:29 +00:00

Adds a new `../common/fixtures' module to begin normalizing `test/fixtures` use. Our test code is a bit inconsistent with regards to use of the fixtures directory. Some code uses `path.join()`, some code uses string concats, some other code uses template strings, etc. In mnay cases, significant duplication of code is seen when accessing fixture files, etc. This updates many (but by no means all) of the tests in the test suite to use the new consistent API. There are still many more to update, which would make an excelent Code-n-Learn exercise. PR-URL: https://github.com/nodejs/node/pull/14332 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
35 lines
976 B
JavaScript
35 lines
976 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const zlib = require('zlib');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const file = fixtures.readSync('person.jpg');
|
|
const chunkSize = 12 * 1024;
|
|
const opts = { level: 9, strategy: zlib.constants.Z_DEFAULT_STRATEGY };
|
|
const deflater = zlib.createDeflate(opts);
|
|
|
|
const chunk1 = file.slice(0, chunkSize);
|
|
const chunk2 = file.slice(chunkSize);
|
|
const blkhdr = Buffer.from([0x00, 0x5a, 0x82, 0xa5, 0x7d]);
|
|
const expected = Buffer.concat([blkhdr, chunk2]);
|
|
let actual;
|
|
|
|
deflater.write(chunk1, function() {
|
|
deflater.params(0, zlib.constants.Z_DEFAULT_STRATEGY, function() {
|
|
while (deflater.read());
|
|
deflater.end(chunk2, function() {
|
|
const bufs = [];
|
|
let buf;
|
|
while (buf = deflater.read())
|
|
bufs.push(buf);
|
|
actual = Buffer.concat(bufs);
|
|
});
|
|
});
|
|
while (deflater.read());
|
|
});
|
|
|
|
process.once('exit', function() {
|
|
assert.deepStrictEqual(actual, expected);
|
|
});
|