2019-12-30 13:09:18 +00:00
|
|
|
import shutil
|
2021-09-02 11:04:16 +00:00
|
|
|
import sys
|
2019-12-30 13:09:18 +00:00
|
|
|
from pathlib import Path
|
|
|
|
|
2021-09-02 11:04:16 +00:00
|
|
|
ROOT = Path(__file__).parent / ".."
|
|
|
|
sys.path.insert(0, str(ROOT))
|
|
|
|
# Needed for setup purposes, filling the FILE_HASHES dict
|
|
|
|
from tests.ui_tests import read_fixtures # isort:skip
|
2019-12-30 13:09:18 +00:00
|
|
|
|
2021-09-02 11:04:16 +00:00
|
|
|
read_fixtures()
|
|
|
|
from tests.ui_tests import _hash_files, FILE_HASHES, SCREENS_DIR # isort:skip
|
2019-12-30 13:09:18 +00:00
|
|
|
|
|
|
|
|
2021-09-02 11:04:16 +00:00
|
|
|
for test_case in FILE_HASHES.keys():
|
|
|
|
recorded_dir = SCREENS_DIR / test_case / "recorded"
|
|
|
|
expected_hash = FILE_HASHES[test_case]
|
2020-01-06 14:44:30 +00:00
|
|
|
actual_hash = _hash_files(recorded_dir)
|
|
|
|
assert expected_hash == actual_hash
|
2021-09-02 11:04:16 +00:00
|
|
|
shutil.make_archive(ROOT / "ci/ui_test_records" / actual_hash, "zip", recorded_dir)
|