forked from microsoft/playwright-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
197 lines (142 loc) · 4.77 KB
/
conftest.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
# Copyright (c) Microsoft Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License")
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import asyncio
import io
import sys
import pytest
from PIL import Image
from pixelmatch import pixelmatch
from pixelmatch.contrib.PIL import from_PIL_to_raw_data
from playwright._path_utils import get_file_dirname
from .server import test_server
from .utils import utils as utils_object
_dirname = get_file_dirname()
def pytest_generate_tests(metafunc):
if "browser_name" in metafunc.fixturenames:
browsers = metafunc.config.option.browser or ["chromium", "firefox", "webkit"]
metafunc.parametrize("browser_name", browsers, scope="session")
@pytest.fixture(scope="session")
def event_loop():
loop = asyncio.get_event_loop()
yield loop
loop.close()
@pytest.fixture(scope="session")
def assetdir():
return _dirname / "assets"
@pytest.fixture(scope="session")
def launch_arguments(pytestconfig):
return {
"headless": not pytestconfig.getoption("--headful"),
"chromiumSandbox": False,
}
@pytest.fixture
def server():
yield test_server.server
@pytest.fixture
def https_server():
yield test_server.https_server
@pytest.fixture
def ws_server():
yield test_server.ws_server
@pytest.fixture
def utils():
yield utils_object
@pytest.fixture(autouse=True, scope="session")
async def start_server():
test_server.start()
yield
test_server.stop()
@pytest.fixture(autouse=True)
def after_each_hook():
yield
test_server.reset()
@pytest.fixture(scope="session")
def browser_name(pytestconfig):
return pytestconfig.getoption("browser")
@pytest.fixture(scope="session")
def is_webkit(browser_name):
return browser_name == "webkit"
@pytest.fixture(scope="session")
def is_firefox(browser_name):
return browser_name == "firefox"
@pytest.fixture(scope="session")
def is_chromium(browser_name):
return browser_name == "chromium"
@pytest.fixture(scope="session")
def is_win():
return sys.platform == "win32"
@pytest.fixture(scope="session")
def is_linux():
return sys.platform == "linux"
@pytest.fixture(scope="session")
def is_mac():
return sys.platform == "darwin"
def _get_skiplist(request, values, value_name):
skipped_values = []
# Allowlist
only_marker = request.node.get_closest_marker(f"only_{value_name}")
if only_marker:
skipped_values = values
skipped_values.remove(only_marker.args[0])
# Denylist
skip_marker = request.node.get_closest_marker(f"skip_{value_name}")
if skip_marker:
skipped_values.append(skip_marker.args[0])
return skipped_values
@pytest.fixture(autouse=True)
def skip_by_browser(request, browser_name):
skip_browsers_names = _get_skiplist(
request, ["chromium", "firefox", "webkit"], "browser"
)
if browser_name in skip_browsers_names:
pytest.skip(f"skipped for this browser: {browser_name}")
@pytest.fixture(autouse=True)
def skip_by_platform(request):
skip_platform_names = _get_skiplist(
request, ["win32", "linux", "darwin"], "platform"
)
if sys.platform in skip_platform_names:
pytest.skip(f"skipped on this platform: {sys.platform}")
def pytest_addoption(parser):
group = parser.getgroup("playwright", "Playwright")
group.addoption(
"--browser",
action="append",
default=[],
help="Browsers which should be used. By default on all the browsers.",
)
parser.addoption(
"--headful",
action="store_true",
default=False,
help="Run tests in headful mode.",
)
@pytest.fixture(scope="session")
def assert_to_be_golden(browser_name: str):
def compare(received_raw: bytes, golden_name: str):
golden_file = (_dirname / f"golden-{browser_name}" / golden_name).read_bytes()
received_image = Image.open(io.BytesIO(received_raw))
golden_image = Image.open(io.BytesIO(golden_file))
if golden_image.size != received_image.size:
pytest.fail("Image size differs to golden image")
return
diff_pixels = pixelmatch(
from_PIL_to_raw_data(received_image),
from_PIL_to_raw_data(golden_image),
golden_image.size[0],
golden_image.size[1],
threshold=0.2,
)
assert diff_pixels == 0
return compare