mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
add inflate coverage tests
This commit is contained in:
parent
5b7c22f37a
commit
b7943beb1d
4 changed files with 144 additions and 4 deletions
|
@ -200,7 +200,7 @@ Deflate.prototype.push = function(data, mode) {
|
|||
if (strm.avail_out === 0 || strm.avail_in === 0) {
|
||||
this.onData(utils.shrinkBuf(strm.next_out, strm.next_out_index));
|
||||
}
|
||||
} while (strm.avail_in > 0 || strm.avail_out === 0);
|
||||
} while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== Z_STREAM_END);
|
||||
|
||||
// Finalize on the last chunk.
|
||||
if (_mode === Z_FINISH) {
|
||||
|
|
|
@ -193,13 +193,17 @@ Inflate.prototype.push = function(data, mode) {
|
|||
return false;
|
||||
}
|
||||
if (strm.next_out_index) {
|
||||
if (strm.avail_out === 0 || strm.avail_in === 0) {
|
||||
if (strm.avail_out === 0 || strm.avail_in === 0 || status === c.Z_STREAM_END) {
|
||||
this.onData(utils.shrinkBuf(strm.next_out, strm.next_out_index));
|
||||
}
|
||||
}
|
||||
} while (strm.avail_in > 0 || strm.avail_out === 0);
|
||||
} while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== c.Z_STREAM_END);
|
||||
|
||||
_mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH);
|
||||
if (status === c.Z_STREAM_END) {
|
||||
_mode = c.Z_FINISH;
|
||||
} else {
|
||||
_mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH);
|
||||
}
|
||||
// Finalize on the last chunk.
|
||||
if (_mode === c.Z_FINISH) {
|
||||
status = zlib_inflate.inflateEnd(this.strm);
|
||||
|
|
BIN
test/fixtures/gzip-joined.gz
vendored
Normal file
BIN
test/fixtures/gzip-joined.gz
vendored
Normal file
Binary file not shown.
|
@ -10,6 +10,7 @@ var assert = require('assert');
|
|||
|
||||
|
||||
var c = require('../lib/zlib/constants');
|
||||
var pako_utils = require('../lib/zlib/utils');
|
||||
var pako = require('../index');
|
||||
|
||||
|
||||
|
@ -64,6 +65,117 @@ describe('Inflate states', function() {
|
|||
});
|
||||
});
|
||||
|
||||
describe('Inflate cover', function() {
|
||||
it('invalid stored block lengths', function() {
|
||||
testInflate('0 0 0 0 0', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('fixed', function() {
|
||||
testInflate('3 0', -15, c.Z_OK);
|
||||
});
|
||||
it('invalid block type', function() {
|
||||
testInflate('6', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('stored', function() {
|
||||
testInflate('1 1 0 fe ff 0', -15, c.Z_OK);
|
||||
});
|
||||
it('too many length or distance symbols', function() {
|
||||
testInflate('fc 0 0', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('invalid code lengths set', function() {
|
||||
testInflate('4 0 fe ff', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('invalid bit length repeat', function() {
|
||||
testInflate('4 0 24 49 0', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('invalid bit length repeat', function() {
|
||||
testInflate('4 0 24 e9 ff ff', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('invalid code -- missing end-of-block', function() {
|
||||
testInflate('4 0 24 e9 ff 6d', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('invalid literal/lengths set', function() {
|
||||
testInflate('4 80 49 92 24 49 92 24 71 ff ff 93 11 0', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('invalid literal/length code', function() {
|
||||
testInflate('4 80 49 92 24 49 92 24 f b4 ff ff c3 84', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('invalid distance code', function() {
|
||||
testInflate('2 7e ff ff', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('invalid distance too far back', function() {
|
||||
testInflate('c c0 81 0 0 0 0 0 90 ff 6b 4 0', -15, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('incorrect data check', function() {
|
||||
testInflate('1f 8b 8 0 0 0 0 0 0 0 3 0 0 0 0 1', 47, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('incorrect length check', function() {
|
||||
testInflate('1f 8b 8 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 1', 47, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('pull 17', function() {
|
||||
testInflate('5 c0 21 d 0 0 0 80 b0 fe 6d 2f 91 6c', -15, c.Z_OK);
|
||||
});
|
||||
it('long code', function() {
|
||||
testInflate('5 e0 81 91 24 cb b2 2c 49 e2 f 2e 8b 9a 47 56 9f fb fe ec d2 ff 1f', -15, c.Z_OK);
|
||||
});
|
||||
it('length extra', function() {
|
||||
testInflate('ed c0 1 1 0 0 0 40 20 ff 57 1b 42 2c 4f', -15, c.Z_OK);
|
||||
});
|
||||
it('long distance and extra', function() {
|
||||
testInflate('ed cf c1 b1 2c 47 10 c4 30 fa 6f 35 1d 1 82 59 3d fb be 2e 2a fc f c', -15, c.Z_OK);
|
||||
});
|
||||
it('window end', function() {
|
||||
testInflate('ed c0 81 0 0 0 0 80 a0 fd a9 17 a9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6',
|
||||
-15, c.Z_OK);
|
||||
});
|
||||
it('inflate_fast TYPE return', function() {
|
||||
testInflate('2 8 20 80 0 3 0', -15, c.Z_OK);
|
||||
});
|
||||
it('window wrap', function() {
|
||||
testInflate('63 18 5 40 c 0', -8, c.Z_OK);
|
||||
});
|
||||
});
|
||||
|
||||
describe('Inflate fast', function() {
|
||||
it('fast length extra bits', function() {
|
||||
testInflate('e5 e0 81 ad 6d cb b2 2c c9 01 1e 59 63 ae 7d ee fb 4d fd b5 35 41 68' +
|
||||
' ff 7f 0f 0 0 0', -8, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('fast distance extra bits', function() {
|
||||
testInflate('25 fd 81 b5 6d 59 b6 6a 49 ea af 35 6 34 eb 8c b9 f6 b9 1e ef 67 49' +
|
||||
' 50 fe ff ff 3f 0 0', -8, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('fast invalid literal/length code', function() {
|
||||
testInflate('1b 7 0 0 0 0 0', -8, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('fast 2nd level codes and too far back', function() {
|
||||
testInflate('d c7 1 ae eb 38 c 4 41 a0 87 72 de df fb 1f b8 36 b1 38 5d ff ff 0', -8, c.Z_DATA_ERROR);
|
||||
});
|
||||
it('very common case', function() {
|
||||
testInflate('63 18 5 8c 10 8 0 0 0 0', -8, c.Z_OK);
|
||||
});
|
||||
it('contiguous and wrap around window', function() {
|
||||
testInflate('63 60 60 18 c9 0 8 18 18 18 26 c0 28 0 29 0 0 0', -8, c.Z_OK);
|
||||
});
|
||||
it('copy direct from output', function() {
|
||||
testInflate('63 0 3 0 0 0 0 0', -8, c.Z_OK);
|
||||
});
|
||||
});
|
||||
|
||||
describe('Inflate support', function() {
|
||||
it('force window allocation', function() {
|
||||
testInflate('63 0', -15, c.Z_OK);
|
||||
});
|
||||
it('force window replacement', function() {
|
||||
testInflate('63 18 5', -15, c.Z_OK);
|
||||
});
|
||||
it('force split window update', function() {
|
||||
testInflate('63 18 68 30 d0 0 0', -15, c.Z_OK);
|
||||
});
|
||||
it('use fixed blocks', function() {
|
||||
testInflate('3 0', -15, c.Z_OK);
|
||||
});
|
||||
});
|
||||
|
||||
describe('Inflate gzip header', function() {
|
||||
it('Check headers content from prepared file', function() {
|
||||
var data = fs.readFileSync(path.join(__dirname, 'fixtures/gzip-headers.gz'));
|
||||
|
@ -74,4 +186,28 @@ describe('Inflate gzip header', function() {
|
|||
assert.equal(inflator.header.comment, 'test comment');
|
||||
assert.equal(a2s(inflator.header.extra), 'test extra');
|
||||
});
|
||||
});
|
||||
|
||||
describe('Inflate gzip joined', function() {
|
||||
it('Check content from prepared file', function() {
|
||||
var inflator, strm, _in, len, pos = 0, i = 0;
|
||||
var data = fs.readFileSync(path.join(__dirname, 'fixtures/gzip-joined.gz'));
|
||||
|
||||
do {
|
||||
len = data.length - pos;
|
||||
_in = new pako_utils.Buf8(len);
|
||||
pako_utils.arraySet(_in, data, pos, len, 0);
|
||||
|
||||
inflator = new pako.Inflate();
|
||||
strm = inflator.strm;
|
||||
inflator.push(_in, true);
|
||||
|
||||
assert(!inflator.err, inflator.msg);
|
||||
|
||||
pos += strm.next_in_index;
|
||||
i++;
|
||||
} while (strm.avail_in);
|
||||
|
||||
assert(i === 2, 'invalid blobs count');
|
||||
});
|
||||
});
|
Loading…
Add table
Reference in a new issue