-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsnapshot.py
408 lines (338 loc) · 12.4 KB
/
snapshot.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
"""
Assert complex output via auto updated snapshot files with nice diff error messages.
To update all snapshot files, run your tests with RAISE_SNAPSHOT_ERRORS=0 in environment.
"""
from __future__ import annotations
import hashlib
import json
import os
import pathlib
import pprint
import re
from collections import Counter
from collections.abc import Callable
from typing import Any
from bx_py_utils.html_utils import get_html_elements, pretty_format_html, validate_html
try:
from lxml import html # lxml is optional requirement
except ModuleNotFoundError:
html = None
try:
from bs4 import BeautifulSoup # BeautifulSoup4 is optional requirement
except ModuleNotFoundError:
BeautifulSoup = None
from bx_py_utils.compat import removeprefix
from bx_py_utils.path import assert_is_dir
from bx_py_utils.stack_info import last_frame_outside_path
from bx_py_utils.test_utils.assertion import (
_unified_diff,
assert_equal,
assert_text_equal,
pformat_unified_diff,
text_unified_diff,
)
SELF_FILE_PATH = pathlib.Path(__file__)
_AUTO_SNAPSHOT_NAME_COUNTER = Counter()
_UNIFY_NEWLINES_RE = r'\r?\n'
class SnapshotChanged(AssertionError):
pass
def raise_snapshot_errors():
return os.environ.get('RAISE_SNAPSHOT_ERRORS') not in ('0', 'false')
def _write_json(obj, snapshot_file):
with snapshot_file.open('w') as snapshot_handle:
json.dump(obj, snapshot_handle, ensure_ascii=False, indent=4, sort_keys=True)
def _get_caller_names(
*,
root_dir: pathlib.Path | str | None = None,
snapshot_name: str | None = None,
name_suffix: str | None = None,
self_file_path: pathlib.Path | str | None = None,
extension_prefix: str = '.snapshot',
):
"""
Helper to get snapshot directory and name by stack frame info, but only if not given.
self_file_path is used to get the stack frame outside of the caller for set path/filename.
"""
if root_dir:
if not isinstance(root_dir, pathlib.Path):
root_dir = pathlib.Path(root_dir)
assert_is_dir(root_dir)
if snapshot_name is not None:
assert re.match(r'^[-_.a-zA-Z0-9]+$', snapshot_name), f'Invalid snapshot name: {snapshot_name!r}'
if name_suffix is not None:
assert re.match(r'^[-_.a-zA-Z0-9]+$', name_suffix), f'Invalid name suffix: {name_suffix!r}'
if snapshot_name and name_suffix:
raise AssertionError(f'Specify only name or suffix, not both: {snapshot_name=} {name_suffix=}')
assert extension_prefix.startswith('.'), f'Invalid: {extension_prefix=}'
if not root_dir or not snapshot_name:
# Set "root_dir" and "snapshot_name" if missing by stack frame info.
if not self_file_path:
self_file_path = SELF_FILE_PATH
# Get the caller stack frame (First frame that is outside this file path):
external_stack_frame = last_frame_outside_path(file_path=self_file_path)
caller_path = pathlib.Path(external_stack_frame.filename)
assert caller_path.is_file()
if not root_dir:
root_dir = caller_path.parent
if not snapshot_name:
test_func_name = external_stack_frame.function
test_func_name = removeprefix(test_func_name, 'test_') # make it a little bit shorter
snapshot_name = f'{caller_path.stem}_{test_func_name}'
if name_suffix:
snapshot_name = f'{snapshot_name}_{name_suffix}'
# Add a counter to the snapshot name, to support more than one
# snapshot calls in the same test ;)
counter_key = (root_dir, snapshot_name)
_AUTO_SNAPSHOT_NAME_COUNTER[counter_key] += 1
call_count = _AUTO_SNAPSHOT_NAME_COUNTER[counter_key]
snapshot_name = f'{snapshot_name}_{call_count}{extension_prefix}'
return root_dir, snapshot_name
def get_snapshot_file(
*,
root_dir: pathlib.Path | str | None = None,
snapshot_name: str | None = None,
name_suffix: str | None = None,
extension: str | None = None,
self_file_path: pathlib.Path | str | None = None,
extension_prefix: str = '.snapshot',
) -> pathlib.Path:
"""
Generate a file path use stack information to fill not provided path components.
Mainly useable to generate file path for snapshot tests.
"""
# Auto set dir/name via stack information, if not set:
root_dir, snapshot_name = _get_caller_names(
root_dir=root_dir,
snapshot_name=snapshot_name,
name_suffix=name_suffix,
self_file_path=self_file_path,
extension_prefix=extension_prefix,
)
assert re.match(r'^[-_.a-zA-Z0-9]*$', extension), f'Invalid extension {extension!r}'
if not snapshot_name.endswith(extension_prefix):
snapshot_name += extension_prefix
snapshot_file = pathlib.Path(root_dir) / f'{snapshot_name}{extension}'
return snapshot_file
def assert_text_snapshot(
root_dir: pathlib.Path | str | None = None,
snapshot_name: str | None = None,
got: str | None = None,
name_suffix: str | None = None,
extension: str = '.txt',
fromfile: str = 'got',
tofile: str = 'expected',
diff_func: Callable = text_unified_diff,
self_file_path: pathlib.Path | str | None = None,
):
"""
Assert "text" string via snapshot file
"""
assert isinstance(got, str), f'Got {got!r} of type {type(got).__name__}, but expected a str'
snapshot_file = get_snapshot_file(
root_dir=root_dir,
snapshot_name=snapshot_name,
name_suffix=name_suffix,
extension=extension,
self_file_path=self_file_path,
)
try:
expected = snapshot_file.read_bytes().decode('utf-8')
except OSError:
snapshot_file.write_bytes(got.encode('utf-8'))
if not raise_snapshot_errors():
return
raise
if got != expected:
snapshot_file.write_bytes(got.encode('utf-8'))
if re.sub(_UNIFY_NEWLINES_RE, '', got) == re.sub(_UNIFY_NEWLINES_RE, '', expected):
raise AssertionError(f'Differing newlines: Expected {expected!r}, got {got!r}')
if raise_snapshot_errors():
# display error message with diff:
assert_text_equal(
got, expected,
fromfile=fromfile, tofile=tofile,
diff_func=diff_func,
msg=snapshot_name or snapshot_file,
raise_cls=SnapshotChanged,
)
def assert_snapshot(
root_dir: pathlib.Path | str | None = None,
snapshot_name: str | None = None,
got: dict | list | None = None,
name_suffix: str | None = None,
extension: str = '.json',
fromfile: str = 'got',
tofile: str = 'expected',
diff_func: Callable = pformat_unified_diff,
self_file_path: pathlib.Path | str | None = None,
):
"""
Assert given data serialized to JSON snapshot file.
Note: You can't assert objects that contains tuple() !
Use assert_py_snapshot() in this case.
"""
assert got is None or isinstance(got, (dict, list)), \
f'Not JSON-serializable: {got!r} is not a dict or list, but a {type(got).__name__}'
snapshot_file = get_snapshot_file(
root_dir=root_dir,
snapshot_name=snapshot_name,
name_suffix=name_suffix,
extension=extension,
self_file_path=self_file_path,
)
try:
with snapshot_file.open('r') as snapshot_handle:
expected = json.load(snapshot_handle)
except (ValueError, OSError):
_write_json(got, snapshot_file)
if not raise_snapshot_errors():
return
raise
if got != expected:
_write_json(got, snapshot_file)
if raise_snapshot_errors():
# display error message with diff:
assert_equal(
got, expected,
fromfile=fromfile, tofile=tofile,
diff_func=diff_func,
msg=snapshot_name or snapshot_file,
raise_cls=SnapshotChanged,
)
def assert_py_snapshot(
root_dir: pathlib.Path | str | None = None,
snapshot_name: str | None = None,
got: Any = None,
name_suffix: str | None = None,
extension: str = '.txt',
fromfile: str = 'got',
tofile: str = 'expected',
diff_func: Callable = _unified_diff,
self_file_path: pathlib.Path | str | None = None,
):
"""
Assert complex python objects vio PrettyPrinter() snapshot file.
Advantage over JSON:
- More python object types are supported
- The comparison is stricter. e.g.: UUID object instance vs. UUID string
"""
got_str = pprint.pformat(got, indent=4, width=120)
snapshot_file = get_snapshot_file(
root_dir=root_dir,
snapshot_name=snapshot_name,
name_suffix=name_suffix,
extension=extension,
self_file_path=self_file_path,
)
try:
expected_str = snapshot_file.read_text()
except FileNotFoundError:
snapshot_file.write_text(got_str)
if not raise_snapshot_errors():
return
raise
if got_str != expected_str:
snapshot_file.write_text(got_str)
if raise_snapshot_errors():
# display error message with diff:
assert_equal(
got_str, expected_str,
fromfile=fromfile, tofile=tofile,
diff_func=diff_func,
msg=snapshot_name or snapshot_file,
raise_cls=SnapshotChanged,
)
def assert_html_snapshot(
root_dir: pathlib.Path | str | None = None,
snapshot_name: str | None = None,
got: str | None = None,
name_suffix: str | None = None,
extension: str = '.html',
fromfile: str = 'got',
tofile: str = 'expected',
diff_func: Callable = text_unified_diff,
self_file_path: pathlib.Path | str | None = None,
validate: bool = True,
validate_kwargs: dict | None = None,
pretty_format: bool = True,
pretty_kwargs: dict | None = None,
query_selector: str | None = None,
query_selector_kwargs: dict | None = None,
):
"""
Assert "html" string via snapshot file with validate and pretty format
Use "query_selector" to limit the snapshot to one or more elements. If the selector does not
find any elements, an ElementsNotFoundError is raised.
"""
assert isinstance(got, str)
if validate:
if validate_kwargs is None:
validate_kwargs = {}
validate_html(got, **validate_kwargs)
if query_selector:
if query_selector_kwargs is None:
query_selector_kwargs = {}
got = get_html_elements(got, query_selector, **query_selector_kwargs)
if pretty_format:
if pretty_kwargs is None:
pretty_kwargs = {}
got = pretty_format_html(got, **pretty_kwargs)
assert_text_snapshot(
root_dir=root_dir,
snapshot_name=snapshot_name,
name_suffix=name_suffix,
got=got,
extension=extension,
fromfile=fromfile,
tofile=tofile,
diff_func=diff_func,
self_file_path=self_file_path,
)
def _binary_str(data):
return f'{len(data)} Bytes, MD5 {hashlib.md5(data).hexdigest()}'
def binary_diff(got, expected, fromfile, tofile):
expected_repr = _binary_str(expected)
got_repr = _binary_str(got)
return (
f'{tofile}: {expected_repr}\n'
f'{fromfile}: {got_repr}'
)
def assert_binary_snapshot(
root_dir: pathlib.Path | str | None = None,
snapshot_name: str | None = None,
got: bytes = None,
name_suffix: str | None = None,
extension: str = '.bin',
fromfile: str = 'got',
tofile: str = 'expected',
diff_func: Callable = binary_diff,
self_file_path: pathlib.Path | str | None = None,
):
"""
Assert binary data via snapshot file
"""
assert isinstance(got, bytes)
snapshot_file = get_snapshot_file(
root_dir=root_dir,
snapshot_name=snapshot_name,
name_suffix=name_suffix,
extension=extension,
self_file_path=self_file_path,
)
try:
expected = snapshot_file.read_bytes()
except OSError:
snapshot_file.write_bytes(got)
if not raise_snapshot_errors():
return
raise
if got != expected:
snapshot_file.write_bytes(got)
if raise_snapshot_errors():
assert_equal(
got, expected,
fromfile=fromfile, tofile=tofile,
diff_func=diff_func,
msg=snapshot_name or snapshot_file,
raise_cls=SnapshotChanged,
)