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>.
|
2017-01-03 18:40:05 +00:00
|
|
|
|
2013-10-11 01:51:45 +00:00
|
|
|
import time
|
2018-08-13 16:21:24 +00:00
|
|
|
|
2018-05-11 12:53:51 +00:00
|
|
|
import pytest
|
|
|
|
|
2020-01-21 09:05:48 +00:00
|
|
|
from trezorlib import btc, messages as proto
|
2018-11-14 13:44:05 +00:00
|
|
|
from trezorlib.exceptions import PinException
|
2018-05-21 12:28:53 +00:00
|
|
|
|
2014-02-03 23:32:10 +00:00
|
|
|
# FIXME TODO Add passphrase tests
|
2013-01-14 13:44:11 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2017-12-19 18:24:18 +00:00
|
|
|
@pytest.mark.skip_t2
|
2019-09-11 12:29:39 +00:00
|
|
|
class TestProtectCall:
|
2020-01-21 09:05:48 +00:00
|
|
|
def _some_protected_call(self, client):
|
2013-01-14 16:05:38 +00:00
|
|
|
# This method perform any call which have protection in the device
|
2020-01-21 09:05:48 +00:00
|
|
|
res = btc.get_address(client, "Testnet", [0])
|
|
|
|
assert res == "mndoQDWatQhfeQbprzZxD43mZ75Z94D6vz"
|
2013-10-11 01:51:45 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_no_protection(self, client):
|
|
|
|
with client:
|
2020-01-21 09:05:48 +00:00
|
|
|
client.set_expected_responses([proto.Address()])
|
|
|
|
self._some_protected_call(client)
|
2019-08-27 14:58:59 +00:00
|
|
|
|
2020-01-21 09:05:48 +00:00
|
|
|
@pytest.mark.setup_client(pin="1234")
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_pin(self, client):
|
|
|
|
with client:
|
2020-04-27 14:37:07 +00:00
|
|
|
client.use_pin_sequence(["1234"])
|
2020-01-21 09:05:48 +00:00
|
|
|
client.set_expected_responses([proto.PinMatrixRequest(), proto.Address()])
|
|
|
|
self._some_protected_call(client)
|
2014-02-13 15:47:28 +00:00
|
|
|
|
2020-01-21 09:05:48 +00:00
|
|
|
@pytest.mark.setup_client(pin="1234")
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_incorrect_pin(self, client):
|
2017-12-23 20:20:49 +00:00
|
|
|
with pytest.raises(PinException):
|
2020-02-12 14:38:18 +00:00
|
|
|
client.use_pin_sequence(["5678"])
|
2020-01-21 09:05:48 +00:00
|
|
|
self._some_protected_call(client)
|
2014-02-17 00:54:54 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
@pytest.mark.setup_client(pin="1234", passphrase=True)
|
|
|
|
def test_exponential_backoff_with_reboot(self, client):
|
2013-10-11 01:51:45 +00:00
|
|
|
def test_backoff(attempts, start):
|
2016-05-20 15:20:11 +00:00
|
|
|
if attempts <= 1:
|
2016-08-30 10:55:18 +00:00
|
|
|
expected = 0
|
2016-05-20 15:20:11 +00:00
|
|
|
else:
|
2017-12-16 21:37:21 +00:00
|
|
|
expected = (2 ** (attempts - 1)) - 1
|
2017-12-18 20:00:52 +00:00
|
|
|
got = round(time.time() - start, 2)
|
2017-12-23 20:20:49 +00:00
|
|
|
assert got >= expected
|
2013-10-11 01:51:45 +00:00
|
|
|
|
2018-09-12 18:37:12 +00:00
|
|
|
for attempt in range(1, 4):
|
2013-10-11 01:51:45 +00:00
|
|
|
start = time.time()
|
2020-02-12 14:38:18 +00:00
|
|
|
with client, pytest.raises(PinException):
|
|
|
|
client.use_pin_sequence(["5678"])
|
2020-01-21 09:05:48 +00:00
|
|
|
self._some_protected_call(client)
|
2013-10-11 01:51:45 +00:00
|
|
|
test_backoff(attempt, start)
|