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>.
|
|
|
|
|
2018-05-11 12:53:51 +00:00
|
|
|
import pytest
|
2017-01-03 18:40:05 +00:00
|
|
|
|
2020-01-31 15:37:37 +00:00
|
|
|
from trezorlib import messages
|
2020-01-21 09:05:48 +00:00
|
|
|
from trezorlib.btc import get_public_node
|
|
|
|
from trezorlib.tools import parse_path
|
2014-06-17 13:31:10 +00:00
|
|
|
|
2020-01-31 15:37:37 +00:00
|
|
|
ADDRESS_N = parse_path("44'/0'/0'")
|
|
|
|
XPUB = "xpub6BiVtCpG9fQPxnPmHXG8PhtzQdWC2Su4qWu6XW9tpWFYhxydCLJGrWBJZ5H6qTAHdPQ7pQhtpjiYZVZARo14qHiay2fvrX996oEP42u8wZy"
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2020-01-21 09:05:48 +00:00
|
|
|
@pytest.mark.skip_ui
|
|
|
|
@pytest.mark.setup_client(pin=True, passphrase=True)
|
|
|
|
def test_clear_session(client):
|
|
|
|
if client.features.model == "1":
|
2020-01-31 15:37:37 +00:00
|
|
|
init_responses = [messages.PinMatrixRequest(), messages.PassphraseRequest()]
|
2020-01-21 09:05:48 +00:00
|
|
|
else:
|
2020-01-31 15:37:37 +00:00
|
|
|
init_responses = [messages.PassphraseRequest()]
|
|
|
|
|
|
|
|
cached_responses = [messages.PublicKey()]
|
2014-06-17 13:31:10 +00:00
|
|
|
|
2020-01-21 09:05:48 +00:00
|
|
|
with client:
|
|
|
|
client.set_expected_responses(init_responses + cached_responses)
|
2020-01-31 15:37:37 +00:00
|
|
|
assert get_public_node(client, ADDRESS_N).xpub == XPUB
|
2014-06-17 13:31:10 +00:00
|
|
|
|
2020-01-21 09:05:48 +00:00
|
|
|
with client:
|
|
|
|
# pin and passphrase are cached
|
|
|
|
client.set_expected_responses(cached_responses)
|
2020-01-31 15:37:37 +00:00
|
|
|
assert get_public_node(client, ADDRESS_N).xpub == XPUB
|
2014-06-17 13:31:10 +00:00
|
|
|
|
2020-01-21 09:05:48 +00:00
|
|
|
client.clear_session()
|
2014-06-17 13:31:10 +00:00
|
|
|
|
2020-01-21 09:05:48 +00:00
|
|
|
# session cache is cleared
|
|
|
|
with client:
|
|
|
|
client.set_expected_responses(init_responses + cached_responses)
|
2020-01-31 15:37:37 +00:00
|
|
|
assert get_public_node(client, ADDRESS_N).xpub == XPUB
|
2020-01-21 09:05:48 +00:00
|
|
|
|
|
|
|
with client:
|
|
|
|
# pin and passphrase are cached
|
|
|
|
client.set_expected_responses(cached_responses)
|
2020-01-31 15:37:37 +00:00
|
|
|
assert get_public_node(client, ADDRESS_N).xpub == XPUB
|