-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_userpic.py
111 lines (85 loc) · 3.53 KB
/
test_userpic.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
from typing import Any
import pytest
from PIL.Image import Image
from userpic import (
make_userpic_image,
make_userpic_image_from_string,
make_userpic_svg,
make_userpic_svg_from_string,
)
@pytest.fixture
def default_params() -> dict[str, Any]:
return {
'size': (7, 5),
'image_size': (300, 300),
'padding': (20, 20),
'mode': 'RGB',
'background': 'white',
'foreground': 'black',
}
def test_make_userpic_image(default_params: dict[str, Any]) -> None:
image = make_userpic_image(**default_params)
assert isinstance(image, Image)
assert image.size == default_params['image_size']
assert image.mode == default_params['mode']
def test_make_userpic_svg(default_params: dict[str, Any]) -> None:
params = {k: v for k, v in default_params.items() if k != 'mode'}
svg = make_userpic_svg(**params)
assert isinstance(svg, str)
assert '<svg' in svg
assert 'rect' in svg
def test_seed_reproducibility(default_params: dict[str, Any]) -> None:
seed = 42
image1 = make_userpic_image(**default_params, seed=seed)
image2 = make_userpic_image(**default_params, seed=seed)
assert image1.tobytes() == image2.tobytes()
def test_different_seeds(default_params: dict[str, Any]) -> None:
image1 = make_userpic_image(**default_params, seed=1)
image2 = make_userpic_image(**default_params, seed=2)
assert image1.tobytes() != image2.tobytes()
def test_string_based_image_consistency(default_params: dict[str, Any]) -> None:
text = '[email protected]'
params = {k: v for k, v in default_params.items() if k not in ['seed']}
image1 = make_userpic_image_from_string(text=text, **params)
image2 = make_userpic_image_from_string(text=text, **params)
assert image1.tobytes() == image2.tobytes()
def test_string_based_svg_consistency(default_params: dict[str, Any]) -> None:
text = '[email protected]'
params = {k: v for k, v in default_params.items() if k not in ['seed', 'mode']}
svg1 = make_userpic_svg_from_string(text=text, **params)
svg2 = make_userpic_svg_from_string(text=text, **params)
assert svg1 == svg2
def test_different_strings_different_results(default_params: dict[str, Any]) -> None:
params = {k: v for k, v in default_params.items() if k not in ['seed']}
image1 = make_userpic_image_from_string(text='[email protected]', **params)
image2 = make_userpic_image_from_string(text='[email protected]', **params)
assert image1.tobytes() != image2.tobytes()
@pytest.mark.parametrize(
'size',
[
(5, 5),
(7, 7),
(9, 9),
],
)
def test_different_sizes(default_params: dict[str, Any], size: tuple[int, int]) -> None:
params = default_params.copy()
params['size'] = size
image = make_userpic_image(**params)
assert isinstance(image, Image)
@pytest.mark.parametrize('mode', ['RGB', 'RGBA', 'L'])
def test_different_modes(default_params: dict[str, Any], mode: str) -> None:
params = default_params.copy()
params['mode'] = mode
image = make_userpic_image(**params)
assert image.mode == mode
def test_svg_structure(default_params: dict[str, Any]) -> None:
params = {k: v for k, v in default_params.items() if k != 'mode'}
svg = make_userpic_svg(**params)
assert '<svg' in svg
assert 'xmlns="http://www.w3.org/2000/svg"' in svg
assert '</svg>' in svg
assert 'rect' in svg
def test_empty_string() -> None:
image = make_userpic_image_from_string(text='', size=(7, 5), mode='RGB', image_size=(300, 300))
assert isinstance(image, Image)