mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-05 03:11:04 +01:00
fix inflate data check & enable inflate ungzip test with method set directly
This commit is contained in:
parent
70a4a114e1
commit
3f30aa8250
3 changed files with 7 additions and 11 deletions
|
@ -1371,7 +1371,7 @@ function inflate(strm, flush) {
|
||||||
|
|
||||||
}
|
}
|
||||||
_out = left;
|
_out = left;
|
||||||
if ((state.flags ? hold : ZSWAP32(hold)) !== state.check) {
|
if ((state.flags ? hold : ZSWAP32(hold) >>> 0) !== state.check >>> 0) {
|
||||||
strm.msg = 'incorrect data check';
|
strm.msg = 'incorrect data check';
|
||||||
state.mode = BAD;
|
state.mode = BAD;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -130,7 +130,7 @@ function testDeflate(zlib_factory, pako_deflate, samples, options, callback) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function testInflate(samples, options, callback) {
|
function testInflate(samples, options, callback, is_gzip) {
|
||||||
var name, data, deflated, inflated, inflate_options;
|
var name, data, deflated, inflated, inflate_options;
|
||||||
|
|
||||||
// inflate options have windowBits = 0 to force autodetect window size
|
// inflate options have windowBits = 0 to force autodetect window size
|
||||||
|
@ -142,7 +142,7 @@ function testInflate(samples, options, callback) {
|
||||||
|
|
||||||
for (name in samples) {
|
for (name in samples) {
|
||||||
data = samples[name];
|
data = samples[name];
|
||||||
deflated = pako.deflate(data, options);
|
deflated = is_gzip ? pako.gzip(data, options) : pako.deflate(data, options);
|
||||||
|
|
||||||
// with untyped arrays
|
// with untyped arrays
|
||||||
pako_utils.setTyped(false);
|
pako_utils.setTyped(false);
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
|
|
||||||
var helpers = require('./helpers');
|
var helpers = require('./helpers');
|
||||||
var testInflate = helpers.testInflate;
|
var testInflate = helpers.testInflate;
|
||||||
var pako = require('../index');
|
|
||||||
|
|
||||||
|
|
||||||
var samples = helpers.loadSamples();
|
var samples = helpers.loadSamples();
|
||||||
|
@ -26,15 +25,12 @@ describe('Inflate defaults', function () {
|
||||||
|
|
||||||
|
|
||||||
describe('Inflate ungzip', function () {
|
describe('Inflate ungzip', function () {
|
||||||
var orig = samples.lorem_cat;
|
it.skip('with autodetect', function(done) {
|
||||||
var gzipped = pako.gzip(samples.lorem_cat);
|
testInflate(samples, {}, done, true);
|
||||||
|
|
||||||
it.skip('ungzip with autodetect', function(done) {
|
|
||||||
done(helpers.cmp(orig, pako.inflate(gzipped)));
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it.skip('ungzip with method set directly', function(done) {
|
it('with method set directly', function(done) {
|
||||||
done(helpers.cmp(orig, pako.inflate(gzipped, { windowBits: 15 + 16 })));
|
testInflate(samples, { windowBits: 15 + 16 }, done, true);
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue