1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-06 18:26:11 +00:00
trezor-firmware/tests/click_tests/test_tutorial_delizia.py
2025-03-06 10:47:32 +01:00

167 lines
6.5 KiB
Python

# This file is part of the Trezor project.
#
# Copyright (C) 2012-2023 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>.
from typing import TYPE_CHECKING
import pytest
from trezorlib import device
from .. import buttons
from .. import translations as TR
if TYPE_CHECKING:
from ..device_handler import BackgroundDeviceHandler
# Trezor Safe 5 only
pytestmark = [
pytest.mark.models("delizia"),
pytest.mark.setup_client(uninitialized=True),
]
def test_tutorial_ignore_menu(device_handler: "BackgroundDeviceHandler"):
debug = device_handler.debuglink()
device_handler.run(device.show_device_tutorial)
assert debug.read_layout().title() == TR.tutorial__welcome_safe5
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_lets_begin
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_easy_navigation
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_handy_menu
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_hold
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_well_done
debug.swipe_up()
device_handler.result()
def test_tutorial_menu_open_close(device_handler: "BackgroundDeviceHandler"):
debug = device_handler.debuglink()
device_handler.run(device.show_device_tutorial)
assert debug.read_layout().title() == TR.tutorial__welcome_safe5
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_lets_begin
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_easy_navigation
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_handy_menu
debug.click(buttons.corner_button(debug.layout_type))
assert TR.tutorial__did_you_know in debug.read_layout().text_content()
debug.click(buttons.corner_button(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_handy_menu
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_hold
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_well_done
debug.swipe_up()
device_handler.result()
def test_tutorial_menu_exit(device_handler: "BackgroundDeviceHandler"):
debug = device_handler.debuglink()
device_handler.run(device.show_device_tutorial)
assert debug.read_layout().title() == TR.tutorial__welcome_safe5
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_lets_begin
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_easy_navigation
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_handy_menu
debug.click(buttons.corner_button(debug.layout_type))
assert TR.tutorial__did_you_know in debug.read_layout().text_content()
debug.click(buttons.vertical_menu(debug.layout_type)[2])
assert TR.instructions__hold_to_exit_tutorial in debug.read_layout().footer()
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_well_done
debug.swipe_up()
device_handler.result()
def test_tutorial_menu_repeat(device_handler: "BackgroundDeviceHandler"):
debug = device_handler.debuglink()
device_handler.run(device.show_device_tutorial)
assert debug.read_layout().title() == TR.tutorial__welcome_safe5
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_lets_begin
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_easy_navigation
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_handy_menu
debug.click(buttons.corner_button(debug.layout_type))
assert TR.tutorial__did_you_know in debug.read_layout().text_content()
debug.click(buttons.vertical_menu(debug.layout_type)[1])
assert debug.read_layout().title() == TR.tutorial__title_lets_begin
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_easy_navigation
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_handy_menu
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_hold
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_well_done
debug.swipe_up()
device_handler.result()
def test_tutorial_menu_funfact(device_handler: "BackgroundDeviceHandler"):
debug = device_handler.debuglink()
device_handler.run(device.show_device_tutorial)
assert debug.read_layout().title() == TR.tutorial__welcome_safe5
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_lets_begin
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_easy_navigation
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_handy_menu
debug.click(buttons.corner_button(debug.layout_type))
assert TR.tutorial__did_you_know in debug.read_layout().text_content()
debug.click(buttons.vertical_menu(debug.layout_type)[0])
assert debug.read_layout().text_content() in TR.tutorial__first_wallet.replace(
"\n", " "
)
debug.click(buttons.corner_button(debug.layout_type))
assert TR.tutorial__did_you_know in debug.read_layout().text_content()
debug.click(buttons.corner_button(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_handy_menu
debug.swipe_up()
assert debug.read_layout().title() == TR.tutorial__title_hold
debug.click(buttons.tap_to_confirm(debug.layout_type))
assert debug.read_layout().title() == TR.tutorial__title_well_done
debug.swipe_up()
device_handler.result()