# This file is part of the Trezor project. # # Copyright (C) 2012-2021 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 . from typing import TYPE_CHECKING import pytest from .. import buttons, common if TYPE_CHECKING: from ..device_handler import BackgroundDeviceHandler PIN4 = "1234" @pytest.mark.setup_client(pin=PIN4) def test_hold_to_lock(device_handler: "BackgroundDeviceHandler"): debug = device_handler.debuglink() short_duration = 1000 if debug.model == "T" else 500 lock_duration = 3500 if debug.model == "T" else 1200 def hold(duration: int, wait: bool = True) -> None: if debug.model == "R": debug.press_right_htc(hold_ms=duration, wait=wait) else: debug.input(x=13, y=37, hold_ms=duration, wait=wait) assert device_handler.features().unlocked is False # unlock with message device_handler.run(common.get_test_address) layout = debug.wait_layout() if debug.model == "R": assert "PinEntry" in layout.str_content else: assert "PinKeyboard" in layout.str_content debug.input("1234", wait=True) assert device_handler.result() assert device_handler.features().unlocked is True # short touch hold(short_duration, wait=False) assert device_handler.features().unlocked is True # lock hold(lock_duration) assert device_handler.features().unlocked is False # unlock by touching if debug.model == "R": # Doing a short HTC to simulate a click debug.press_right_htc(hold_ms=100) layout = debug.wait_layout() assert "PinEntry" in layout.str_content else: layout = debug.click(buttons.INFO, wait=True) assert "PinKeyboard" in layout.str_content debug.input("1234", wait=True) assert device_handler.features().unlocked is True # lock hold(lock_duration) assert device_handler.features().unlocked is False