1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 06:19:27 +00:00
trezor-firmware/tests/device_tests/test_msg_backup_device.py

169 lines
5.7 KiB
Python
Raw Normal View History

# 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>.
import pytest
import shamir_mnemonic as shamir
from trezorlib import device, messages
from trezorlib.debuglink import TrezorClientDebugLink as Client
2019-09-23 12:49:54 +00:00
from trezorlib.exceptions import TrezorFailure
from ..common import (
MNEMONIC12,
2019-09-23 12:49:54 +00:00
MNEMONIC_SLIP39_ADVANCED_20,
MNEMONIC_SLIP39_BASIC_20_3of6,
)
2023-05-04 12:18:55 +00:00
from ..input_flows import (
InputFlowBip39Backup,
InputFlowSlip39AdvancedBackup,
InputFlowSlip39BasicBackup,
)
@pytest.mark.skip_t1 # TODO we want this for t1 too
@pytest.mark.setup_client(needs_backup=True, mnemonic=MNEMONIC12)
def test_backup_bip39(client: Client):
assert client.features.needs_backup is True
with client:
2023-05-04 12:18:55 +00:00
IF = InputFlowBip39Backup(client)
client.set_input_flow(IF.get())
device.backup(client)
2023-05-04 12:18:55 +00:00
assert IF.mnemonic == MNEMONIC12
2019-09-20 16:06:02 +00:00
client.init_device()
2019-09-23 12:49:54 +00:00
assert client.features.initialized is True
2019-09-20 16:06:02 +00:00
assert client.features.needs_backup is False
2019-09-23 12:49:54 +00:00
assert client.features.unfinished_backup is False
assert client.features.no_backup is False
assert client.features.backup_type is messages.BackupType.Bip39
@pytest.mark.skip_t1
@pytest.mark.setup_client(needs_backup=True, mnemonic=MNEMONIC_SLIP39_BASIC_20_3of6)
@pytest.mark.parametrize(
"click_info", [True, False], ids=["click_info", "no_click_info"]
)
def test_backup_slip39_basic(client: Client, click_info: bool):
2023-05-12 09:19:35 +00:00
if click_info and client.features.model == "R":
pytest.skip("click_info not implemented on TR")
assert client.features.needs_backup is True
with client:
2023-05-04 12:18:55 +00:00
IF = InputFlowSlip39BasicBackup(client, click_info)
client.set_input_flow(IF.get())
device.backup(client)
2019-09-20 16:06:02 +00:00
client.init_device()
2019-09-23 12:49:54 +00:00
assert client.features.initialized is True
2019-09-20 16:06:02 +00:00
assert client.features.needs_backup is False
2019-09-23 12:49:54 +00:00
assert client.features.unfinished_backup is False
assert client.features.no_backup is False
assert client.features.backup_type is messages.BackupType.Slip39_Basic
2019-09-20 16:06:02 +00:00
expected_ms = shamir.combine_mnemonics(MNEMONIC_SLIP39_BASIC_20_3of6)
2023-05-04 12:18:55 +00:00
actual_ms = shamir.combine_mnemonics(IF.mnemonics[:3])
assert expected_ms == actual_ms
2019-09-23 12:49:54 +00:00
@pytest.mark.skip_t1
@pytest.mark.setup_client(needs_backup=True, mnemonic=MNEMONIC_SLIP39_ADVANCED_20)
@pytest.mark.parametrize(
"click_info", [True, False], ids=["click_info", "no_click_info"]
)
def test_backup_slip39_advanced(client: Client, click_info: bool):
2023-05-12 09:19:35 +00:00
if click_info and client.features.model == "R":
pytest.skip("click_info not implemented on TR")
2019-09-23 12:49:54 +00:00
assert client.features.needs_backup is True
with client:
2023-05-04 12:18:55 +00:00
IF = InputFlowSlip39AdvancedBackup(client, click_info)
client.set_input_flow(IF.get())
2019-09-23 12:49:54 +00:00
device.backup(client)
client.init_device()
assert client.features.initialized is True
assert client.features.needs_backup is False
assert client.features.unfinished_backup is False
assert client.features.no_backup is False
assert client.features.backup_type is messages.BackupType.Slip39_Advanced
expected_ms = shamir.combine_mnemonics(MNEMONIC_SLIP39_ADVANCED_20)
actual_ms = shamir.combine_mnemonics(
2023-05-04 12:18:55 +00:00
IF.mnemonics[:3] + IF.mnemonics[5:8] + IF.mnemonics[10:13]
2019-09-23 12:49:54 +00:00
)
assert expected_ms == actual_ms
# we only test this with bip39 because the code path is always the same
@pytest.mark.setup_client(no_backup=True)
def test_no_backup_fails(client: Client):
client.ensure_unlocked()
2019-09-23 12:49:54 +00:00
assert client.features.initialized is True
assert client.features.no_backup is True
assert client.features.needs_backup is False
# backup attempt should fail because no_backup=True
2019-10-01 10:04:55 +00:00
with pytest.raises(TrezorFailure, match=r".*Seed already backed up"):
2019-09-23 12:49:54 +00:00
device.backup(client)
# we only test this with bip39 because the code path is always the same
@pytest.mark.setup_client(needs_backup=True)
def test_interrupt_backup_fails(client: Client):
client.ensure_unlocked()
2019-09-23 12:49:54 +00:00
assert client.features.initialized is True
assert client.features.needs_backup is True
assert client.features.unfinished_backup is False
assert client.features.no_backup is False
# start backup
client.call_raw(messages.BackupDevice())
# interupt backup by sending initialize
client.init_device()
# check that device state is as expected
assert client.features.initialized is True
assert client.features.needs_backup is False
assert client.features.unfinished_backup is True
assert client.features.no_backup is False
# Second attempt at backup should fail
2019-10-01 10:04:55 +00:00
with pytest.raises(TrezorFailure, match=r".*Seed already backed up"):
2019-09-23 12:49:54 +00:00
device.backup(client)
# we only test this with bip39 because the code path is always the same
@pytest.mark.setup_client(uninitialized=True)
def test_no_backup_show_entropy_fails(client: Client):
2019-09-23 12:49:54 +00:00
with pytest.raises(
2019-10-01 10:04:55 +00:00
TrezorFailure, match=r".*Can't show internal entropy when backup is skipped"
2019-09-23 12:49:54 +00:00
):
device.reset(
client,
display_random=True,
strength=128,
passphrase_protection=False,
pin_protection=False,
label="test",
language="en-US",
2019-09-23 12:49:54 +00:00
no_backup=True,
)