Merge branch 'truncation' into webcrypto
This commit is contained in:
commit
e77eb1de13
2 changed files with 1925 additions and 0 deletions
15
js/test/Truncation.js
Normal file
15
js/test/Truncation.js
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
'use strict';
|
||||||
|
var common = require('../common');
|
||||||
|
|
||||||
|
describe('Compression', function () {
|
||||||
|
it('does not truncate messages', function () {
|
||||||
|
var message = fs.readFileSync('test/compression-sample.txt', 'utf8');
|
||||||
|
assert.strictEqual(
|
||||||
|
message,
|
||||||
|
Base64.btou( RawDeflate.inflate(
|
||||||
|
RawDeflate.deflate( Base64.utob(message) )
|
||||||
|
) )
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
1910
js/test/compression-sample.txt
Normal file
1910
js/test/compression-sample.txt
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue