2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# Copyright (C) 2012-2018 SatoshiLabs and contributors
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
2018-06-21 14:28:34 +00:00
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# You should have received a copy of the License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
2017-01-03 18:40:05 +00:00
|
|
|
|
2018-05-11 12:53:51 +00:00
|
|
|
from .common import TrezorTest
|
2012-11-15 20:05:57 +00:00
|
|
|
|
2017-12-12 15:40:11 +00:00
|
|
|
from trezorlib import messages
|
2012-11-15 20:05:57 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
class TestBasic(TrezorTest):
|
2014-02-17 00:54:54 +00:00
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
def test_features(self):
|
2018-02-26 14:18:05 +00:00
|
|
|
f0 = self.client.features
|
|
|
|
f1 = self.client.call(messages.Initialize())
|
|
|
|
assert f0 == f1
|
2014-01-27 10:25:27 +00:00
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
def test_ping(self):
|
2013-12-30 22:35:20 +00:00
|
|
|
ping = self.client.call(messages.Ping(message='ahoj!'))
|
2017-12-23 20:20:49 +00:00
|
|
|
assert ping == messages.Success(message='ahoj!')
|
2014-01-27 10:25:27 +00:00
|
|
|
|
2014-02-01 12:39:21 +00:00
|
|
|
def test_device_id_same(self):
|
|
|
|
id1 = self.client.get_device_id()
|
2013-09-13 03:28:29 +00:00
|
|
|
self.client.init_device()
|
2014-02-01 12:39:21 +00:00
|
|
|
id2 = self.client.get_device_id()
|
2014-01-27 10:25:27 +00:00
|
|
|
|
2014-02-01 12:39:21 +00:00
|
|
|
# ID must be at least 12 characters
|
2017-12-23 20:20:49 +00:00
|
|
|
assert len(id1) >= 12
|
2014-01-27 10:25:27 +00:00
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
# Every resulf of UUID must be the same
|
2017-12-23 20:20:49 +00:00
|
|
|
assert id1 == id2
|
2014-02-01 12:39:21 +00:00
|
|
|
|
|
|
|
def test_device_id_different(self):
|
|
|
|
id1 = self.client.get_device_id()
|
|
|
|
self.client.wipe_device()
|
|
|
|
id2 = self.client.get_device_id()
|
|
|
|
|
|
|
|
# Device ID must be fresh after every reset
|
2017-12-23 20:20:49 +00:00
|
|
|
assert id1 != id2
|