2012-11-15 20:05:57 +00:00
|
|
|
import unittest
|
2013-01-14 13:44:31 +00:00
|
|
|
import common
|
2012-11-15 20:05:57 +00:00
|
|
|
|
2013-09-13 03:28:29 +00:00
|
|
|
from trezorlib import proto
|
2012-11-15 20:05:57 +00:00
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
'''
|
|
|
|
TODO:
|
|
|
|
* Features reflects all variations of LoadDevice
|
|
|
|
* Maxfee settings
|
|
|
|
* Client requires OTP
|
|
|
|
* Client requires PIN
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
2013-09-13 03:28:29 +00:00
|
|
|
class TestBasic(common.TrezorTest):
|
2012-12-03 15:36:03 +00:00
|
|
|
def test_features(self):
|
2013-09-13 03:28:29 +00:00
|
|
|
features = self.client.call(proto.Initialize())
|
2012-12-03 15:36:03 +00:00
|
|
|
|
|
|
|
# Result is the same as reported by BitkeyClient class
|
2013-09-13 03:28:29 +00:00
|
|
|
self.assertEqual(features, self.client.features)
|
2012-12-03 15:36:03 +00:00
|
|
|
|
|
|
|
def test_ping(self):
|
2013-09-13 03:28:29 +00:00
|
|
|
ping = self.client.call(proto.Ping(message='ahoj!'))
|
2012-12-03 15:36:03 +00:00
|
|
|
|
|
|
|
# Ping results in Success(message='Ahoj!')
|
|
|
|
self.assertEqual(ping, proto.Success(message='ahoj!'))
|
|
|
|
|
|
|
|
def test_uuid(self):
|
2013-10-08 18:34:21 +00:00
|
|
|
uuid1 = self.client.get_device_id()
|
2013-09-13 03:28:29 +00:00
|
|
|
self.client.init_device()
|
2013-10-08 18:34:21 +00:00
|
|
|
uuid2 = self.client.get_device_id()
|
2012-12-03 15:36:03 +00:00
|
|
|
|
|
|
|
# UUID must be longer than 10 characters
|
2013-09-13 03:28:29 +00:00
|
|
|
self.assertEqual(len(uuid1), 12)
|
2012-12-03 15:36:03 +00:00
|
|
|
|
|
|
|
# Every resulf of UUID must be the same
|
|
|
|
self.assertEqual(uuid1, uuid2)
|
2013-01-14 13:44:31 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2013-09-13 03:28:29 +00:00
|
|
|
unittest.main()
|