2018-06-21 14:28:34 +00:00
|
|
|
# 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
|
2018-06-21 14:28:34 +00:00
|
|
|
# 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.
|
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# 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>.
|
|
|
|
|
2014-02-04 15:12:52 +00:00
|
|
|
import time
|
2018-05-11 12:53:51 +00:00
|
|
|
|
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_
|
|
|
|
|
2014-02-04 15:12:52 +00:00
|
|
|
|
2019-08-06 13:49:36 +00:00
|
|
|
@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
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_public_ckd(self, client):
|
|
|
|
btc.get_address(client, "Bitcoin", []) # to compute root node via BIP39
|
2014-02-11 20:03:17 +00:00
|
|
|
|
2014-02-04 15:12:52 +00:00
|
|
|
for depth in range(8):
|
|
|
|
start = time.time()
|
2019-08-27 14:58:59 +00:00
|
|
|
btc.get_address(client, "Bitcoin", range(depth))
|
2014-02-04 15:12:52 +00:00
|
|
|
delay = time.time() - start
|
2014-02-21 06:28:56 +00:00
|
|
|
expected = (depth + 1) * 0.26
|
2016-05-05 01:16:17 +00:00
|
|
|
print("DEPTH", depth, "EXPECTED DELAY", expected, "REAL DELAY", delay)
|
2017-12-23 20:20:49 +00:00
|
|
|
assert delay <= expected
|
2014-02-04 15:12:52 +00:00
|
|
|
|
2019-11-01 13:59:12 +00:00
|
|
|
@pytest.mark.skip_t2
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_private_ckd(self, client):
|
|
|
|
btc.get_address(client, "Bitcoin", []) # to compute root node via BIP39
|
2014-02-11 20:03:17 +00:00
|
|
|
|
2014-02-04 15:12:52 +00:00
|
|
|
for depth in range(8):
|
|
|
|
start = time.time()
|
2018-06-14 12:57:20 +00:00
|
|
|
address_n = [H_(-i) for i in range(-depth, 0)]
|
2019-08-27 14:58:59 +00:00
|
|
|
btc.get_address(client, "Bitcoin", address_n)
|
2014-02-04 15:12:52 +00:00
|
|
|
delay = time.time() - start
|
2014-02-21 06:28:56 +00:00
|
|
|
expected = (depth + 1) * 0.26
|
2016-05-05 01:16:17 +00:00
|
|
|
print("DEPTH", depth, "EXPECTED DELAY", expected, "REAL DELAY", delay)
|
2017-12-23 20:20:49 +00:00
|
|
|
assert delay <= expected
|
2014-02-04 15:12:52 +00:00
|
|
|
|
2018-05-30 10:44:39 +00:00
|
|
|
@pytest.mark.skip_t2
|
2019-08-27 14:58:59 +00:00
|
|
|
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):
|
2019-08-27 14:58:59 +00:00
|
|
|
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):
|
2019-08-27 14:58:59 +00:00
|
|
|
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
|
|
|
|
2018-05-30 10:44:39 +00:00
|
|
|
# Cached time expected to be at least 2x faster
|
2018-10-01 12:01:33 +00:00
|
|
|
assert cache_time <= nocache_time / 2.0
|