python-trezor/tests/test_protect_call.py

113 lines
4.5 KiB
Python
Raw Normal View History

import time
2013-01-14 05:44:11 -08:00
import unittest
import common
2014-02-06 01:43:26 -08:00
from trezorlib import messages_pb2 as proto
from trezorlib import types_pb2 as types
2014-02-15 11:31:34 -08:00
from trezorlib.client import PinException, CallException
2014-02-03 15:32:10 -08:00
# FIXME TODO Add passphrase tests
2013-01-14 05:44:11 -08:00
2013-09-12 20:28:29 -07:00
class TestProtectCall(common.TrezorTest):
2014-06-04 08:59:16 -07:00
def _some_protected_call(self, button, pin, passphrase):
2013-01-14 08:05:38 -08:00
# This method perform any call which have protection in the device
res = self.client.ping('random data',
button_protection=button,
pin_protection=pin,
passphrase_protection=passphrase)
2014-02-03 15:32:10 -08:00
self.assertEqual(res, 'random data')
2014-06-04 08:59:16 -07:00
"""
2014-02-15 11:31:34 -08:00
def test_expected_responses(self):
2014-02-16 16:54:54 -08:00
self.setup_mnemonic_pin_passphrase()
2014-02-15 11:31:34 -08:00
# This is low-level test of set_expected_responses()
# feature of debugging client
with self.client:
# Scenario 1 - Received unexpected message
self.client.set_expected_responses([])
self.assertRaises(CallException, self._some_protected_call, True, True, True)
with self.client:
# Scenario 2 - Received other than expected message
self.client.set_expected_responses([proto.Success()])
self.assertRaises(CallException, self._some_protected_call, True, True, True)
def scenario3():
with self.client:
# Scenario 3 - Not received expected message
self.client.set_expected_responses([proto.ButtonRequest(),
proto.Success(),
proto.Success()]) # This is expected, but not received
self._some_protected_call(True, False, False)
self.assertRaises(Exception, scenario3)
with self.client:
# Scenario 4 - Received what expected
self.client.set_expected_responses([proto.ButtonRequest(),
proto.PinMatrixRequest(),
proto.PassphraseRequest(),
proto.Success(message='random data')])
self._some_protected_call(True, True, True)
def scenario5():
with self.client:
# Scenario 5 - Failed message by field filter
self.client.set_expected_responses([proto.ButtonRequest(),
proto.Success(message='wrong data')])
self._some_protected_call(True, True, True)
self.assertRaises(CallException, scenario5)
2014-06-04 08:59:16 -07:00
"""
2014-02-15 11:31:34 -08:00
2013-01-14 08:05:38 -08:00
def test_no_protection(self):
2014-02-16 16:54:54 -08:00
self.setup_mnemonic_nopin_nopassphrase()
with self.client:
self.assertEqual(self.client.debug.read_pin()[0], '')
self.client.set_expected_responses([proto.Success()])
self._some_protected_call(False, True, True)
2013-01-14 08:05:38 -08:00
2013-08-31 18:35:31 -07:00
def test_pin(self):
2014-02-16 16:54:54 -08:00
self.setup_mnemonic_pin_passphrase()
with self.client:
self.assertEqual(self.client.debug.read_pin()[0], self.pin4)
self.client.setup_debuglink(button=True, pin_correct=True)
self.client.set_expected_responses([proto.ButtonRequest(),
proto.PinMatrixRequest(),
proto.Success()])
self._some_protected_call(True, True, False)
2013-01-14 08:05:38 -08:00
def test_incorrect_pin(self):
2014-02-16 16:54:54 -08:00
self.setup_mnemonic_pin_passphrase()
2013-09-12 20:28:29 -07:00
self.client.setup_debuglink(button=True, pin_correct=False)
self.assertRaises(PinException, self._some_protected_call, False, True, False)
2013-10-10 08:18:02 -07:00
def test_cancelled_pin(self):
2014-02-16 16:54:54 -08:00
self.setup_mnemonic_pin_passphrase()
self.client.setup_debuglink(button=True, pin_correct=False) # PIN cancel
self.assertRaises(PinException, self._some_protected_call, False, True, False)
def test_exponential_backoff_with_reboot(self):
2014-02-16 16:54:54 -08:00
self.setup_mnemonic_pin_passphrase()
self.client.setup_debuglink(button=True, pin_correct=False)
2014-02-16 16:54:54 -08:00
def test_backoff(attempts, start):
2014-06-04 08:59:16 -07:00
expected = 0.2 * (2 ** attempts)
got = time.time() - start
msg = "Pin delay expected to be at least %s seconds, got %s" % (expected, got)
print msg
self.assertLessEqual(expected, got, msg)
2014-06-04 08:59:16 -07:00
for attempt in range(1, 6):
start = time.time()
self.assertRaises(PinException, self._some_protected_call, False, True, False)
test_backoff(attempt, start)
2013-01-14 05:44:11 -08:00
if __name__ == '__main__':
2013-09-12 20:28:29 -07:00
unittest.main()