1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/tests/device_tests/test_bip32_speed.py

69 lines
2.4 KiB
Python
Raw Normal View History

# This file is part of the Trezor project.
2017-01-03 18:40:05 +00:00
#
2019-05-29 16:44:09 +00:00
# Copyright (C) 2012-2019 SatoshiLabs and contributors
2017-01-03 18:40:05 +00:00
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# as published by the Free Software Foundation.
2017-01-03 18:40:05 +00:00
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the License along with this library.
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
import time
2018-08-13 16:21:24 +00:00
import pytest
2017-06-23 19:31:42 +00:00
2018-08-10 12:04:58 +00:00
from trezorlib import btc
2018-08-13 16:21:24 +00:00
from trezorlib.tools import H_
@pytest.mark.flaky(max_runs=5)
2019-09-11 12:29:39 +00:00
class TestBip32Speed:
2019-11-01 13:59:12 +00:00
@pytest.mark.skip_t2
def test_public_ckd(self, client):
btc.get_address(client, "Bitcoin", []) # to compute root node via BIP39
for depth in range(8):
start = time.time()
btc.get_address(client, "Bitcoin", range(depth))
delay = time.time() - start
expected = (depth + 1) * 0.26
2016-05-05 01:16:17 +00:00
print("DEPTH", depth, "EXPECTED DELAY", expected, "REAL DELAY", delay)
assert delay <= expected
2019-11-01 13:59:12 +00:00
@pytest.mark.skip_t2
def test_private_ckd(self, client):
btc.get_address(client, "Bitcoin", []) # to compute root node via BIP39
for depth in range(8):
start = time.time()
address_n = [H_(-i) for i in range(-depth, 0)]
btc.get_address(client, "Bitcoin", address_n)
delay = time.time() - start
expected = (depth + 1) * 0.26
2016-05-05 01:16:17 +00:00
print("DEPTH", depth, "EXPECTED DELAY", expected, "REAL DELAY", delay)
assert delay <= expected
@pytest.mark.skip_t2
def test_cache(self, client):
2015-01-26 12:08:29 +00:00
start = time.time()
2015-01-26 18:24:31 +00:00
for x in range(10):
btc.get_address(client, "Bitcoin", [x, 2, 3, 4, 5, 6, 7, 8])
2015-01-26 12:08:29 +00:00
nocache_time = time.time() - start
start = time.time()
2015-01-26 18:24:31 +00:00
for x in range(10):
btc.get_address(client, "Bitcoin", [1, 2, 3, 4, 5, 6, 7, x])
2015-01-26 12:08:29 +00:00
cache_time = time.time() - start
2016-05-05 01:16:17 +00:00
print("NOCACHE TIME", nocache_time)
print("CACHED TIME", cache_time)
2015-01-26 12:08:29 +00:00
# Cached time expected to be at least 2x faster
assert cache_time <= nocache_time / 2.0