mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-16 17:42:02 +00:00
tests: improve clicktests
This commit is contained in:
parent
9e33d69607
commit
40a2c2ce93
@ -0,0 +1,4 @@
|
|||||||
|
import pytest
|
||||||
|
|
||||||
|
pytest.register_assert_rewrite("tests.click_tests.reset")
|
||||||
|
pytest.register_assert_rewrite("tests.click_tests.recovery")
|
@ -35,21 +35,24 @@ def read_words(debug, is_advanced=False):
|
|||||||
assert layout.text.startswith("Group")
|
assert layout.text.startswith("Group")
|
||||||
else:
|
else:
|
||||||
assert layout.text.startswith("Recovery share")
|
assert layout.text.startswith("Recovery share")
|
||||||
for i in range(6):
|
|
||||||
lines = debug.read_layout().lines
|
lines = layout.lines
|
||||||
if i == 0:
|
# first screen
|
||||||
words.append(read_word(lines[3]))
|
words.append(read_word(lines[3]))
|
||||||
words.append(read_word(lines[4]))
|
words.append(read_word(lines[4]))
|
||||||
debug.input(swipe=messages.DebugSwipeDirection.UP, wait=True)
|
lines = debug.input(swipe=messages.DebugSwipeDirection.UP, wait=True).lines
|
||||||
elif i == 5:
|
|
||||||
words.append(read_word(lines[1]))
|
# screens 2 through
|
||||||
words.append(read_word(lines[2]))
|
for _ in range(4):
|
||||||
else:
|
|
||||||
words.append(read_word(lines[1]))
|
words.append(read_word(lines[1]))
|
||||||
words.append(read_word(lines[2]))
|
words.append(read_word(lines[2]))
|
||||||
words.append(read_word(lines[3]))
|
words.append(read_word(lines[3]))
|
||||||
words.append(read_word(lines[4]))
|
words.append(read_word(lines[4]))
|
||||||
debug.input(swipe=messages.DebugSwipeDirection.UP, wait=True)
|
lines = debug.input(swipe=messages.DebugSwipeDirection.UP, wait=True).lines
|
||||||
|
|
||||||
|
# final screen
|
||||||
|
words.append(read_word(lines[1]))
|
||||||
|
words.append(read_word(lines[2]))
|
||||||
debug.press_yes()
|
debug.press_yes()
|
||||||
|
|
||||||
return words
|
return words
|
||||||
@ -57,11 +60,13 @@ def read_words(debug, is_advanced=False):
|
|||||||
|
|
||||||
def confirm_words(debug, words):
|
def confirm_words(debug, words):
|
||||||
layout = debug.wait_layout()
|
layout = debug.wait_layout()
|
||||||
layout.text.startswith("Check share")
|
assert "Select word" in layout.text
|
||||||
for _ in range(3):
|
for _ in range(3):
|
||||||
word_pos = int(debug.state().layout_lines[1].split()[2])
|
# "Select word 3 of 20"
|
||||||
button_pos = debug.state().layout_lines.index(words[word_pos - 1]) - 2
|
# ^
|
||||||
debug.click(buttons.RESET_WORD_CHECK[button_pos], wait=True)
|
word_pos = int(layout.lines[1].split()[2])
|
||||||
|
button_pos = layout.lines.index(words[word_pos - 1]) - 2
|
||||||
|
layout = debug.click(buttons.RESET_WORD_CHECK[button_pos], wait=True)
|
||||||
|
|
||||||
|
|
||||||
def validate_mnemonics(mnemonics, expected_ems):
|
def validate_mnemonics(mnemonics, expected_ems):
|
||||||
|
@ -26,20 +26,20 @@ from . import reset
|
|||||||
|
|
||||||
EXTERNAL_ENTROPY = b"zlutoucky kun upel divoke ody" * 2
|
EXTERNAL_ENTROPY = b"zlutoucky kun upel divoke ody" * 2
|
||||||
|
|
||||||
|
with_mock_urandom = mock.patch("os.urandom", mock.Mock(return_value=EXTERNAL_ENTROPY))
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skip_t1
|
@pytest.mark.skip_t1
|
||||||
@pytest.mark.setup_client(uninitialized=True)
|
@pytest.mark.setup_client(uninitialized=True)
|
||||||
|
@with_mock_urandom
|
||||||
def test_reset_slip39_advanced_2of2groups_2of2shares(device_handler):
|
def test_reset_slip39_advanced_2of2groups_2of2shares(device_handler):
|
||||||
features = device_handler.features()
|
features = device_handler.features()
|
||||||
debug = device_handler.debuglink()
|
debug = device_handler.debuglink()
|
||||||
|
|
||||||
assert features.initialized is False
|
assert features.initialized is False
|
||||||
|
|
||||||
os_urandom = mock.Mock(return_value=EXTERNAL_ENTROPY)
|
|
||||||
with mock.patch("os.urandom", os_urandom), device_handler:
|
|
||||||
device_handler.run(
|
device_handler.run(
|
||||||
device.reset,
|
device.reset,
|
||||||
strength=128,
|
|
||||||
backup_type=messages.BackupType.Slip39_Advanced,
|
backup_type=messages.BackupType.Slip39_Advanced,
|
||||||
pin_protection=False,
|
pin_protection=False,
|
||||||
)
|
)
|
||||||
@ -112,17 +112,15 @@ def test_reset_slip39_advanced_2of2groups_2of2shares(device_handler):
|
|||||||
|
|
||||||
@pytest.mark.skip_t1
|
@pytest.mark.skip_t1
|
||||||
@pytest.mark.setup_client(uninitialized=True)
|
@pytest.mark.setup_client(uninitialized=True)
|
||||||
|
@with_mock_urandom
|
||||||
def test_reset_slip39_advanced_16of16groups_16of16shares(device_handler):
|
def test_reset_slip39_advanced_16of16groups_16of16shares(device_handler):
|
||||||
features = device_handler.features()
|
features = device_handler.features()
|
||||||
debug = device_handler.debuglink()
|
debug = device_handler.debuglink()
|
||||||
|
|
||||||
assert features.initialized is False
|
assert features.initialized is False
|
||||||
|
|
||||||
os_urandom = mock.Mock(return_value=EXTERNAL_ENTROPY)
|
|
||||||
with mock.patch("os.urandom", os_urandom), device_handler:
|
|
||||||
device_handler.run(
|
device_handler.run(
|
||||||
device.reset,
|
device.reset,
|
||||||
strength=128,
|
|
||||||
backup_type=messages.BackupType.Slip39_Advanced,
|
backup_type=messages.BackupType.Slip39_Advanced,
|
||||||
pin_protection=False,
|
pin_protection=False,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user