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 d2ac4e7a9c
feat(tests): add tests for blind EIP-712 signing
2 years ago
..
binance chore(tests): organize device tests into folders 2 years ago
bitcoin test(core): make sure path check fails immediately 2 years ago
cardano tests: add tests for different Cardano derivations 3 years ago
eos chore(tests): removing classes from device test files 2 years ago
ethereum feat(tests): add tests for blind EIP-712 signing 2 years ago
misc chore(tests): more test reorganizations 2 years ago
monero chore(tests): removing classes from device test files 2 years ago
nem chore(tests): more test reorganizations 2 years ago
reset_recovery chore(tests): more test reorganizations 2 years ago
ripple chore(tests): removing classes from device test files 2 years ago
stellar chore(tests): more test reorganizations 2 years ago
tezos chore(tests): removing classes from device test files 2 years ago
webauthn chore(tests): more test reorganizations 2 years ago
.gitignore tests: move device tests to top-level 5 years ago
README.md docs: move docs to root 4 years ago
__init__.py tests: move device tests to top-level 5 years ago
signtx.py test: Add device tests for replacement transaction flow. 4 years ago
test_autolock.py test: wait longer for autolock 3 years ago
test_basic.py chore(tests): removing classes from device test files 2 years ago
test_bip32_speed.py chore(tests): removing classes from device test files 2 years ago
test_cancel.py fix(tests): Fix SignMessage tests after adding address dialog. 3 years ago
test_debuglink.py chore(tests): removing classes from device test files 2 years ago
test_msg_applysettings.py chore(tests): removing classes from device test files 2 years ago
test_msg_backup_device.py fix(tests): auto-swipe by using only ButtonRequest.pages 3 years ago
test_msg_change_wipe_code_t1.py test: Use long PIN values in device tests. 3 years ago
test_msg_change_wipe_code_t2.py test: Use long PIN values in device tests. 3 years ago
test_msg_changepin_t1.py chore(tests): more test reorganizations 2 years ago
test_msg_changepin_t2.py refactor(core): convert apps.common.request_pin to layouts 3 years ago
test_msg_loaddevice.py chore(tests): removing classes from device test files 2 years ago
test_msg_ping.py tests: use modified protobuf classes correctly 3 years ago
test_msg_sd_protect.py tests: make {needs,no}_backup flags available in test suite 5 years ago
test_msg_wipedevice.py test: wait longer for autolock 3 years ago
test_passphrase_slip39_advanced.py tests: use new trezorlib locking/sessioning API where appropriate 4 years ago
test_passphrase_slip39_basic.py chore(tests): using setup_client for setting the passphrase in device tests where applicable 3 years ago
test_pin.py feat(tests): PIN and protection_levels tests for TT 3 years ago
test_protection_levels.py fix(tests): Fix SignMessage tests after adding address dialog. 3 years ago
test_sdcard.py tests: watch_layout must be explicit (fixes #1142) 4 years ago
test_session.py tests: add tests for different Cardano derivations 3 years ago
test_session_id_and_passphrase.py tests: add tests for different Cardano derivations 3 years 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 -m stellar  # only runs tests marked with @pytest.mark.stellar

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

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

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 wan't 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