# This file is part of the Trezor project. # # Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 # as published by the Free Software Foundation. # # 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. # # You should have received a copy of the License along with this library. # If not, see . import pytest from trezorlib import cardano, messages, models from trezorlib.btc import get_public_node from trezorlib.debuglink import TrezorClientDebugLink as Client from trezorlib.exceptions import TrezorFailure from trezorlib.tools import parse_path from ..common import get_test_address ADDRESS_N = parse_path("m/44h/0h/0h") XPUB = "xpub6BiVtCpG9fQPxnPmHXG8PhtzQdWC2Su4qWu6XW9tpWFYhxydCLJGrWBJZ5H6qTAHdPQ7pQhtpjiYZVZARo14qHiay2fvrX996oEP42u8wZy" PIN4 = "1234" @pytest.mark.setup_client(pin=PIN4, passphrase="") def test_clear_session(client: Client): is_t1 = client.model is models.T1B1 init_responses = [ messages.PinMatrixRequest if is_t1 else messages.ButtonRequest, messages.PassphraseRequest, ] cached_responses = [messages.PublicKey] with client: client.use_pin_sequence([PIN4]) client.set_expected_responses(init_responses + cached_responses) assert get_public_node(client, ADDRESS_N).xpub == XPUB with client: # pin and passphrase are cached client.set_expected_responses(cached_responses) assert get_public_node(client, ADDRESS_N).xpub == XPUB client.clear_session() # session cache is cleared with client: client.use_pin_sequence([PIN4]) client.set_expected_responses(init_responses + cached_responses) assert get_public_node(client, ADDRESS_N).xpub == XPUB with client: # pin and passphrase are cached client.set_expected_responses(cached_responses) assert get_public_node(client, ADDRESS_N).xpub == XPUB def test_end_session(client: Client): # client instance starts out not initialized # XXX do we want to change this? assert client.session_id is not None # get_address will succeed with client: client.set_expected_responses([messages.Address]) get_test_address(client) client.end_session() assert client.session_id is None with pytest.raises(TrezorFailure) as exc: get_test_address(client) assert exc.value.code == messages.FailureType.InvalidSession assert exc.value.message.endswith("Invalid session") client.init_device() assert client.session_id is not None with client: client.set_expected_responses([messages.Address]) get_test_address(client) with client: # end_session should succeed on empty session too client.set_expected_responses([messages.Success] * 2) client.end_session() client.end_session() def test_cannot_resume_ended_session(client: Client): session_id = client.session_id with client: client.set_expected_responses([messages.Features]) client.init_device(session_id=session_id) assert session_id == client.session_id client.end_session() with client: client.set_expected_responses([messages.Features]) client.init_device(session_id=session_id) assert session_id != client.session_id def test_end_session_only_current(client: Client): """test that EndSession only destroys the current session""" session_id_a = client.session_id client.init_device(new_session=True) session_id_b = client.session_id client.end_session() assert client.session_id is None # resume ended session client.init_device(session_id=session_id_b) assert client.session_id != session_id_b # resume first session that was not ended client.init_device(session_id=session_id_a) assert client.session_id == session_id_a @pytest.mark.setup_client(passphrase=True) def test_session_recycling(client: Client): session_id_orig = client.session_id with client: client.set_expected_responses( [ messages.PassphraseRequest, messages.ButtonRequest, messages.ButtonRequest, messages.Address, ] ) client.use_passphrase("TREZOR") address = get_test_address(client) # create and close 100 sessions - more than the session limit for _ in range(100): client.init_device(new_session=True) client.end_session() # it should still be possible to resume the original session with client: # passphrase should still be cached client.set_expected_responses([messages.Features, messages.Address]) client.use_passphrase("TREZOR") client.init_device(session_id=session_id_orig) assert address == get_test_address(client) @pytest.mark.altcoin @pytest.mark.cardano @pytest.mark.skip_t1b1 def test_derive_cardano_empty_session(client: Client): # start new session client.init_device(new_session=True) session_id = client.session_id # restarting same session should go well client.init_device() assert session_id == client.session_id # restarting same session should go well with any setting client.init_device(derive_cardano=False) assert session_id == client.session_id client.init_device(derive_cardano=True) assert session_id == client.session_id @pytest.mark.altcoin @pytest.mark.cardano @pytest.mark.skip_t1b1 def test_derive_cardano_running_session(client: Client): # start new session client.init_device(new_session=True) session_id = client.session_id # force derivation of seed get_test_address(client) # session should not have Cardano capability with pytest.raises(TrezorFailure, match="not enabled"): cardano.get_public_key(client, parse_path("m/44h/1815h/0h")) # restarting same session should go well client.init_device() assert session_id == client.session_id # restarting same session should go well if we _don't_ want to derive cardano client.init_device(derive_cardano=False) assert session_id == client.session_id # restarting with derive_cardano=True should kill old session and create new one client.init_device(derive_cardano=True) assert session_id != client.session_id session_id = client.session_id # new session should have Cardano capability cardano.get_public_key(client, parse_path("m/44h/1815h/0h")) # restarting with derive_cardano=True should keep same session client.init_device(derive_cardano=True) assert session_id == client.session_id # restarting with no setting should keep same session client.init_device() assert session_id == client.session_id # restarting with derive_cardano=False should kill old session and create new one client.init_device(derive_cardano=False) assert session_id != client.session_id with pytest.raises(TrezorFailure, match="not enabled"): cardano.get_public_key(client, parse_path("m/44h/1815h/0h"))