feat(python/debuglink): detect input flows that continue past end of test

should make input flows a tiny bit more robust still
pull/3686/merge^2
matejcik 3 months ago
parent 3d379792f8
commit 01d82f3d89

@ -1090,6 +1090,14 @@ class TrezorClientDebugLink(TrezorClient):
# If no other exception was raised, evaluate missed responses
# (raises AssertionError on mismatch)
self._verify_responses(expected_responses, actual_responses)
if isinstance(input_flow, Generator):
# Ensure that the input flow is exhausted
try:
input_flow.throw(
AssertionError("input flow continues past end of test")
)
except StopIteration:
pass
elif isinstance(input_flow, Generator):
# Propagate the exception through the input flow, so that we see in

@ -98,8 +98,10 @@ class InputFlowSetupDevicePINWIpeCode(InputFlowBase):
self.debug.press_yes()
if self.model() is models.T2B1:
yield from swipe_if_necessary(self.debug) # wipe code info
self.debug.press_yes()
layout = self.debug.read_layout()
if not "PinKeyboard" in layout.all_components():
yield from swipe_if_necessary(self.debug) # wipe code info
self.debug.press_yes()
yield # enter current pin
self.debug.input(self.pin)
@ -127,8 +129,10 @@ class InputFlowNewCodeMismatch(InputFlowBase):
self.debug.press_yes()
if self.model() is models.T2B1:
yield from swipe_if_necessary(self.debug) # code info
self.debug.press_yes()
layout = self.debug.read_layout()
if not "PinKeyboard" in layout.all_components():
yield from swipe_if_necessary(self.debug) # code info
self.debug.press_yes()
def input_two_different_pins() -> BRGeneratorType:
yield from self.PIN.setup_new_pin(self.first_code, self.second_code)
@ -644,8 +648,6 @@ class InputFlowPaymentRequestDetails(InputFlowBase):
yield # confirm transaction
self.debug.press_yes()
yield # confirm transaction
self.debug.press_yes()
def input_flow_t3t1(self) -> BRGeneratorType:
yield # request to see details
@ -668,8 +670,6 @@ class InputFlowPaymentRequestDetails(InputFlowBase):
yield # confirm transaction
self.debug.press_yes()
yield # confirm transaction
self.debug.press_yes()
class InputFlowSignTxHighFee(InputFlowBase):
@ -899,9 +899,6 @@ def lock_time_input_flow_tt(
yield # confirm transaction
debug.press_yes()
if double_confirm:
yield # confirm transaction
debug.press_yes()
def lock_time_input_flow_tr(
@ -934,17 +931,13 @@ class InputFlowLockTimeBlockHeight(InputFlowBase):
assert self.block_height in layout_text
def input_flow_tt(self) -> BRGeneratorType:
yield from lock_time_input_flow_tt(
self.debug, self.assert_func, double_confirm=True
)
yield from lock_time_input_flow_tt(self.debug, self.assert_func)
def input_flow_tr(self) -> BRGeneratorType:
yield from lock_time_input_flow_tr(self.debug, self.assert_func)
def input_flow_t3t1(self) -> BRGeneratorType:
yield from lock_time_input_flow_tt(
self.debug, self.assert_func, double_confirm=True
)
yield from lock_time_input_flow_tt(self.debug, self.assert_func)
class InputFlowLockTimeDatetime(InputFlowBase):

@ -20,9 +20,10 @@ class PinFlow:
self.debug.input(pin)
if self.client.model is models.T2B1:
yield # Reenter PIN
TR.assert_in(
self.debug.read_layout().text_content(), "pin__reenter_to_confirm"
)
# todo update for wipe code
# TR.assert_in(
# self.debug.read_layout().text_content(), "pin__reenter_to_confirm"
# )
self.debug.press_yes()
yield # Enter PIN again
assert "PinKeyboard" in self.debug.read_layout().all_components()
@ -411,7 +412,6 @@ class EthereumFlow:
)
self.debug.press_no()
self.debug.press_yes()
yield
else:
# confirm intro
if info:
@ -440,4 +440,3 @@ class EthereumFlow:
self.debug.press_left()
self.debug.press_left()
self.debug.press_middle()
yield

Loading…
Cancel
Save