-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
39 lines (31 loc) · 1.06 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const {promisify} = require('util');
const fs = require('fs');
const path = require('path');
const isJpg = require('is-jpg');
const isProgressive = require('is-progressive');
const test = require('ava');
const m = require('.');
const readFile = promisify(fs.readFile);
test('optimize a JPG', async t => {
const buf = await readFile(path.join(__dirname, 'fixture.jpg'));
const data = await m()(buf);
t.true(data.length < buf.length);
t.true(isJpg(data));
t.true(isProgressive.buffer(data));
});
test('support mozjpeg options', async t => {
const buf = await readFile(path.join(__dirname, 'fixture.jpg'));
const data = await m({progressive: false})(buf);
t.false(isProgressive.buffer(data));
});
test('skip optimizing a non-JPG file', async t => {
const buf = await readFile(__filename);
const data = await m()(buf);
t.deepEqual(data, buf);
});
test('throw error when a JPG is corrupt', async t => {
const buf = await readFile(path.join(__dirname, 'fixture-corrupt.jpg'));
await t.throwsAsync(async () => {
await m()(buf);
}, {message: /Corrupt JPEG data/});
});