2020-02-17 16:35:46 +00:00
|
|
|
# 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 <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from trezorlib import device, messages
|
2022-01-31 12:25:30 +00:00
|
|
|
from trezorlib.debuglink import TrezorClientDebugLink as Client
|
2020-02-17 16:35:46 +00:00
|
|
|
from trezorlib.exceptions import TrezorFailure
|
|
|
|
from trezorlib.messages import SdProtectOperationType as Op
|
|
|
|
|
2023-08-11 15:57:32 +00:00
|
|
|
from .. import translations as TR
|
|
|
|
|
2023-05-12 09:19:35 +00:00
|
|
|
pytestmark = [pytest.mark.skip_t1, pytest.mark.skip_tr]
|
2020-02-17 16:35:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.sd_card(formatted=False)
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_sd_format(client: Client):
|
2020-02-17 16:35:46 +00:00
|
|
|
device.sd_protect(client, Op.ENABLE)
|
|
|
|
assert client.features.sd_protection is True
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.sd_card(formatted=False)
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_sd_no_format(client: Client):
|
2020-02-17 16:35:46 +00:00
|
|
|
def input_flow():
|
|
|
|
yield # enable SD protection?
|
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
yield # format SD card
|
|
|
|
client.debug.press_no()
|
|
|
|
|
|
|
|
with pytest.raises(TrezorFailure) as e, client:
|
|
|
|
client.set_input_flow(input_flow)
|
|
|
|
device.sd_protect(client, Op.ENABLE)
|
|
|
|
|
2020-03-24 15:24:53 +00:00
|
|
|
assert e.value.code == messages.FailureType.ProcessError
|
2020-02-21 14:53:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.sd_card
|
|
|
|
@pytest.mark.setup_client(pin="1234")
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_sd_protect_unlock(client: Client):
|
2022-10-25 13:08:19 +00:00
|
|
|
layout = client.debug.wait_layout
|
|
|
|
|
2020-02-21 14:53:53 +00:00
|
|
|
def input_flow_enable_sd_protect():
|
2020-04-27 11:15:25 +00:00
|
|
|
yield # Enter PIN to unlock device
|
2023-06-20 07:25:02 +00:00
|
|
|
assert "PinKeyboard" in layout().all_components()
|
2020-04-27 11:15:25 +00:00
|
|
|
client.debug.input("1234")
|
|
|
|
|
2020-02-21 14:53:53 +00:00
|
|
|
yield # do you really want to enable SD protection
|
2023-08-11 15:57:32 +00:00
|
|
|
TR.assert_in(layout().text_content(), "sd_card__enable")
|
2020-02-21 14:53:53 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
yield # enter current PIN
|
2023-06-20 07:25:02 +00:00
|
|
|
assert "PinKeyboard" in layout().all_components()
|
2020-02-21 14:53:53 +00:00
|
|
|
client.debug.input("1234")
|
|
|
|
|
|
|
|
yield # you have successfully enabled SD protection
|
2023-08-11 15:57:32 +00:00
|
|
|
TR.assert_in(layout().text_content(), "sd_card__enabled")
|
2020-02-21 14:53:53 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
with client:
|
2020-07-28 12:40:54 +00:00
|
|
|
client.watch_layout()
|
2020-02-21 14:53:53 +00:00
|
|
|
client.set_input_flow(input_flow_enable_sd_protect)
|
|
|
|
device.sd_protect(client, Op.ENABLE)
|
|
|
|
|
|
|
|
def input_flow_change_pin():
|
|
|
|
yield # do you really want to change PIN?
|
2023-08-11 15:57:32 +00:00
|
|
|
TR.assert_equals(layout().title(), "pin__title_settings")
|
2020-02-21 14:53:53 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
yield # enter current PIN
|
2023-06-20 07:25:02 +00:00
|
|
|
assert "PinKeyboard" in layout().all_components()
|
2020-02-21 14:53:53 +00:00
|
|
|
client.debug.input("1234")
|
|
|
|
|
|
|
|
yield # enter new PIN
|
2023-06-20 07:25:02 +00:00
|
|
|
assert "PinKeyboard" in layout().all_components()
|
2020-02-21 14:53:53 +00:00
|
|
|
client.debug.input("1234")
|
|
|
|
|
|
|
|
yield # enter new PIN again
|
2023-06-20 07:25:02 +00:00
|
|
|
assert "PinKeyboard" in layout().all_components()
|
2020-02-21 14:53:53 +00:00
|
|
|
client.debug.input("1234")
|
|
|
|
|
|
|
|
yield # Pin change successful
|
2023-08-11 15:57:32 +00:00
|
|
|
TR.assert_in(layout().text_content(), "pin__changed")
|
2020-02-21 14:53:53 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
with client:
|
2020-07-28 12:40:54 +00:00
|
|
|
client.watch_layout()
|
2020-02-21 14:53:53 +00:00
|
|
|
client.set_input_flow(input_flow_change_pin)
|
|
|
|
device.change_pin(client)
|
|
|
|
|
|
|
|
client.debug.erase_sd_card(format=False)
|
|
|
|
|
|
|
|
def input_flow_change_pin_format():
|
|
|
|
yield # do you really want to change PIN?
|
2023-08-11 15:57:32 +00:00
|
|
|
TR.assert_equals(layout().title(), "pin__title_settings")
|
2020-02-21 14:53:53 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
|
2020-03-16 22:40:39 +00:00
|
|
|
yield # enter current PIN
|
2023-06-20 07:25:02 +00:00
|
|
|
assert "PinKeyboard" in layout().all_components()
|
2020-03-16 22:40:39 +00:00
|
|
|
client.debug.input("1234")
|
|
|
|
|
2020-02-21 14:53:53 +00:00
|
|
|
yield # SD card problem
|
2023-08-11 15:57:32 +00:00
|
|
|
TR.assert_in(layout().text_content(), "sd_card__unplug_and_insert_correct")
|
2020-03-05 12:00:12 +00:00
|
|
|
client.debug.press_no() # close
|
2020-02-21 14:53:53 +00:00
|
|
|
|
|
|
|
with client, pytest.raises(TrezorFailure) as e:
|
2020-07-28 12:40:54 +00:00
|
|
|
client.watch_layout()
|
2020-02-21 14:53:53 +00:00
|
|
|
client.set_input_flow(input_flow_change_pin_format)
|
|
|
|
device.change_pin(client)
|
|
|
|
|
2020-03-24 15:24:53 +00:00
|
|
|
assert e.value.code == messages.FailureType.ProcessError
|