1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-16 04:49:08 +00:00
trezor-firmware/tests/ui_tests/__init__.py

113 lines
3.4 KiB
Python
Raw Normal View History

2019-12-30 11:20:51 +00:00
import hashlib
import re
import shutil
from contextlib import contextmanager
from pathlib import Path
import pytest
2020-01-07 14:42:55 +00:00
from . import report
2019-12-30 11:20:51 +00:00
2020-01-09 11:29:45 +00:00
def get_test_name(node_id):
2019-12-30 11:20:51 +00:00
# Test item name is usually function name, but when parametrization is used,
# parameters are also part of the name. Some functions have very long parameter
# names (tx hashes etc) that run out of maximum allowable filename length, so
# we limit the name to first 100 chars. This is not a problem with txhashes.
2020-01-09 11:29:45 +00:00
new_name = node_id.replace("tests/device_tests/", "")
# remove ::TestClass:: if present because it is usually the same as the test file name
new_name = re.sub(r"::.*?::", "-", new_name)
new_name = new_name.replace("/", "-") # in case there is "/"
return new_name[:100]
2019-12-30 11:20:51 +00:00
def _check_fixture_directory(fixture_dir, screen_path):
# create the fixture dir if it does not exist
if not fixture_dir.exists():
fixture_dir.mkdir()
# delete old files
shutil.rmtree(screen_path, ignore_errors=True)
screen_path.mkdir()
def _process_recorded(screen_path):
# create hash
2020-01-06 14:44:30 +00:00
digest = _hash_files(screen_path)
(screen_path.parent / "hash.txt").write_text(digest)
2019-12-30 11:20:51 +00:00
_rename_records(screen_path)
def _rename_records(screen_path):
# rename screenshots
for index, record in enumerate(sorted(screen_path.iterdir())):
2020-01-06 14:44:30 +00:00
record.replace(screen_path / f"{index:08}.png")
2019-12-30 11:20:51 +00:00
2020-01-06 14:44:30 +00:00
def _hash_files(path):
files = path.iterdir()
2019-12-30 11:20:51 +00:00
hasher = hashlib.sha256()
for file in sorted(files):
2020-01-06 14:44:30 +00:00
hasher.update(file.read_bytes())
2019-12-30 11:20:51 +00:00
return hasher.digest().hex()
def _process_tested(fixture_test_path, test_name):
hash_file = fixture_test_path / "hash.txt"
if not hash_file.exists():
raise ValueError("File hash.txt not found.")
2020-01-06 14:44:30 +00:00
expected_hash = hash_file.read_text()
2019-12-30 11:20:51 +00:00
actual_path = fixture_test_path / "actual"
2020-01-06 14:44:30 +00:00
actual_hash = _hash_files(actual_path)
2019-12-30 11:20:51 +00:00
2020-01-06 14:44:30 +00:00
_rename_records(actual_path)
2019-12-30 11:20:51 +00:00
if actual_hash != expected_hash:
2020-01-07 14:42:55 +00:00
file_path = report.failure(
fixture_test_path, test_name, actual_hash, expected_hash
)
2020-01-07 14:42:55 +00:00
if (fixture_test_path / "success.html").exists():
(fixture_test_path / "success.html").unlink()
2019-12-30 11:20:51 +00:00
pytest.fail(
"Hash of {} differs.\nExpected: {}\nActual: {}\nDiff file: {}".format(
2020-01-07 14:42:55 +00:00
test_name, expected_hash, actual_hash, file_path
2019-12-30 11:20:51 +00:00
)
)
else:
2020-01-07 14:42:55 +00:00
report.success(fixture_test_path, test_name, actual_hash)
if (fixture_test_path / "failure_diff.html").exists():
(fixture_test_path / "failure_diff.html").unlink()
2019-12-30 11:20:51 +00:00
@contextmanager
def screen_recording(client, request):
2020-01-07 09:13:08 +00:00
test_ui = request.config.getoption("ui")
2020-01-09 11:29:45 +00:00
test_name = get_test_name(request.node.nodeid)
2020-01-06 14:44:30 +00:00
fixture_test_path = Path(__file__).parent.resolve() / "fixtures" / test_name
2019-12-30 11:20:51 +00:00
2020-01-07 09:13:08 +00:00
if test_ui == "record":
2019-12-30 11:20:51 +00:00
screen_path = fixture_test_path / "recorded"
2020-01-07 09:13:08 +00:00
elif test_ui == "test":
2019-12-30 11:20:51 +00:00
screen_path = fixture_test_path / "actual"
else:
2020-01-07 09:13:08 +00:00
raise ValueError("Invalid 'ui' option.")
2019-12-30 11:20:51 +00:00
_check_fixture_directory(fixture_test_path, screen_path)
try:
client.debug.start_recording(str(screen_path))
yield
finally:
client.debug.stop_recording()
2020-01-07 09:13:08 +00:00
if test_ui == "record":
2019-12-30 11:20:51 +00:00
_process_recorded(screen_path)
2020-01-07 09:13:08 +00:00
elif test_ui == "test":
2019-12-30 11:20:51 +00:00
_process_tested(fixture_test_path, test_name)
else:
2020-01-07 09:13:08 +00:00
raise ValueError("Invalid 'ui' option.")