python-trezor/tests/test_protect_call.py

92 lines
3.4 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-01-12 07:16:07 -08:00
from trezorlib.client import PinException
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):
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')
2013-01-14 08:05:38 -08:00
def test_no_protection(self):
2014-02-03 15:32:10 -08:00
self.client.wipe_device()
2014-01-12 07:16:07 -08:00
self.client.load_device_by_mnemonic(
mnemonic=self.mnemonic1,
pin='',
passphrase_protection=False,
label='test',
language='english',
)
2013-01-14 05:44:11 -08:00
self.assertEqual(self.client.debug.read_pin()[0], '')
self.client.set_expected_buttonrequests([])
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-03 15:32:10 -08:00
self.client.wipe_device()
2014-01-12 07:16:07 -08:00
self.client.load_device_by_mnemonic(mnemonic=self.mnemonic1,
pin=self.pin2,
passphrase_protection=True,
2014-01-12 07:16:07 -08:00
label='test',
language='english')
2013-01-14 08:05:38 -08:00
self.assertEqual(self.client.debug.read_pin()[0], self.pin2)
self.client.setup_debuglink(button=True, pin_correct=True)
self.client.set_expected_buttonrequests([types.ButtonRequest_Other])
self._some_protected_call(True, True, False)
2013-01-14 08:05:38 -08:00
def test_incorrect_pin(self):
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):
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):
self.client.setup_debuglink(button=True, pin_correct=False)
2013-01-14 08:05:38 -08:00
def test_backoff(attempts, start):
expected = 1.8 ** 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-02-03 15:32:10 -08:00
for attempt in range(1, 4):
start = time.time()
self.assertRaises(PinException, self._some_protected_call, False, True, False)
test_backoff(attempt, start)
2014-02-06 01:43:26 -08:00
'''
# Unplug Trezor now
self.client.debuglink.stop()
self.client.close()
# Give it some time to reboot (it may take some time on RPi)
2013-10-10 21:19:06 -07:00
boot_delay = 20
time.sleep(boot_delay)
# Connect to Trezor again
2013-10-10 21:19:06 -07:00
start = time.time()
self.setUp()
2013-10-10 21:19:06 -07:00
expected = 1.8 ** attempt / 2 # This test isn't accurate, let's expect at least some delay
took = time.time() - start
print "Expected reboot time at least %s seconds" % expected
print "Rebooted in %s seconds" % took
self.assertLessEqual(expected, time.time() - start, "Bootup took %s seconds, expected %s seconds or more!" % (took, expected))
2014-01-12 07:16:07 -08:00
'''
2013-01-14 05:44:11 -08:00
if __name__ == '__main__':
2013-09-12 20:28:29 -07:00
unittest.main()