1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 05:49:11 +00:00
trezor-firmware/storage/tests
2024-04-05 18:54:30 +02:00
..
c feat(core): use confidential section for confidential and sensitive data 2024-04-05 18:54:30 +02:00
c0
c3 feat(storage): return enum values instead of strings, so that they are translatable 2024-03-30 12:10:59 +01:00
python
tests test(storage): add upgrade test from version 3 2024-02-20 09:37:28 +01:00
Makefile test(storage): add upgrade test from version 3 2024-02-20 09:37:28 +01:00
README.md
test.py

Trezor Storage tests

This repository contains all the necessary files to properly test Trezor's internal storage.

This repository consists of:

  • c: The actual C version is implemented in the main storage folder, however we need some other accompanying files to build it on computer.
  • c0: This is the older version of Trezor storage. It is used to test upgrades from the older format to the newer one.
  • python: Python version. Serves as a reference implementation and is implemented purely for the goal of properly testing the C version.
  • tests: Most of the tests run the two implementations against each other. Uses Pytest and hypothesis for random tests.