-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtest_image.py
618 lines (512 loc) · 17.4 KB
/
test_image.py
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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
#!/usr/bin/env python3
# vim: ai ts=4 sts=4 et sw=4 nu
import inspect
import io
import os
import pathlib
import re
import shutil
from subprocess import CalledProcessError
import piexif
import pytest
from PIL import Image
from resizeimage.imageexceptions import ImageSizeError
from zimscraperlib.image import presets
from zimscraperlib.image.convertion import convert_image, create_favicon
from zimscraperlib.image.optimization import (
ensure_matches,
optimize_gif,
optimize_image,
optimize_jpeg,
optimize_png,
optimize_webp,
)
from zimscraperlib.image.presets import (
GifHigh,
GifLow,
GifMedium,
JpegHigh,
JpegLow,
JpegMedium,
PngHigh,
PngLow,
PngMedium,
WebpHigh,
WebpLow,
WebpMedium,
)
from zimscraperlib.image.probing import (
format_for,
get_colors,
is_hex_color,
is_valid_image,
)
from zimscraperlib.image.transformation import resize_image
from zimscraperlib.image.utils import save_image
ALL_PRESETS = [(n, p) for n, p in inspect.getmembers(presets) if inspect.isclass(p)]
def get_image_size(fpath):
return Image.open(fpath).size
def get_optimization_method(fmt):
return {
"gif": optimize_gif,
"jpg": optimize_jpeg,
"webp": optimize_webp,
"png": optimize_png,
}.get(fmt)
def get_src_dst(
tmp_path, fmt, png_image=None, jpg_image=None, gif_image=None, webp_image=None
):
return (
{"png": png_image, "jpg": jpg_image, "webp": webp_image, "gif": gif_image}.get(
fmt
),
tmp_path / f"out.{fmt}",
)
@pytest.mark.parametrize(
"value, valid",
[
("#CECECE", True),
("white", False),
("#bada55", True),
("#003777", True),
("#800000", True),
("transparent", False),
("000000", False),
],
)
def test_is_hex_color(value, valid):
if valid:
assert is_hex_color(value)
else:
assert not is_hex_color(value)
def test_colors_noimage():
with pytest.raises(FileNotFoundError):
get_colors("nofile.here") # pyright: ignore
def test_colors_png_nopalette(png_image):
assert get_colors(png_image, False) == ("#04659B", "#E7F6FF")
def test_colors_jpg_nopalette(jpg_image):
assert get_colors(jpg_image, False) == ("#C1BBB3", "#F4F3F1")
def test_colors_png_palette(png_image):
assert get_colors(png_image, True) == ("#9E0404", "#E7F6FF")
def test_colors_jpg_palette(jpg_image):
assert get_colors(jpg_image, True) == ("#221C1B", "#F4F3F1")
@pytest.mark.parametrize(
"fmt,params",
[("png", None), ("jpg", {"quality": 50})],
)
def test_save_image(png_image, jpg_image, tmp_path, fmt, params):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
img = Image.open(src) # pyright: ignore
if params:
save_image(
img, dst, "JPEG" if fmt == "jpg" else fmt, **params # pyright: ignore
)
else:
save_image(img, dst, "JPEG" if fmt == "jpg" else fmt) # pyright: ignore
assert pathlib.Path(dst).exists()
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_resize_thumbnail(png_image, jpg_image, tmp_path, fmt):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
width, height = 100, 50
resize_image(src, width, height, dst=dst, method="thumbnail") # pyright: ignore
tw, th = get_image_size(dst)
assert tw <= width
assert th <= height
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_resize_bytestream(png_image, jpg_image, tmp_path, fmt):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
# copy image content into a bytes stream
img = io.BytesIO() # pyright: ignore
with open(src, "rb") as srch: # pyright: ignore
img.write(srch.read())
# resize in place (no dst)
width, height = 100, 50
resize_image(img, width, height, method="thumbnail")
tw, th = get_image_size(img)
assert tw <= width
assert th <= height
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_resize_width(png_image, jpg_image, tmp_path, fmt):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
width, height = 100, 50
resize_image(src, width, height, dst=dst, method="width") # pyright: ignore
tw, _ = get_image_size(dst)
assert tw == width
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_resize_height(png_image, jpg_image, tmp_path, fmt):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
width, height = 100, 50
resize_image(src, width, height, dst=dst, method="height") # pyright: ignore
_, th = get_image_size(dst)
assert th == height
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_resize_crop(png_image, jpg_image, tmp_path, fmt):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
width, height = 5, 50
resize_image(src, width, height, dst=dst, method="crop") # pyright: ignore
tw, th = get_image_size(dst)
assert tw == width
assert th == height
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_resize_cover(png_image, jpg_image, tmp_path, fmt):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
width, height = 5, 50
resize_image(src, width, height, dst=dst, method="cover") # pyright: ignore
tw, th = get_image_size(dst)
assert tw == width
assert th == height
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_resize_contain(png_image, jpg_image, tmp_path, fmt):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
width, height = 5, 50
resize_image(src, width, height, dst=dst, method="contain") # pyright: ignore
tw, th = get_image_size(dst)
assert tw <= width
assert th <= height
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_resize_upscale(png_image, jpg_image, tmp_path, fmt):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
width, height = 500, 1000
resize_image(src, width, height, dst=dst, method="cover") # pyright: ignore
tw, th = get_image_size(dst)
assert tw == width
assert th == height
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_resize_small_image_error(png_image, jpg_image, tmp_path, fmt):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image, jpg_image=jpg_image)
width, height = 500, 1000
with pytest.raises(ImageSizeError):
resize_image(
src, # pyright: ignore
width,
height,
dst=dst,
method="cover",
allow_upscaling=False,
)
@pytest.mark.parametrize(
"src_fmt,dst_fmt,colorspace",
[("png", "JPEG", "RGB"), ("png", "BMP", None), ("jpg", "JPEG", "CMYK")],
)
def test_change_image_format(
png_image, jpg_image, tmp_path, src_fmt, dst_fmt, colorspace
):
src, _ = get_src_dst(tmp_path, src_fmt, png_image=png_image, jpg_image=jpg_image)
dst = tmp_path / f"out.{dst_fmt.lower()}"
convert_image(src, dst, fmt=dst_fmt, colorspace=colorspace) # pyright: ignore
dst_image = Image.open(dst)
if colorspace:
assert dst_image.mode == colorspace
assert dst_image.format == dst_fmt
def test_change_image_format_defaults(png_image, tmp_path):
# PNG to JPEG (loosing alpha)
dst = tmp_path.joinpath(f"{png_image.stem}.jpg")
convert_image(png_image, dst)
dst_image = Image.open(dst)
assert dst_image.mode == "RGB"
assert dst_image.format == "JPEG"
# PNG to WebP (keeping alpha)
dst = tmp_path.joinpath(f"{png_image.stem}.webp")
convert_image(png_image, dst)
dst_image = Image.open(dst)
assert dst_image.mode == "RGBA"
assert dst_image.format == "WEBP"
def test_convert_io_src_dst(png_image: pathlib.Path):
src = io.BytesIO(png_image.read_bytes())
dst = io.BytesIO()
convert_image(src, dst, fmt="PNG")
dst_image = Image.open(dst)
assert dst_image.format == "PNG"
def test_convert_io_src_path_dst(png_image: pathlib.Path, tmp_path: pathlib.Path):
src = io.BytesIO(png_image.read_bytes())
dst = tmp_path / "test.png"
convert_image(src, dst, fmt="PNG")
dst_image = Image.open(dst)
assert dst_image.format == "PNG"
def test_convert_path_src_io_dst(png_image: pathlib.Path):
src = png_image
dst = io.BytesIO()
convert_image(src, dst, fmt="PNG")
dst_image = Image.open(dst)
assert dst_image.format == "PNG"
@pytest.mark.parametrize(
"fmt,exp_size",
[("png", 128), ("jpg", 128)],
)
def test_create_favicon(png_image2, jpg_image, tmp_path, fmt, exp_size):
src, dst = get_src_dst(tmp_path, fmt, png_image=png_image2, jpg_image=jpg_image)
dst = dst.parent.joinpath("favicon.ico")
create_favicon(src, dst) # pyright: ignore
im = Image.open(dst)
assert im.format == "ICO"
assert im.size == (exp_size, exp_size)
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_create_favicon_square(square_png_image, square_jpg_image, tmp_path, fmt):
src, dst = get_src_dst(
tmp_path, fmt, png_image=square_png_image, jpg_image=square_jpg_image
)
dst = dst.parent.joinpath("favicon.ico")
create_favicon(src, dst) # pyright: ignore
im = Image.open(dst)
assert im.format == "ICO"
assert im.size == (256, 256)
@pytest.mark.parametrize(
"fmt",
["png", "jpg"],
)
def test_wrong_extension(square_png_image, square_jpg_image, tmp_path, fmt):
src, dst = get_src_dst(
tmp_path, fmt, png_image=square_png_image, jpg_image=square_jpg_image
)
with pytest.raises(ValueError):
create_favicon(src, dst) # pyright: ignore
@pytest.mark.parametrize(
"fmt",
["png", "jpg", "gif", "webp"],
)
def test_optimize_image_default(
png_image2, jpg_image, gif_image, webp_image, tmp_path, fmt
):
src, dst = get_src_dst(
tmp_path,
fmt,
png_image=png_image2,
jpg_image=jpg_image,
gif_image=gif_image,
webp_image=webp_image,
)
optimize_image(src, dst, delete_src=False) # pyright: ignore
assert os.path.getsize(dst) < os.path.getsize(src) # pyright: ignore
def test_optimize_image_del_src(png_image, tmp_path):
shutil.copy(png_image, tmp_path)
src = tmp_path / png_image.name
dst = tmp_path / "out.png"
org_size = os.path.getsize(src)
optimize_image(src, dst, delete_src=True)
assert os.path.getsize(dst) < org_size
assert not src.exists()
def test_optimize_image_allow_convert(png_image, tmp_path):
shutil.copy(png_image, tmp_path)
src = tmp_path / png_image.name
dst = tmp_path / "out.webp"
optimize_image(src, dst, delete_src=True, convert=True)
assert not src.exists()
assert dst.exists() and os.path.getsize(dst) > 0
@pytest.mark.parametrize(
"preset,expected_version,options,fmt",
[
(WebpLow(), 1, {"lossless": False, "quality": 40, "method": 6}, "webp"),
(WebpMedium(), 1, {"lossless": False, "quality": 50, "method": 6}, "webp"),
(WebpHigh(), 1, {"lossless": False, "quality": 90, "method": 6}, "webp"),
(
GifLow(),
1,
{
"optimize_level": 3,
"max_colors": 256,
"lossiness": 80,
"no_extensions": True,
"interlace": True,
},
"gif",
),
(
GifMedium(),
1,
{
"optimize_level": 3,
"lossiness": 20,
"no_extensions": True,
"interlace": True,
},
"gif",
),
(
GifHigh(),
1,
{
"optimize_level": 2,
"lossiness": None,
"no_extensions": True,
"interlace": True,
},
"gif",
),
(
PngLow(),
1,
{
"reduce_colors": True,
"remove_transparency": False,
"max_colors": 256,
"fast_mode": False,
},
"png",
),
(
PngMedium(),
1,
{"reduce_colors": False, "remove_transparency": False, "fast_mode": False},
"png",
),
(
PngHigh(),
1,
{"reduce_colors": False, "remove_transparency": False, "fast_mode": True},
"png",
),
(JpegLow(), 1, {"quality": 45, "keep_exif": False, "fast_mode": True}, "jpg"),
(
JpegMedium(),
1,
{"quality": 65, "keep_exif": False, "fast_mode": True},
"jpg",
),
(JpegHigh(), 1, {"quality": 80, "keep_exif": True, "fast_mode": True}, "jpg"),
],
)
def test_preset(
preset,
expected_version,
options,
fmt,
png_image,
jpg_image,
gif_image,
webp_image,
tmp_path,
):
assert preset.VERSION == expected_version
assert preset.options == options
src, dst = get_src_dst(
tmp_path,
fmt,
png_image=png_image,
jpg_image=jpg_image,
gif_image=gif_image,
webp_image=webp_image,
)
optimize_image(src, dst, delete_src=False, **preset.options) # pyright: ignore
assert os.path.getsize(dst) < os.path.getsize(src) # pyright: ignore
if fmt in ["jpg", "webp", "png"]:
image_bytes = "" # pyright: ignore
with open(src, "rb") as fl: # pyright: ignore
image_bytes = fl.read()
byte_stream = io.BytesIO(image_bytes)
dst_bytes = get_optimization_method(fmt)(
src=byte_stream, **preset.options
) # pyright: ignore
assert dst_bytes.getbuffer().nbytes < byte_stream.getbuffer().nbytes
def test_preset_has_mime_and_ext():
for _, preset in ALL_PRESETS:
assert preset().ext
assert preset().mimetype.startswith("image/")
def test_remove_png_transparency(png_image, tmp_path):
dst = tmp_path / "out.png"
optimize_png(src=png_image, dst=dst, remove_transparency=True)
assert os.path.getsize(dst) == 2352
def test_jpeg_exif_preserve(jpg_exif_image, tmp_path):
# in filesystem
dst = tmp_path / "out.jpg"
optimize_jpeg(src=jpg_exif_image, dst=dst)
assert piexif.load(str(dst))["Exif"] and (
piexif.load(str(dst))["Exif"]
== piexif.load(str(jpg_exif_image.resolve()))["Exif"]
)
# in memory
with open(jpg_exif_image, "rb") as fl:
src_bytes = fl.read()
optimized_img = optimize_jpeg(src=io.BytesIO(src_bytes))
assert piexif.load(optimized_img.getvalue())["Exif"] and ( # pyright: ignore
piexif.load(src_bytes)["Exif"]
== piexif.load(optimized_img.getvalue())["Exif"] # pyright: ignore
)
def test_dynamic_jpeg_quality(jpg_image, tmp_path):
# check optimization without fast mode
dst = tmp_path / "out.jpg"
optimize_jpeg(src=jpg_image, dst=dst, fast_mode=False)
assert os.path.getsize(dst) < os.path.getsize(jpg_image)
def test_ensure_matches(webp_image):
with pytest.raises(ValueError, match=re.escape("is not of format")):
ensure_matches(webp_image, "PNG")
@pytest.mark.parametrize(
"fmt,expected",
[("png", "PNG"), ("jpg", "JPEG"), ("gif", "GIF"), ("webp", "WEBP")],
)
def test_format_for(
png_image, jpg_image, gif_image, webp_image, tmp_path, fmt, expected
):
src, _ = get_src_dst(
tmp_path,
fmt,
png_image=png_image,
jpg_image=jpg_image,
gif_image=gif_image,
webp_image=webp_image,
)
assert format_for(src) == expected # pyright: ignore
def test_optimize_webp_gif_failure(tmp_path, webp_image, gif_image):
dst = tmp_path.joinpath("image.img")
# webp
with pytest.raises(TypeError):
optimize_webp(webp_image, dst, lossless="bad") # pyright: ignore
assert not dst.exists()
# gif
dst.touch() # fake temp file created during optim (actually fails before)
with pytest.raises(CalledProcessError):
optimize_gif(gif_image, dst, optimize_level="bad") # pyright: ignore
assert not dst.exists()
def test_wrong_extension_optim(tmp_path, png_image):
dst = tmp_path.joinpath("image.jpg")
shutil.copy(png_image, dst)
with pytest.raises(ValueError, match=re.escape("is not of format JPEG")):
optimize_jpeg(dst, dst)
def test_is_valid_image(png_image, png_image2, jpg_image, font):
assert is_valid_image(png_image, "PNG")
assert not is_valid_image(png_image, "JPEG")
assert is_valid_image(jpg_image, "JPEG")
assert is_valid_image(png_image, "PNG", (48, 48))
assert not is_valid_image(png_image2, "PNG", (48, 48))
assert not is_valid_image(b"", "PNG")
assert not is_valid_image(34, "PNG") # pyright: ignore
assert not is_valid_image(font, "PNG")
with open(png_image, "rb") as fh:
assert is_valid_image(fh.read(), "PNG", (48, 48))
fh.seek(0)
assert is_valid_image(io.BytesIO(fh.read()), "PNG", (48, 48))
def test_optimize_gif_no_optimize_level(gif_image, tmp_path):
optimize_gif(gif_image, tmp_path / "out.gif", delete_src=False, optimize_level=None)
def test_optimize_gif_no_no_extensions(gif_image, tmp_path):
optimize_gif(gif_image, tmp_path / "out.gif", delete_src=False, no_extensions=None)
def test_optimize_gif_no_interlace(gif_image, tmp_path):
optimize_gif(gif_image, tmp_path / "out.gif", delete_src=False, interlace=None)