1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 13:59:17 +00:00
trezor-firmware/tests/click_tests/test_lock.py

80 lines
2.4 KiB
Python
Raw Normal View History

2021-01-18 20:18:56 +00:00
# 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 <https://www.gnu.org/licenses/lgpl-3.0.html>.
import time
from typing import TYPE_CHECKING
2021-01-18 20:18:56 +00:00
import pytest
from .. import buttons, common
if TYPE_CHECKING:
from ..device_handler import BackgroundDeviceHandler
2021-01-18 20:18:56 +00:00
PIN4 = "1234"
@pytest.mark.setup_client(pin=PIN4)
def test_hold_to_lock(device_handler: "BackgroundDeviceHandler"):
2021-01-18 20:18:56 +00:00
debug = device_handler.debuglink()
2023-05-12 09:19:35 +00:00
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 == "Safe 3":
2023-05-12 09:19:35 +00:00
debug.press_right_htc(hold_ms=duration)
else:
debug.input(x=13, y=37, hold_ms=duration, wait=wait)
2021-01-18 20:18:56 +00:00
assert device_handler.features().unlocked is False
# unlock with message
device_handler.run(common.get_test_address)
assert "PinKeyboard" in debug.wait_layout().all_components()
2021-01-18 20:18:56 +00:00
debug.input("1234", wait=True)
assert device_handler.result()
assert device_handler.features().unlocked is True
# short touch
hold(short_duration)
time.sleep(0.5) # so that the homescreen appears again (hacky)
2021-01-18 20:18:56 +00:00
assert device_handler.features().unlocked is True
# lock
hold(lock_duration)
2021-01-18 20:18:56 +00:00
assert device_handler.features().unlocked is False
# unlock by touching
if debug.model == "Safe 3":
2023-05-12 09:19:35 +00:00
# Doing a short HTC to simulate a click
debug.press_right_htc(hold_ms=100)
layout = debug.wait_layout()
else:
layout = debug.click(buttons.INFO, wait=True)
assert "PinKeyboard" in layout.all_components()
2021-01-18 20:18:56 +00:00
debug.input("1234", wait=True)
assert device_handler.features().unlocked is True
# lock
hold(lock_duration)
2021-01-18 20:18:56 +00:00
assert device_handler.features().unlocked is False