@pdfme/pdf-lib
Version:
Create and modify PDF files with JavaScript
21 lines (15 loc) • 641 B
text/typescript
import fs from 'fs';
import FlateStream from '../../../src/core/streams/FlateStream';
import Stream from '../../../src/core/streams/Stream';
const DIR = `${__dirname}/data/flate`;
const FILES = ['1', '2', '3', '4', '5', '6', '7'];
describe(`FlateStream`, () => {
FILES.forEach((file) => {
it(`can decode flate encoded data (${file})`, () => {
const encoded = new Uint8Array(fs.readFileSync(`${DIR}/${file}.encoded`));
const decoded = new Uint8Array(fs.readFileSync(`${DIR}/${file}.decoded`));
const stream = new FlateStream(new Stream(encoded));
expect(stream.decode()).toEqual(decoded);
});
});
});