python-trezor/tests/test_basic.py

40 lines
1.1 KiB
Python
Raw Normal View History

2012-11-15 12:05:57 -08:00
import unittest
import common
2012-11-15 12:05:57 -08:00
from bitkeylib import proto
'''
TODO:
* Features reflects all variations of LoadDevice
* Maxfee settings
* Client requires OTP
* Client requires PIN
'''
class TestBasic(common.BitkeyTest):
def test_features(self):
features = self.bitkey.call(proto.Initialize())
# Result is the same as reported by BitkeyClient class
self.assertEqual(features, self.bitkey.features)
def test_ping(self):
ping = self.bitkey.call(proto.Ping(message='ahoj!'))
# Ping results in Success(message='Ahoj!')
self.assertEqual(ping, proto.Success(message='ahoj!'))
def test_uuid(self):
uuid1 = self.bitkey.get_uuid()
2013-01-24 06:51:12 -08:00
self.bitkey.init_device()
uuid2 = self.bitkey.get_uuid()
# UUID must be longer than 10 characters
2013-01-24 06:51:12 -08:00
self.assertEqual(len(uuid1), 9)
# Every resulf of UUID must be the same
self.assertEqual(uuid1, uuid2)
if __name__ == '__main__':
unittest.main()