2013-01-14 13:44:11 +00:00
|
|
|
import unittest
|
|
|
|
import common
|
|
|
|
|
2013-09-13 03:28:29 +00:00
|
|
|
from trezorlib.client import CallException, PinException
|
|
|
|
from trezorlib import proto
|
2013-01-14 13:44:11 +00:00
|
|
|
|
2013-09-13 03:28:29 +00:00
|
|
|
class TestProtectCall(common.TrezorTest):
|
2013-01-14 16:05:38 +00:00
|
|
|
def _some_protected_call(self):
|
|
|
|
# This method perform any call which have protection in the device
|
|
|
|
entropy_len = 10
|
2013-09-13 03:28:29 +00:00
|
|
|
entropy = self.client.get_entropy(entropy_len)
|
2013-01-14 16:05:38 +00:00
|
|
|
self.assertEqual(len(entropy), entropy_len)
|
2013-01-14 13:44:11 +00:00
|
|
|
|
2013-01-14 16:05:38 +00:00
|
|
|
def test_no_protection(self):
|
2013-09-13 03:28:29 +00:00
|
|
|
self.client.load_device(seed=self.mnemonic1, pin='')
|
2013-01-14 13:44:11 +00:00
|
|
|
|
2013-09-13 03:28:29 +00:00
|
|
|
self.assertEqual(self.client.debuglink.read_pin()[0], '')
|
2013-01-14 16:05:38 +00:00
|
|
|
self._some_protected_call()
|
|
|
|
|
2013-09-01 01:35:31 +00:00
|
|
|
def test_pin(self):
|
2013-09-13 03:28:29 +00:00
|
|
|
self.client.load_device(seed=self.mnemonic1, pin=self.pin2)
|
2013-01-14 16:05:38 +00:00
|
|
|
|
2013-09-13 03:28:29 +00:00
|
|
|
self.assertEqual(self.client.debuglink.read_pin()[0], self.pin2)
|
2013-01-14 16:05:38 +00:00
|
|
|
self._some_protected_call()
|
2013-01-14 13:44:11 +00:00
|
|
|
|
2013-01-14 16:05:38 +00:00
|
|
|
def test_incorrect_pin(self):
|
2013-09-13 03:28:29 +00:00
|
|
|
self.client.setup_debuglink(button=True, pin_correct=False)
|
2013-01-14 16:05:38 +00:00
|
|
|
self.assertRaises(PinException, self._some_protected_call)
|
|
|
|
|
2013-01-14 13:44:11 +00:00
|
|
|
if __name__ == '__main__':
|
2013-09-13 03:28:29 +00:00
|
|
|
unittest.main()
|