-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.test.js
120 lines (93 loc) · 2.81 KB
/
index.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
'use strict'
const { test } = require('ava')
const path = require('path')
const rmfr = require('rmfr')
const sharp = require('sharp')
const tempy = require('tempy')
const extractFrames = require('.')
const fixturesPath = path.join(__dirname, `media`)
test(`bubbles.gif => coalesce => png`, async (t) => {
const directory = tempy.directory()
const filename = 'test-%d.png'
const output = path.join(directory, filename)
const input = path.join(fixturesPath, 'bubbles.gif')
const results = await extractFrames({
input,
output
})
const frames = results.shape[0]
t.truthy(frames === 28)
for (let i = 0; i < frames; ++i) {
const file = output.replace('%d', i)
const image = await sharp(file).metadata()
t.deepEqual(image.width, 360)
t.deepEqual(image.height, 360)
t.deepEqual(image.channels, 4)
t.deepEqual(image.format, 'png')
}
await rmfr(directory)
})
test(`bubbles.gif => no coalesce => png`, async (t) => {
const directory = tempy.directory()
const filename = 'test-%d.png'
const output = path.join(directory, filename)
const input = path.join(fixturesPath, 'bubbles.gif')
const results = await extractFrames({
input,
output,
coalesce: false
})
const frames = results.shape[0]
t.truthy(frames === 28)
for (let i = 0; i < frames; ++i) {
const file = output.replace('%d', i)
const image = await sharp(file).metadata()
t.deepEqual(image.width, 360)
t.deepEqual(image.height, 360)
t.deepEqual(image.channels, 4)
t.deepEqual(image.format, 'png')
}
await rmfr(directory)
})
test(`ippo.gif => jpg`, async (t) => {
const directory = tempy.directory()
const filename = 'test-%d.jpg'
const output = path.join(directory, filename)
const input = path.join(fixturesPath, 'ippo.gif')
const results = await extractFrames({
input,
output
})
const frames = results.shape[0]
t.truthy(frames === 10)
for (let i = 0; i < frames; ++i) {
const file = output.replace('%d', i)
const image = await sharp(file).metadata()
t.deepEqual(image.width, 450)
t.deepEqual(image.height, 336)
t.deepEqual(image.channels, 3)
t.deepEqual(image.format, 'jpeg')
}
await rmfr(directory)
})
test(`kitten.gif => png`, async (t) => {
const directory = tempy.directory()
const filename = '%d.png'
const output = path.join(directory, filename)
const input = path.join(fixturesPath, 'kitten.gif')
const results = await extractFrames({
input,
output
})
const frames = results.shape[0]
t.truthy(frames === 20)
for (let i = 0; i < frames; ++i) {
const file = output.replace('%d', i)
const image = await sharp(file).metadata()
t.deepEqual(image.width, 350)
t.deepEqual(image.height, 180)
t.deepEqual(image.channels, 4)
t.deepEqual(image.format, 'png')
}
await rmfr(directory)
})