-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: remove need to make fs call for zlib test
PR-URL: #54814 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
- Loading branch information
Showing
1 changed file
with
28 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,38 @@ | ||
'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 = 16; | ||
const opts = { level: 0 }; | ||
const deflater = zlib.createDeflate(opts); | ||
const assert = require('node:assert'); | ||
const zlib = require('node:zlib'); | ||
const { test } = require('node:test'); | ||
|
||
test('zlib flush', async () => { | ||
const { promise, resolve } = Promise.withResolvers(); | ||
|
||
const chunk = file.slice(0, chunkSize); | ||
const expectedNone = Buffer.from([0x78, 0x01]); | ||
const blkhdr = Buffer.from([0x00, 0x10, 0x00, 0xef, 0xff]); | ||
const adler32 = Buffer.from([0x00, 0x00, 0x00, 0xff, 0xff]); | ||
const expectedFull = Buffer.concat([blkhdr, chunk, adler32]); | ||
let actualNone; | ||
let actualFull; | ||
const opts = { level: 0 }; | ||
const deflater = zlib.createDeflate(opts); | ||
const chunk = Buffer.from('/9j/4AAQSkZJRgABAQEASA==', 'base64'); | ||
const expectedNone = Buffer.from([0x78, 0x01]); | ||
const blkhdr = Buffer.from([0x00, 0x10, 0x00, 0xef, 0xff]); | ||
const adler32 = Buffer.from([0x00, 0x00, 0x00, 0xff, 0xff]); | ||
const expectedFull = Buffer.concat([blkhdr, chunk, adler32]); | ||
let actualNone; | ||
let actualFull; | ||
|
||
deflater.write(chunk, function() { | ||
deflater.flush(zlib.constants.Z_NO_FLUSH, function() { | ||
actualNone = deflater.read(); | ||
deflater.flush(function() { | ||
const bufs = []; | ||
let buf; | ||
while ((buf = deflater.read()) !== null) | ||
bufs.push(buf); | ||
actualFull = Buffer.concat(bufs); | ||
deflater.write(chunk, function() { | ||
deflater.flush(zlib.constants.Z_NO_FLUSH, function() { | ||
actualNone = deflater.read(); | ||
deflater.flush(function() { | ||
const bufs = []; | ||
let buf; | ||
while ((buf = deflater.read()) !== null) | ||
bufs.push(buf); | ||
actualFull = Buffer.concat(bufs); | ||
resolve(); | ||
}); | ||
}); | ||
}); | ||
}); | ||
|
||
process.once('exit', function() { | ||
await promise; | ||
assert.deepStrictEqual(actualNone, expectedNone); | ||
assert.deepStrictEqual(actualFull, expectedFull); | ||
}); |