You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/tests/device_tests
matejcik 5f016a896a
chore: upgrade style checkers
3 months ago
..
binance feat(core): show account number in receive/public key details for altcoins 8 months ago
bitcoin feat(core/bitcoin): send BIP-380 descriptor in GetPublicKey response 3 months ago
cardano chore: upgrade style checkers 3 months ago
eos feat(tests): add device tests for chunkifying addresses 8 months ago
ethereum chore: upgrade style checkers 3 months ago
misc style(tests): apply isort 5 9 months ago
monero feat(core): show account number in receive/public key details for altcoins 8 months ago
nem fix(tests): Safe 3 model name 7 months ago
reset_recovery feat(all): implement translations into Trezor 3 months ago
ripple feat(core): show account number in receive/public key details for altcoins 8 months ago
solana chore: upgrade style checkers 3 months ago
stellar feat(core): show account number in receive/public key details for altcoins 8 months ago
tezos feat(core): show account number in receive/public key details for altcoins 8 months ago
webauthn chore(tests): add type hints and improve styling in device test files 2 years ago
zcash fix(tests): Safe 3 model name 7 months ago
.gitignore tests: move device tests to top-level 5 years ago
README.md docs: move docs to root 5 years ago
__init__.py tests: move device tests to top-level 5 years ago
test_authenticate_device.py test(core): Update emulator device certificate. 8 months ago
test_autolock.py tests: tweak wait time for test_autolock_ignores_getaddress 1 year ago
test_basic.py feat(core): Add Capability.Translations to Features 3 months ago
test_bg.jpg fix(tests): set homescreen test uses colorful image, to better test homescreen rednering 1 year ago
test_bip32_speed.py feat(all): add UI for Model R 12 months ago
test_busy_state.py fix(tests): Safe 3 model name 7 months ago
test_cancel.py fix(tests): Safe 3 model name 7 months ago
test_debuglink.py feat(all): add UI for Model R 12 months ago
test_firmware_hash.py fix(tests): Safe 3 model name 7 months ago
test_language.py feat(core): Add language_version_matches flag to Features 3 months ago
test_msg_applysettings.py feat(all): implement translations into Trezor 3 months ago
test_msg_backup_device.py feat(all): implement translations into Trezor 3 months ago
test_msg_change_wipe_code_t1.py feat(all): add UI for Model R 12 months ago
test_msg_change_wipe_code_t2.py feat(core): new design of PIN dialogs 10 months ago
test_msg_changepin_t1.py feat(all): add UI for Model R 12 months ago
test_msg_changepin_t2.py feat(all): add UI for Model R 12 months ago
test_msg_loaddevice.py feat(all): implement translations into Trezor 3 months ago
test_msg_ping.py chore(tests): add type hints and improve styling in device test files 2 years ago
test_msg_sd_protect.py feat(all): add UI for Model R 12 months ago
test_msg_wipedevice.py chore(tests): add type hints and improve styling in device test files 2 years ago
test_passphrase_slip39_advanced.py chore(tests): add type hints and improve styling in device test files 2 years ago
test_passphrase_slip39_basic.py chore(tests): add type hints and improve styling in device test files 2 years ago
test_pin.py feat(all): add UI for Model R 12 months ago
test_protection_levels.py feat(all): implement translations into Trezor 3 months ago
test_sdcard.py feat(all): implement translations into Trezor 3 months ago
test_session.py chore(tests): change all the model-specific variables for button_requests to start with "is_" 8 months ago
test_session_id_and_passphrase.py feat(all): implement translations into Trezor 3 months ago

README.md

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 in tests folder.

Tests can be run only for specific models - it is done by disallowing the tests for the other models. @pytest.mark.skip_t1 @pytest.mark.skip_t2 @pytest.mark.skip_tr are valid markers to skip current test for T1, TT and TR respectively.

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