mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 02:58:57 +00:00
0d089d76a6
Otherwise a test can hang if the result is not returned. This is not even covered by pytest-timeout because if a test fails, the call to task.kill() happens during teardown, and pytest-timeout doesn't cover that.
115 lines
3.8 KiB
Python
115 lines
3.8 KiB
Python
from __future__ import annotations
|
|
|
|
from concurrent.futures import ThreadPoolExecutor
|
|
from typing import TYPE_CHECKING, Any, Callable
|
|
|
|
from trezorlib.client import PASSPHRASE_ON_DEVICE
|
|
from trezorlib.messages import DebugWaitType
|
|
from trezorlib.transport import udp
|
|
|
|
if TYPE_CHECKING:
|
|
from trezorlib._internal.emulator import Emulator
|
|
from trezorlib.debuglink import DebugLink
|
|
from trezorlib.debuglink import TrezorClientDebugLink as Client
|
|
from trezorlib.messages import Features
|
|
|
|
|
|
udp.SOCKET_TIMEOUT = 0.1
|
|
|
|
|
|
class NullUI:
|
|
@staticmethod
|
|
def button_request(code):
|
|
pass
|
|
|
|
@staticmethod
|
|
def get_pin(code=None):
|
|
raise NotImplementedError("NullUI should not be used with T1")
|
|
|
|
@staticmethod
|
|
def get_passphrase(available_on_device: bool = False):
|
|
if available_on_device:
|
|
return PASSPHRASE_ON_DEVICE
|
|
else:
|
|
raise NotImplementedError("NullUI should not be used with T1")
|
|
|
|
|
|
class BackgroundDeviceHandler:
|
|
_pool = ThreadPoolExecutor()
|
|
|
|
def __init__(self, client: "Client") -> None:
|
|
self._configure_client(client)
|
|
self.task = None
|
|
|
|
def _configure_client(self, client: "Client") -> None:
|
|
self.client = client
|
|
self.client.ui = NullUI # type: ignore [NullUI is OK UI]
|
|
self.client.watch_layout(True)
|
|
self.client.debug.input_wait_type = DebugWaitType.CURRENT_LAYOUT
|
|
|
|
def run(self, function: Callable[..., Any], *args: Any, **kwargs: Any) -> None:
|
|
"""Runs some function that interacts with a device.
|
|
|
|
Makes sure the UI is updated before returning.
|
|
"""
|
|
if self.task is not None:
|
|
raise RuntimeError("Wait for previous task first")
|
|
|
|
# make sure we start the wait while a layout is up
|
|
# TODO should this be part of "wait_for_layout_change"?
|
|
self.debuglink().read_layout()
|
|
# from the displayed layout, wait for the first UI change triggered by the
|
|
# task running in the background
|
|
with self.debuglink().wait_for_layout_change():
|
|
self.task = self._pool.submit(function, self.client, *args, **kwargs)
|
|
|
|
def kill_task(self) -> None:
|
|
if self.task is not None:
|
|
# Force close the client, which should raise an exception in a client
|
|
# waiting on IO. Does not work over Bridge, because bridge doesn't have
|
|
# a close() method.
|
|
while self.client.session_counter > 0:
|
|
self.client.close()
|
|
try:
|
|
self.task.result(timeout=1)
|
|
except Exception:
|
|
pass
|
|
self.task = None
|
|
|
|
def restart(self, emulator: "Emulator") -> None:
|
|
# TODO handle actual restart as well
|
|
self.kill_task()
|
|
emulator.restart()
|
|
self._configure_client(emulator.client) # type: ignore [client cannot be None]
|
|
|
|
def result(self, timeout: float | None = None) -> Any:
|
|
if self.task is None:
|
|
raise RuntimeError("No task running")
|
|
try:
|
|
return self.task.result(timeout=timeout)
|
|
finally:
|
|
self.task = None
|
|
|
|
def features(self) -> "Features":
|
|
if self.task is not None:
|
|
raise RuntimeError("Cannot query features while task is running")
|
|
self.client.init_device()
|
|
return self.client.features
|
|
|
|
def debuglink(self) -> "DebugLink":
|
|
return self.client.debug
|
|
|
|
def check_finalize(self) -> bool:
|
|
if self.task is not None:
|
|
self.kill_task()
|
|
return False
|
|
return True
|
|
|
|
def __enter__(self) -> "BackgroundDeviceHandler":
|
|
return self
|
|
|
|
def __exit__(self, exc_type, exc_value, traceback) -> None:
|
|
finalized_ok = self.check_finalize()
|
|
if exc_type is None and not finalized_ok:
|
|
raise RuntimeError("Exit while task is unfinished")
|