-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathreader_test.go
More file actions
executable file
·278 lines (237 loc) · 7.39 KB
/
Copy pathreader_test.go
File metadata and controls
executable file
·278 lines (237 loc) · 7.39 KB
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
package nativewebp
import (
//------------------------------
//general
//------------------------------
"bytes"
"encoding/binary"
//------------------------------
//imaging
//------------------------------
"image"
"image/color"
"image/draw"
//------------------------------
//testing
//------------------------------
"testing"
)
func TestImageDecodeRegistration(t *testing.T) {
img := generateTestImageNRGBA(8, 16, 64, true)
buf := new(bytes.Buffer)
if err := Encode(buf, img, nil); err != nil {
t.Fatalf("Encode failed: %v", err)
}
img, format, err := image.Decode(buf)
if err != nil {
t.Errorf("image.Decode error %v", err)
return
}
if format != "webp" {
t.Errorf("expected format as webp got %v", format)
return
}
}
func TestDecode(t *testing.T) {
img := generateTestImageNRGBA(8, 8, 64, true)
for id, tt := range []struct {
img image.Image
UseExtendedFormat bool
expectedErr string
}{
{
img,
false,
"",
},
{
img,
true,
"webp: invalid format",
},
{
nil, // if nil is used create a non-webp buffer
false,
"riff: missing RIFF chunk header",
},
}{
input := new(bytes.Buffer)
if tt.img != nil {
err := Encode(input, tt.img, &Options{UseExtendedFormat: tt.UseExtendedFormat})
if err != nil {
t.Errorf("test %d: expected err as nil got %v", id, err)
continue
}
} else {
input.Write([]byte("not a WebP file!"))
}
buf := bytes.NewBuffer(input.Bytes())
result, err := Decode(buf)
if err == nil && tt.expectedErr != "" {
t.Errorf("test %d: expected err as %v got nil", id, tt.expectedErr)
continue
}
if err != nil {
if tt.expectedErr == "" {
t.Errorf("test %d: expected err as nil got %v", id, err)
continue
}
if tt.expectedErr != err.Error() {
t.Errorf("test %d: expected err as %v got %v", id, tt.expectedErr, err)
continue
}
continue
}
img1, ok := tt.img.(*image.NRGBA)
if !ok {
t.Errorf("test: unsupported image format for img1")
return
}
img2 := image.NewNRGBA(result.Bounds())
draw.Draw(img2, result.Bounds(), result, result.Bounds().Min, draw.Src)
if !img1.Rect.Eq(img2.Rect) || img1.Stride != img2.Stride {
t.Errorf("test %d: expected image dimensions as %v got %v", id, img1.Rect, img2.Rect)
continue
}
if !bytes.Equal(img1.Pix, img2.Pix) {
t.Errorf("test %d: expected image to be equal", id)
continue
}
}
}
func TestDecodeConfig(t *testing.T) {
img := generateTestImageNRGBA(8, 16, 64, true)
buf := new(bytes.Buffer)
err := Encode(buf, img, nil)
if err != nil {
t.Errorf("Encode: expected err as nil got %v", err)
return
}
for id, tt := range []struct {
input []byte
expectedColorModel color.Model
expectedWidth int
expectedHeight int
expectedErr string
}{
{
buf.Bytes(),
color.NRGBAModel,
8,
16,
"",
},
{
[]byte("invalid WebP data"),
color.GrayModel,
0,
0,
"riff: missing RIFF chunk header",
},
}{
buf := bytes.NewBuffer(tt.input)
result, err := DecodeConfig(buf)
if err == nil && tt.expectedErr != "" {
t.Errorf("test %d: expected err as %v got nil", id, tt.expectedErr)
continue
}
if err != nil {
if tt.expectedErr == "" {
t.Errorf("test %d: expected err as nil got %v", id, err)
continue
}
if tt.expectedErr != err.Error() {
t.Errorf("test %d: expected err as %v got %v", id, tt.expectedErr, err)
continue
}
continue
}
if result.ColorModel != tt.expectedColorModel {
t.Errorf("test %d: expected color model as %v got %v", id, tt.expectedColorModel, result.ColorModel)
continue
}
if result.Width != tt.expectedWidth {
t.Errorf("test %d: expected width as %v got %v", id, tt.expectedWidth, result.Width)
continue
}
if result.Height != tt.expectedHeight {
t.Errorf("test %d: expected height as %v got %v", id, tt.expectedHeight, result.Height)
continue
}
}
}
func TestDecodeIgnoreAlphaFlag(t *testing.T) {
for id, tt := range []struct {
useExtendedFormat bool
useAlpha bool
expectedErrorDecode string
}{
{
false,
false,
"",
},
{
false,
true,
"",
},
{
true,
false,
"",
},
{
true,
true,
"webp: invalid format",
},
}{
img := generateTestImageNRGBA(8, 8, 64, tt.useAlpha)
buf := new(bytes.Buffer)
err := Encode(buf, img, &Options{UseExtendedFormat: tt.useExtendedFormat})
if err != nil {
t.Errorf("test %v: expected err as nil got %v", id, err)
continue
}
// TEST A: we expect the default Decode to give an error for VP8X with Alpha flag set
_, err = Decode(bytes.NewReader(buf.Bytes()))
if err == nil && tt.expectedErrorDecode != "" {
t.Errorf("test %v: expected err as %v got %v", id, tt.expectedErrorDecode, err)
continue
}
if err != nil && err.Error() != tt.expectedErrorDecode {
t.Errorf("test %v: expected err as %v got %v", id, tt.expectedErrorDecode, err)
continue
}
// TEST B: we expect the DecodeIgnoreAlphaFlag to correctly read VP8X with Alpha flag set
_, err = DecodeIgnoreAlphaFlag(bytes.NewReader(buf.Bytes()))
if err != nil {
t.Errorf("test %v: expected err as nil got %v", id, err)
continue
}
}
}
func TestDecodeIgnoreAlphaFlagSearchChunk(t *testing.T) {
img := generateTestImageNRGBA(8, 8, 64, true)
buf := new(bytes.Buffer)
err := Encode(buf, img, &Options{UseExtendedFormat: true})
if err != nil {
t.Errorf("expected err as nil got %v", err)
return
}
data := buf.Bytes()
data[20] |= 0x08 // set EXIF flag in VP8X header
var exif bytes.Buffer
exif.Write([]byte("EXIF"))
binary.Write(&exif, binary.LittleEndian, uint32(6))
exif.Write([]byte("Hello!"))
//TEST: test what happens if VP8L is not directly after VP8X chunk
data = append(data[:30], append(exif.Bytes(), data[30:]...)...)
binary.LittleEndian.PutUint32(data[4: 8], uint32(len(data) - 8))
_, err = DecodeIgnoreAlphaFlag(bytes.NewReader(data))
if err != nil {
t.Errorf("expected err as nil got %v", err)
return
}
}