-
Notifications
You must be signed in to change notification settings - Fork 123
/
avif_test.go
582 lines (527 loc) · 15.9 KB
/
avif_test.go
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
package lilliput
import (
"math"
"os"
"reflect"
"testing"
"time"
)
// Test Suite Setup
// ----------------------------------------
func TestAvifOperations(t *testing.T) {
t.Run("Basic Operations", func(t *testing.T) {
t.Run("NewAvifDecoder", testNewAvifDecoder)
t.Run("AvifDecoder_Header", testAvifDecoderHeader)
t.Run("AvifDecoder_Duration", testAvifDecoderDuration)
t.Run("NewAvifEncoder", testNewAvifEncoder)
t.Run("AvifDecoder_DecodeTo", testAvifDecoderDecodeTo)
t.Run("AvifEncoder_Encode", testAvifEncoderEncode)
})
t.Run("Conversion Operations", func(t *testing.T) {
t.Run("AvifToWebP_Conversion", testAvifToWebPConversion)
t.Run("NewAvifDecoderWithAnimatedSource", testNewAvifDecoderWithAnimatedSource)
t.Run("NewAvifEncoderWithWebPAnimatedSource", testNewAvifEncoderWithWebPAnimatedSource)
t.Run("NewAvifEncoderWithVideoSource", testNewAvifEncoderWithVideoSource)
})
}
// Basic Decoder Tests
// ----------------------------------------
func testNewAvifDecoder(t *testing.T) {
testAvifImage, err := os.ReadFile("testdata/colors_sdr_srgb.avif")
if err != nil {
t.Fatalf("Unexpected error while reading AVIF image: %v", err)
}
decoder, err := newAvifDecoder(testAvifImage)
if err != nil {
t.Fatalf("Unexpected error while decoding AVIF image data: %v", err)
}
defer decoder.Close()
}
func testAvifDecoderHeader(t *testing.T) {
testAvifImage, err := os.ReadFile("testdata/colors_sdr_srgb.avif")
if err != nil {
t.Fatalf("Unexpected error while reading AVIF image: %v", err)
}
decoder, err := newAvifDecoder(testAvifImage)
if err != nil {
t.Fatalf("Unexpected error while decoding AVIF image data: %v", err)
}
defer decoder.Close()
header, err := decoder.Header()
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if reflect.TypeOf(header).String() != "*lilliput.ImageHeader" {
t.Fatalf("Expected type *lilliput.ImageHeader, got %v", reflect.TypeOf(header))
}
}
func testAvifDecoderDuration(t *testing.T) {
testCases := []struct {
name string
filename string
expectAnimated bool
wantDuration float64
}{
{
name: "Static AVIF",
filename: "testdata/colors_sdr_srgb.avif",
expectAnimated: false,
wantDuration: 0,
},
{
name: "Animated AVIF",
filename: "testdata/colors-animated-8bpc-alpha-exif-xmp.avif",
expectAnimated: true,
wantDuration: 0.833,
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
testAvifImage, err := os.ReadFile(tc.filename)
if err != nil {
t.Fatalf("Failed to read AVIF image: %v", err)
}
decoder, err := newAvifDecoder(testAvifImage)
if err != nil {
t.Fatalf("Failed to create decoder: %v", err)
}
defer decoder.Close()
if tc.expectAnimated {
duration := decoder.Duration().Seconds()
if duration <= 0 {
t.Errorf("Expected animated AVIF with duration > 0, got %v", duration)
}
if !almostEqual(duration, tc.wantDuration, 0.01) {
t.Errorf("Expected duration %v, got %v", tc.wantDuration, duration)
}
} else {
if decoder.Duration().Seconds() != 0 {
t.Errorf("Expected static AVIF with duration 0, got %v", decoder.Duration().Seconds())
}
}
})
}
}
// Basic Encoder Tests
// ----------------------------------------
func testNewAvifEncoder(t *testing.T) {
testCases := []struct {
name string
filename string
}{
{"No ICC Profile", "testdata/colors_sdr_srgb.avif"},
{"With ICC Profile", "testdata/paris_icc_exif_xmp.avif"},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
testAvifImage, err := os.ReadFile(tc.filename)
if err != nil {
t.Fatalf("Unexpected error while reading AVIF image: %v", err)
}
decoder, err := newAvifDecoder(testAvifImage)
if err != nil {
t.Fatalf("Unexpected error while decoding AVIF image data: %v", err)
}
defer decoder.Close()
dstBuf := make([]byte, destinationBufferSize)
encoder, err := newAvifEncoder(decoder, dstBuf)
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
defer encoder.Close()
})
}
}
// Decode/Encode Operation Tests
// ----------------------------------------
func testAvifDecoderDecodeTo(t *testing.T) {
testCases := []struct {
name string
filename string
}{
{"No ICC Profile", "testdata/colors_sdr_srgb.avif"},
{"With ICC Profile", "testdata/paris_icc_exif_xmp.avif"},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
testAvifImage, err := os.ReadFile(tc.filename)
if err != nil {
t.Fatalf("Failed to read AVIF image: %v", err)
}
decoder, err := newAvifDecoder(testAvifImage)
if err != nil {
t.Fatalf("Failed to create a new AVIF decoder: %v", err)
}
defer decoder.Close()
header, err := decoder.Header()
if err != nil {
t.Fatalf("Failed to get the header: %v", err)
}
framebuffer := NewFramebuffer(header.width, header.height)
if err = decoder.DecodeTo(framebuffer); err != nil {
t.Errorf("DecodeTo failed unexpectedly: %v", err)
}
})
}
t.Run("Invalid Framebuffer", func(t *testing.T) {
testAvifImage, _ := os.ReadFile("testdata/colors_sdr_srgb.avif")
decoder, _ := newAvifDecoder(testAvifImage)
defer decoder.Close()
if err := decoder.DecodeTo(nil); err == nil {
t.Error("DecodeTo with nil framebuffer should fail, but it did not")
}
})
}
func testAvifEncoderEncode(t *testing.T) {
testCases := []struct {
name string
filename string
quality int
}{
{"No ICC Profile", "testdata/colors_sdr_srgb.avif", 60},
{"With ICC Profile", "testdata/paris_icc_exif_xmp.avif", 80},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
testAvifImage, err := os.ReadFile(tc.filename)
if err != nil {
t.Fatalf("Failed to read AVIF image: %v", err)
}
decoder, err := newAvifDecoder(testAvifImage)
if err != nil {
t.Fatalf("Failed to create a new AVIF decoder: %v", err)
}
defer decoder.Close()
header, err := decoder.Header()
if err != nil {
t.Fatalf("Failed to get the header: %v", err)
}
framebuffer := NewFramebuffer(header.width, header.height)
if err = framebuffer.resizeMat(header.width, header.height, header.pixelType); err != nil {
t.Fatalf("Failed to resize the framebuffer: %v", err)
}
dstBuf := make([]byte, destinationBufferSize)
encoder, err := newAvifEncoder(decoder, dstBuf)
if err != nil {
t.Fatalf("Failed to create a new AVIF encoder: %v", err)
}
defer encoder.Close()
options := map[int]int{AvifQuality: tc.quality, AvifSpeed: 10}
encodedData, err := encoder.Encode(framebuffer, options)
if err != nil {
t.Fatalf("Encode failed unexpectedly: %v", err)
}
if encodedData, err = encoder.Encode(nil, options); err != nil {
t.Fatalf("Encode of empty frame failed unexpectedly: %v", err)
}
if len(encodedData) == 0 {
t.Fatalf("Encoded data is empty, but it should not be")
}
})
}
}
// Conversion Tests
// ----------------------------------------
func testAvifToWebPConversion(t *testing.T) {
testCases := []struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
}{
{
name: "AVIF to WebP conversion with no ICC Profile",
inputPath: "testdata/colors_sdr_srgb.avif",
outputPath: "testdata/out/colors_sdr_srgb_converted.webp",
width: 100,
height: 100,
quality: 80,
resizeMethod: ImageOpsFit,
},
{
name: "AVIF to WebP conversion with ICC Profile",
inputPath: "testdata/paris_icc_exif_xmp.avif",
outputPath: "testdata/out/paris_icc_exif_xmp_converted.webp",
width: 200,
height: 150,
quality: 60,
resizeMethod: ImageOpsFit,
},
}
runConversionTest(t, testCases, func(tc struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
}) (Decoder, error) {
testAvifImage, err := os.ReadFile(tc.inputPath)
if err != nil {
return nil, err
}
return newAvifDecoder(testAvifImage)
}, ".webp", WebpQuality)
}
// Animation Tests
// ----------------------------------------
func testNewAvifDecoderWithAnimatedSource(t *testing.T) {
testCases := []struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
outputType string
disableAnimatedOutput bool
}{
{
name: "Animated AVIF to WebP encoding",
inputPath: "testdata/colors-animated-8bpc-alpha-exif-xmp.avif",
outputPath: "testdata/out/animated_sample_out.webp",
width: 100,
height: 100,
quality: 60,
resizeMethod: ImageOpsFit,
outputType: ".webp",
disableAnimatedOutput: false,
},
{
name: "Animated AVIF to AVIF encoding",
inputPath: "testdata/colors-animated-8bpc-alpha-exif-xmp.avif",
outputPath: "testdata/out/animated_sample_out.avif",
width: 100,
height: 100,
quality: 60,
resizeMethod: ImageOpsFit,
outputType: ".avif",
disableAnimatedOutput: false,
},
}
runAnimationTest(t, testCases, func(tc struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
outputType string
disableAnimatedOutput bool
}) (Decoder, error) {
testAvifImage, err := os.ReadFile(tc.inputPath)
if err != nil {
return nil, err
}
return newAvifDecoder(testAvifImage)
})
}
func testNewAvifEncoderWithWebPAnimatedSource(t *testing.T) {
testCases := []struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
outputType string
disableAnimatedOutput bool
}{
{
name: "Animated WebP to Animated AVIF encoding",
inputPath: "testdata/animated-webp-supported.webp",
outputPath: "testdata/out/animated-webp-supported_out_fit.avif",
width: 400,
height: 400,
quality: 95,
resizeMethod: ImageOpsFit,
outputType: ".avif",
disableAnimatedOutput: false,
},
}
runAnimationTest(t, testCases, func(tc struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
outputType string
disableAnimatedOutput bool
}) (Decoder, error) {
testWebpImage, err := os.ReadFile(tc.inputPath)
if err != nil {
return nil, err
}
return newWebpDecoder(testWebpImage)
})
}
func testNewAvifEncoderWithVideoSource(t *testing.T) {
testCases := []struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
outputType string
disableAnimatedOutput bool
}{
{
name: "MP4 Video to Resized AVIF",
inputPath: "testdata/big_buck_bunny_480p_10s_std.mp4",
outputPath: "testdata/out/video_resized.avif",
width: 320,
height: 240,
quality: 60,
resizeMethod: ImageOpsFit,
outputType: ".avif",
disableAnimatedOutput: true,
},
}
runAnimationTest(t, testCases, func(tc struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
outputType string
disableAnimatedOutput bool
}) (Decoder, error) {
testVideoData, err := os.ReadFile(tc.inputPath)
if err != nil {
return nil, err
}
return newAVCodecDecoder(testVideoData)
})
}
// Helper Functions
// ----------------------------------------
func runConversionTest(t *testing.T, testCases interface{}, decoderFactory interface{}, outputType string, qualityType int) {
cases := testCases.([]struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
})
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
decoder, err := decoderFactory.(func(struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
}) (Decoder, error))(tc)
if err != nil {
t.Fatalf("Failed to create decoder: %v", err)
}
defer decoder.Close()
dstBuf := make([]byte, destinationBufferSize)
options := &ImageOptions{
FileType: outputType,
NormalizeOrientation: true,
EncodeOptions: map[int]int{qualityType: tc.quality},
ResizeMethod: tc.resizeMethod,
Width: tc.width,
Height: tc.height,
EncodeTimeout: time.Second * 30,
}
ops := NewImageOps(2000)
defer ops.Close()
newDst, err := ops.Transform(decoder, options, dstBuf)
if err != nil {
t.Fatalf("Transform failed: %v", err)
}
if len(newDst) == 0 {
t.Fatal("Transform returned empty data")
}
ensureOutputDir(t)
if err = os.WriteFile(tc.outputPath, newDst, 0644); err != nil {
t.Fatalf("Failed to write output file: %v", err)
}
})
}
}
func runAnimationTest(t *testing.T, testCases interface{}, decoderFactory interface{}) {
cases := testCases.([]struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
outputType string
disableAnimatedOutput bool
})
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
decoder, err := decoderFactory.(func(struct {
name string
inputPath string
outputPath string
width int
height int
quality int
resizeMethod ImageOpsSizeMethod
outputType string
disableAnimatedOutput bool
}) (Decoder, error))(tc)
if err != nil {
t.Fatalf("Failed to create decoder: %v", err)
}
defer decoder.Close()
dstBuf := make([]byte, destinationBufferSize)
options := &ImageOptions{
FileType: tc.outputType,
NormalizeOrientation: true,
EncodeOptions: map[int]int{AvifQuality: tc.quality, AvifSpeed: 10},
ResizeMethod: tc.resizeMethod,
Width: tc.width,
Height: tc.height,
EncodeTimeout: time.Second * 30,
DisableAnimatedOutput: tc.disableAnimatedOutput,
}
ops := NewImageOps(2000)
defer ops.Close()
newDst, err := ops.Transform(decoder, options, dstBuf)
if err != nil {
t.Fatalf("Transform failed: %v", err)
}
if len(newDst) == 0 {
t.Fatal("Transform returned empty data")
}
ensureOutputDir(t)
if err = os.WriteFile(tc.outputPath, newDst, 0644); err != nil {
t.Fatalf("Failed to write output file: %v", err)
}
})
}
}
func ensureOutputDir(t *testing.T) {
if _, err := os.Stat("testdata/out"); os.IsNotExist(err) {
if err = os.Mkdir("testdata/out", 0755); err != nil {
t.Fatalf("Failed to create output directory: %v", err)
}
}
}
func almostEqual(a, b, tolerance float64) bool {
return math.Abs(a-b) <= tolerance
}