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>.
|
|
|
|
|
2020-04-27 11:15:25 +00:00
|
|
|
from trezorlib import messages
|
2014-02-07 10:31:12 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2020-04-27 11:15:25 +00:00
|
|
|
def test_ping(client):
|
|
|
|
with client:
|
2021-01-14 14:26:01 +00:00
|
|
|
client.set_expected_responses([messages.Success])
|
2020-04-27 11:15:25 +00:00
|
|
|
res = client.ping("random data")
|
|
|
|
assert res == "random data"
|
2014-02-21 06:28:56 +00:00
|
|
|
|
2020-04-27 11:15:25 +00:00
|
|
|
with client:
|
|
|
|
client.set_expected_responses(
|
|
|
|
[
|
|
|
|
messages.ButtonRequest(code=messages.ButtonRequestType.ProtectCall),
|
2021-01-14 14:26:01 +00:00
|
|
|
messages.Success,
|
2020-04-27 11:15:25 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
res = client.ping("random data", button_protection=True)
|
|
|
|
assert res == "random data"
|