2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 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-08-13 16:21:24 +00:00
|
|
|
from trezorlib import device, messages
|
2012-11-15 20:05:57 +00:00
|
|
|
|
|
|
|
|
2019-09-11 12:29:39 +00:00
|
|
|
class TestBasic:
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_features(self, client):
|
|
|
|
f0 = client.features
|
2020-04-29 13:46:47 +00:00
|
|
|
# client erases session_id from its features
|
|
|
|
f0.session_id = client.session_id
|
2020-09-15 11:06:41 +00:00
|
|
|
f1 = client.call(messages.Initialize(session_id=f0.session_id))
|
2018-02-26 14:18:05 +00:00
|
|
|
assert f0 == f1
|
2014-01-27 10:25:27 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_ping(self, client):
|
|
|
|
ping = client.call(messages.Ping(message="ahoj!"))
|
2018-08-13 16:21:24 +00:00
|
|
|
assert ping == messages.Success(message="ahoj!")
|
2014-01-27 10:25:27 +00:00
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_device_id_same(self, client):
|
|
|
|
id1 = client.get_device_id()
|
|
|
|
client.init_device()
|
|
|
|
id2 = 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
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_device_id_different(self, client):
|
|
|
|
id1 = client.get_device_id()
|
|
|
|
device.wipe(client)
|
|
|
|
id2 = client.get_device_id()
|
2014-02-01 12:39:21 +00:00
|
|
|
|
|
|
|
# Device ID must be fresh after every reset
|
2017-12-23 20:20:49 +00:00
|
|
|
assert id1 != id2
|