mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
Added basic tests for inflate with dictionary as Uint8Array or ArrayBuffer
This commit is contained in:
parent
cfc92c2fb8
commit
b4f1c205ef
1 changed files with 12 additions and 0 deletions
|
@ -197,4 +197,16 @@ describe('Inflate with dictionary', function () {
|
|||
var spdyDict = require('fs').readFileSync(require('path').join(__dirname, 'fixtures', 'spdy_dict.txt'));
|
||||
testInflate(samples, { raw: true, dictionary: spdyDict }, { raw: true, dictionary: spdyDict });
|
||||
});
|
||||
|
||||
it('tests dictionary as Uint8Array', function () {
|
||||
var dict = new Uint8Array(100);
|
||||
for (var i = 0; i < 100; i++) dict[i] = Math.random() * 256;
|
||||
testInflate(samples, { dictionary: dict }, { dictionary: dict });
|
||||
});
|
||||
|
||||
it('tests dictionary as ArrayBuffer', function () {
|
||||
var dict = new Uint8Array(100);
|
||||
for (var i = 0; i < 100; i++) dict[i] = Math.random() * 256;
|
||||
testInflate(samples, { dictionary: dict.buffer }, { dictionary: dict });
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue