1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 22:09:07 +00:00
trezor-firmware/tests/click_tests/test_recovery.py

49 lines
1.6 KiB
Python
Raw Normal View History

2019-10-18 11:31:57 +00:00
# This file is part of the Trezor project.
#
# Copyright (C) 2012-2019 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
2019-09-27 13:38:15 +00:00
import pytest
from trezorlib import device, messages
from ..common import MNEMONIC_SLIP39_BASIC_20_3of6
2019-10-25 08:07:09 +00:00
from . import recovery
2019-09-27 13:38:15 +00:00
if TYPE_CHECKING:
from ..device_handler import BackgroundDeviceHandler
2019-09-27 13:38:15 +00:00
@pytest.mark.skip_t1
@pytest.mark.setup_client(uninitialized=True)
def test_recovery(device_handler: "BackgroundDeviceHandler"):
features = device_handler.features()
debug = device_handler.debuglink()
assert features.initialized is False
device_handler.run(device.recover, pin_protection=False)
2019-09-27 13:38:15 +00:00
recovery.confirm_recovery(debug)
2019-10-25 08:07:09 +00:00
recovery.select_number_of_words(debug)
recovery.enter_shares(debug, MNEMONIC_SLIP39_BASIC_20_3of6)
recovery.finalize(debug)
assert isinstance(device_handler.result(), messages.Success)
features = device_handler.features()
assert features.initialized is True
assert features.recovery_mode is False