forked from imagemin/imagemin-mozjpeg
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.js
37 lines (29 loc) · 998 Bytes
/
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
import fs from 'fs';
import path from 'path';
import isJpg from 'is-jpg';
import isProgressive from 'is-progressive';
import pify from 'pify';
import test from 'ava';
import m from '.';
const fsP = pify(fs);
test('optimize a JPG', async t => {
const buf = await fsP.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 fsP.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 fsP.readFile(__filename);
const data = await m()(buf);
t.deepEqual(data, buf);
});
test('throw error when a JPG is corrupt', async t => {
const buf = await fsP.readFile(path.join(__dirname, 'fixture-corrupt.jpg'));
await t.throws(m()(buf), /Corrupt JPEG data/);
});