-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_image.py
107 lines (84 loc) · 2.73 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
import os
import pytest
from dvc_render.image import ImageRenderer
# pylint: disable=missing-function-docstring
@pytest.mark.parametrize(
("extension", "matches"),
(
(".csv", False),
(".json", False),
(".tsv", False),
(".yaml", False),
(".jpg", True),
(".gif", True),
(".jpeg", True),
(".png", True),
(".svg", True),
),
)
def test_matches(extension, matches):
filename = "file" + extension
assert ImageRenderer.matches(filename) == matches
@pytest.mark.parametrize("html_path", [None, "/output/dir/index.html"])
@pytest.mark.parametrize("src", ["relpath.jpg", "data:image;base64,encoded_image"])
def test_generate_html(html_path, src):
datapoints = [
{
"filename": "file.jpg",
"rev": "workspace",
"src": src,
}
]
html = ImageRenderer(datapoints, "file.jpg").generate_html(html_path=html_path)
assert "<p>file.jpg</p>" in html
assert f'<img src="{src}">' in html
def test_generate_markdown():
datapoints = [
{
"rev": "workspace",
"src": "file.jpg",
}
]
md = ImageRenderer(datapoints, "file.jpg").generate_markdown()
assert "" in md
def test_invalid_generate_markdown():
datapoints = [
{
"rev": "workspace",
"src": "data:image;base64,encoded_image",
}
]
md = ImageRenderer(datapoints, "file.jpg").generate_markdown()
assert "" in md
@pytest.mark.parametrize(
("html_path", "img_path", "expected_path"),
[
(
os.path.join("output", "path", "index.html"),
os.path.join("output", "path", "with", "static", "file.jpg"),
os.path.join("with", "static", "file.jpg"),
),
(
os.path.join("output", "one", "path", "index.html"),
os.path.join("output", "second", "path", "file.jpg"),
os.path.join("..", "..", "second", "path", "file.jpg"),
),
],
)
def test_render_evaluate_path(tmp_path, html_path, img_path, expected_path):
abs_html_path = tmp_path / html_path
abs_img_path = tmp_path / img_path
datapoints = [
{
"filename": "file.jpg",
"rev": "workspace",
"src": str(abs_img_path),
}
]
html = ImageRenderer(datapoints, "file.jpg").generate_html(html_path=abs_html_path)
assert "<p>file.jpg</p>" in html
assert f'<img src="{expected_path}">' in html
@pytest.mark.parametrize("method", ["generate_html", "generate_markdown"])
def test_render_empty(method):
renderer = ImageRenderer(None, None)
assert getattr(renderer, method)() == ""