mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-10 17:51:16 +00:00
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
from common import *
|
|
from apps.common.paths import HARDENED
|
|
from apps.monero.misc import validate_full_path
|
|
|
|
|
|
class TestMoneroGetAddress(unittest.TestCase):
|
|
|
|
def test_paths(self):
|
|
# 44'/128'/a' is correct
|
|
incorrect_paths = [
|
|
[44 | HARDENED],
|
|
[44 | HARDENED, 128 | HARDENED],
|
|
[44 | HARDENED, 128 | HARDENED, 0],
|
|
[44 | HARDENED, 128 | HARDENED, 0 | HARDENED, 0 | HARDENED],
|
|
[44 | HARDENED, 128 | HARDENED, 0 | HARDENED, 0 | HARDENED, 0 | HARDENED],
|
|
[44 | HARDENED, 128 | HARDENED, 0 | HARDENED, 1, 0],
|
|
[44 | HARDENED, 128 | HARDENED, 0 | HARDENED, 0, 0],
|
|
[44 | HARDENED, 128 | HARDENED, 9999000 | HARDENED],
|
|
[44 | HARDENED, 60 | HARDENED, 0 | HARDENED, 0, 0],
|
|
[1 | HARDENED, 1 | HARDENED, 1 | HARDENED],
|
|
]
|
|
correct_paths = [
|
|
[44 | HARDENED, 128 | HARDENED, 0 | HARDENED],
|
|
[44 | HARDENED, 128 | HARDENED, 3 | HARDENED],
|
|
[44 | HARDENED, 128 | HARDENED, 9 | HARDENED],
|
|
]
|
|
|
|
for path in incorrect_paths:
|
|
self.assertFalse(validate_full_path(path))
|
|
|
|
for path in correct_paths:
|
|
self.assertTrue(validate_full_path(path))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|