mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-25 00:48:19 +00:00
tests: enable nobackup tests for T1
This commit is contained in:
parent
45665bde23
commit
79fedfd389
@ -257,7 +257,6 @@ def test_backup_slip39_advanced(client):
|
|||||||
|
|
||||||
|
|
||||||
# we only test this with bip39 because the code path is always the same
|
# we only test this with bip39 because the code path is always the same
|
||||||
@pytest.mark.skip_t1
|
|
||||||
@pytest.mark.setup_client(uninitialized=True)
|
@pytest.mark.setup_client(uninitialized=True)
|
||||||
def test_no_backup_fails(client):
|
def test_no_backup_fails(client):
|
||||||
device.reset(
|
device.reset(
|
||||||
@ -276,14 +275,13 @@ def test_no_backup_fails(client):
|
|||||||
assert client.features.needs_backup is False
|
assert client.features.needs_backup is False
|
||||||
|
|
||||||
# backup attempt should fail because no_backup=True
|
# backup attempt should fail because no_backup=True
|
||||||
with pytest.raises(TrezorFailure, match="ProcessError: Seed already backed up"):
|
with pytest.raises(TrezorFailure, match=r".*Seed already backed up"):
|
||||||
device.backup(client)
|
device.backup(client)
|
||||||
|
|
||||||
|
|
||||||
# we only test this with bip39 because the code path is always the same
|
# we only test this with bip39 because the code path is always the same
|
||||||
@pytest.mark.skip_t1
|
|
||||||
@pytest.mark.setup_client(uninitialized=True)
|
@pytest.mark.setup_client(uninitialized=True)
|
||||||
def test_interupt_backup_fails(client):
|
def test_interrupt_backup_fails(client):
|
||||||
device.reset(
|
device.reset(
|
||||||
client,
|
client,
|
||||||
display_random=False,
|
display_random=False,
|
||||||
@ -313,17 +311,15 @@ def test_interupt_backup_fails(client):
|
|||||||
assert client.features.no_backup is False
|
assert client.features.no_backup is False
|
||||||
|
|
||||||
# Second attempt at backup should fail
|
# Second attempt at backup should fail
|
||||||
with pytest.raises(TrezorFailure, match="ProcessError: Seed already backed up"):
|
with pytest.raises(TrezorFailure, match=r".*Seed already backed up"):
|
||||||
device.backup(client)
|
device.backup(client)
|
||||||
|
|
||||||
|
|
||||||
# we only test this with bip39 because the code path is always the same
|
# we only test this with bip39 because the code path is always the same
|
||||||
@pytest.mark.skip_t1
|
|
||||||
@pytest.mark.setup_client(uninitialized=True)
|
@pytest.mark.setup_client(uninitialized=True)
|
||||||
def test_no_backup_show_entropy_fails(client):
|
def test_no_backup_show_entropy_fails(client):
|
||||||
with pytest.raises(
|
with pytest.raises(
|
||||||
TrezorFailure,
|
TrezorFailure, match=r".*Can't show internal entropy when backup is skipped"
|
||||||
match="ProcessError: Can't show internal entropy when backup is skipped",
|
|
||||||
):
|
):
|
||||||
device.reset(
|
device.reset(
|
||||||
client,
|
client,
|
||||||
|
@ -1,74 +0,0 @@
|
|||||||
# 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
|
|
||||||
|
|
||||||
from trezorlib import messages as proto
|
|
||||||
|
|
||||||
|
|
||||||
class TestMsgResetDeviceNobackup:
|
|
||||||
|
|
||||||
external_entropy = b"zlutoucky kun upel divoke ody" * 2
|
|
||||||
strength = 128
|
|
||||||
|
|
||||||
@pytest.mark.setup_client(uninitialized=True)
|
|
||||||
def test_reset_device_no_backup(self, client):
|
|
||||||
ret = client.call_raw(
|
|
||||||
proto.ResetDevice(
|
|
||||||
display_random=False,
|
|
||||||
strength=self.strength,
|
|
||||||
passphrase_protection=False,
|
|
||||||
pin_protection=False,
|
|
||||||
language="english",
|
|
||||||
label="test",
|
|
||||||
no_backup=True,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
assert isinstance(ret, proto.ButtonRequest)
|
|
||||||
client.debug.press_yes()
|
|
||||||
ret = client.call_raw(proto.ButtonAck())
|
|
||||||
|
|
||||||
# Provide entropy
|
|
||||||
assert isinstance(ret, proto.EntropyRequest)
|
|
||||||
ret = client.call_raw(proto.EntropyAck(entropy=self.external_entropy))
|
|
||||||
assert isinstance(ret, proto.Success)
|
|
||||||
|
|
||||||
# Check if device is properly initialized
|
|
||||||
ret = client.call_raw(proto.Initialize())
|
|
||||||
assert ret.initialized is True
|
|
||||||
assert ret.needs_backup is False
|
|
||||||
assert ret.unfinished_backup is False
|
|
||||||
assert ret.no_backup is True
|
|
||||||
|
|
||||||
# start backup - should fail
|
|
||||||
ret = client.call_raw(proto.BackupDevice())
|
|
||||||
assert isinstance(ret, proto.Failure)
|
|
||||||
|
|
||||||
@pytest.mark.setup_client(uninitialized=True)
|
|
||||||
def test_reset_device_no_backup_show_entropy_fail(self, client):
|
|
||||||
ret = client.call_raw(
|
|
||||||
proto.ResetDevice(
|
|
||||||
display_random=True,
|
|
||||||
strength=self.strength,
|
|
||||||
passphrase_protection=False,
|
|
||||||
pin_protection=False,
|
|
||||||
language="english",
|
|
||||||
label="test",
|
|
||||||
no_backup=True,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
assert isinstance(ret, proto.Failure)
|
|
Loading…
Reference in New Issue
Block a user