From 4aafd2deff13f43bce1e231ac1fe574533796302 Mon Sep 17 00:00:00 2001 From: slush Date: Mon, 14 Jan 2013 14:44:11 +0100 Subject: [PATCH] Stub for protect_call tests --- tests/test_protect_call.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tests/test_protect_call.py diff --git a/tests/test_protect_call.py b/tests/test_protect_call.py new file mode 100644 index 0000000..dc818e7 --- /dev/null +++ b/tests/test_protect_call.py @@ -0,0 +1,30 @@ +import unittest +import common + +from bitkeylib import proto + +class TestProtectCall(common.BitkeyTest): + def test_features(self): + features = self.bitkey.call(proto.Initialize(session_id=self.bitkey.session_id)) + + # 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() + uuid2 = self.bitkey.get_uuid() + + # UUID must be longer than 10 characters + self.assertGreater(len(uuid1), 10) + + # Every resulf of UUID must be the same + self.assertEqual(uuid1, uuid2) + +if __name__ == '__main__': + unittest.main() \ No newline at end of file