1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 06:19:27 +00:00
trezor-firmware/tests/device_tests
2022-01-27 15:07:30 +01:00
..
binance chore(tests): organize device tests into folders 2021-12-06 11:15:12 +01:00
bitcoin chore(tests): using real transactions in bitcoin/test_signtx.py 2022-01-27 15:07:30 +01:00
cardano tests: add tests for different Cardano derivations 2021-11-10 13:57:57 +01:00
eos chore(tests): removing classes from device test files 2021-12-06 11:15:12 +01:00
ethereum fix(core,legacy): Fix domain-only ethTypedData 2022-01-14 14:22:46 +01:00
misc chore(tests): more test reorganizations 2021-12-06 11:15:12 +01:00
monero chore(tests): removing classes from device test files 2021-12-06 11:15:12 +01:00
nem chore(tests): unifying NEM T1 and TT device tests 2022-01-12 14:53:20 +01:00
reset_recovery fix(tests): using press_info instead of click for info buttons 2022-01-27 13:15:04 +01:00
ripple chore(tests): removing classes from device test files 2021-12-06 11:15:12 +01:00
stellar chore(tests): more test reorganizations 2021-12-06 11:15:12 +01:00
tezos chore(tests): removing classes from device test files 2021-12-06 11:15:12 +01:00
webauthn chore(tests): more test reorganizations 2021-12-06 11:15:12 +01:00
__init__.py
.gitignore
README.md
signtx.py chore(tests): adding type hints to helper functions used in sign_tx tests 2022-01-27 15:07:30 +01:00
test_autolock.py
test_basic.py chore(tests): removing classes from device test files 2021-12-06 11:15:12 +01:00
test_bip32_speed.py chore(tests): removing classes from device test files 2021-12-06 11:15:12 +01:00
test_cancel.py
test_debuglink.py chore(tests): removing classes from device test files 2021-12-06 11:15:12 +01:00
test_msg_applysettings.py chore(tests): removing classes from device test files 2021-12-06 11:15:12 +01:00
test_msg_backup_device.py fix(tests): using press_info instead of click for info buttons 2022-01-27 13:15:04 +01:00
test_msg_change_wipe_code_t1.py
test_msg_change_wipe_code_t2.py
test_msg_changepin_t1.py chore(tests): more test reorganizations 2021-12-06 11:15:12 +01:00
test_msg_changepin_t2.py refactor(core): convert apps.common.request_pin to layouts 2021-03-30 22:34:01 +02:00
test_msg_loaddevice.py chore(tests): removing classes from device test files 2021-12-06 11:15:12 +01:00
test_msg_ping.py
test_msg_sd_protect.py
test_msg_wipedevice.py
test_passphrase_slip39_advanced.py
test_passphrase_slip39_basic.py
test_pin.py
test_protection_levels.py
test_sdcard.py
test_session_id_and_passphrase.py tests: add tests for different Cardano derivations 2021-11-10 13:57:57 +01:00
test_session.py tests: add tests for different Cardano derivations 2021-11-10 13:57:57 +01:00

Running device tests

1. Running the full test suite

Note: You need Poetry, as mentioned in the core's documentation section.

In the trezor-firmware checkout, in the root of the monorepo, install the environment:

poetry install

And run the automated tests:

poetry run make -C core test_emu

2. Running tests manually

Install the poetry environment as outlined above. Then switch to a shell inside the environment:

poetry shell

If you want to test against the emulator, run it in a separate terminal:

./core/emu.py

Now you can run the test suite with pytest from the root directory:

pytest tests/device_tests

Useful Tips

The tests are randomized using the pytest-random-order plugin. The random seed is printed in the header of the tests output, in case you need to run the tests in the same order.

If you only want to run a particular test, pick it with -k <keyword> or -m <marker>:

pytest -k nem      # only runs tests that have "nem" in the name
pytest -k "nem or stellar"  # only runs tests that have "nem" or "stellar" in the name
pytest -m stellar  # only runs tests marked with @pytest.mark.stellar

If you want to see debugging information and protocol dumps, run with -v.

Print statements from testing files are not shown by default. To enable them, use -s flag.

If you would like to interact with the device (i.e. press the buttons yourself), just prefix pytest with INTERACT=1:

INTERACT=1 pytest tests/device_tests

When testing transaction signing, there is an option to check transaction hashes on-chain using Blockbook. It is chosen by setting CHECK_ON_CHAIN=1 environment variable before running the tests.

CHECK_ON_CHAIN=1 pytest tests/device_tests

To run the tests quicker, spawn the emulator with disabled animations using -a flag.

./core/emu.py -a

To run the tests even quicker, the emulator should come from a frozen build. (However, then changes to python code files are not reflected in emulator, one needs to build it again each time.)

PYOPT=0 make build_unix_frozen

It is possible to specify the timeout for each test in seconds, using PYTEST_TIMEOUT env variable.

PYTEST_TIMEOUT=15 pytest tests/device_tests

When running tests from Makefile target, it is possible to specify TESTOPTS env variable with testing options, as if pytest would be called normally.

TESTOPTS="-x -v -k test_msg_backup_device.py" make test_emu

When troubleshooting an unstable test that is failing occasionally, following runs it until it fails (so failure is visible on screen):

export TESTOPTS="-x -v -k test_msg_backup_device.py"
while make test_emu; do sleep 1; done

3. Using markers

When you're developing a new currency, you should mark all tests that belong to that currency. For example, if your currency is called NewCoin, your device tests should have the following marker:

@pytest.mark.newcoin

This marker must be registered in REGISTERED_MARKERS file.

If you wish to run a test only on TT, mark it with @pytest.mark.skip_t1. If the test should only run on T1, mark it with @pytest.mark.skip_t2. You must not use both on the same test.

Extended testing and debugging

Building for debugging (Emulator only)

Build the debuggable unix binary so you can attach the gdb or lldb. This removes optimizations and reduces address space randomizaiton.

make build_unix_debug

The final executable is significantly slower due to ASAN(Address Sanitizer) integration. If you want to catch some memory errors use this.

time ASAN_OPTIONS=verbosity=1:detect_invalid_pointer_pairs=1:strict_init_order=true:strict_string_checks=true TREZOR_PROFILE="" poetry run make test_emu

Coverage (Emulator only)

Get the Python code coverage report.

If you want to get HTML/console summary output you need to install the coverage.py tool.

pip3 install coverage

Run the tests with coverage output.

make build_unix && make coverage