1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-16 12:59:06 +00:00
trezor-firmware/tests/device_tests/test_msg_recoverydevice_bip39_t2.py

154 lines
5.1 KiB
Python
Raw Normal View History

# This file is part of the Trezor project.
2018-03-22 14:27:43 +00:00
#
2019-05-29 16:44:09 +00:00
# Copyright (C) 2012-2019 SatoshiLabs and contributors
2018-03-22 14:27:43 +00:00
#
# 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.
2018-03-22 14:27:43 +00:00
#
# 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>.
2018-03-22 14:27:43 +00:00
import pytest
2018-08-13 16:21:24 +00:00
from trezorlib import device, messages as proto
2019-09-11 12:43:32 +00:00
from ..common import MNEMONIC12
2018-03-22 14:27:43 +00:00
@pytest.mark.skip_t1
2019-09-11 12:29:39 +00:00
class TestMsgRecoverydeviceT2:
@pytest.mark.setup_client(uninitialized=True)
def test_pin_passphrase(self, client):
2019-09-11 12:29:39 +00:00
mnemonic = MNEMONIC12.split(" ")
ret = client.call_raw(
2018-08-13 16:21:24 +00:00
proto.RecoveryDevice(
passphrase_protection=True,
pin_protection=True,
label="label",
enforce_wordlist=True,
)
)
2018-03-22 14:27:43 +00:00
# Confirm Recovery
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
2019-07-11 14:52:25 +00:00
# Enter PIN for first time
assert ret == proto.ButtonRequest(code=proto.ButtonRequestType.Other)
client.debug.input("654")
ret = client.call_raw(proto.ButtonAck())
2019-07-11 14:52:25 +00:00
# Enter PIN for second time
assert ret == proto.ButtonRequest(code=proto.ButtonRequestType.Other)
client.debug.input("654")
ret = client.call_raw(proto.ButtonAck())
2019-07-11 14:52:25 +00:00
# Homescreen
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
2019-07-11 14:52:25 +00:00
2018-03-22 14:27:43 +00:00
# Enter word count
2018-08-13 16:21:24 +00:00
assert ret == proto.ButtonRequest(
code=proto.ButtonRequestType.MnemonicWordCount
)
client.debug.input(str(len(mnemonic)))
ret = client.call_raw(proto.ButtonAck())
2018-03-22 14:27:43 +00:00
2019-07-11 14:52:25 +00:00
# Homescreen
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
2019-07-11 14:52:25 +00:00
2018-03-22 14:27:43 +00:00
# Enter mnemonic words
assert ret == proto.ButtonRequest(code=proto.ButtonRequestType.MnemonicInput)
client.transport.write(proto.ButtonAck())
2018-03-22 14:27:43 +00:00
for word in mnemonic:
client.debug.input(word)
ret = client.transport.read()
2018-03-22 14:27:43 +00:00
# Confirm success
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
2018-03-22 14:27:43 +00:00
# Workflow succesfully ended
2018-08-13 16:21:24 +00:00
assert ret == proto.Success(message="Device recovered")
2018-03-22 14:27:43 +00:00
# Mnemonic is the same
client.init_device()
2019-09-11 12:29:39 +00:00
assert client.debug.read_mnemonic_secret() == MNEMONIC12.encode()
2018-03-22 14:27:43 +00:00
assert client.features.pin_protection is True
assert client.features.passphrase_protection is True
2018-03-22 14:27:43 +00:00
@pytest.mark.setup_client(uninitialized=True)
def test_nopin_nopassphrase(self, client):
2019-09-11 12:29:39 +00:00
mnemonic = MNEMONIC12.split(" ")
ret = client.call_raw(
2018-08-13 16:21:24 +00:00
proto.RecoveryDevice(
passphrase_protection=False,
pin_protection=False,
label="label",
enforce_wordlist=True,
)
)
2018-03-22 14:27:43 +00:00
# Confirm Recovery
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
2019-07-11 14:52:25 +00:00
# Homescreen
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
2019-07-11 14:52:25 +00:00
2018-03-22 14:27:43 +00:00
# Enter word count
2018-08-13 16:21:24 +00:00
assert ret == proto.ButtonRequest(
code=proto.ButtonRequestType.MnemonicWordCount
)
client.debug.input(str(len(mnemonic)))
ret = client.call_raw(proto.ButtonAck())
2018-03-22 14:27:43 +00:00
2019-07-11 14:52:25 +00:00
# Homescreen
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
2019-07-11 14:52:25 +00:00
2018-03-22 14:27:43 +00:00
# Enter mnemonic words
assert ret == proto.ButtonRequest(code=proto.ButtonRequestType.MnemonicInput)
client.transport.write(proto.ButtonAck())
2018-03-22 14:27:43 +00:00
for word in mnemonic:
client.debug.input(word)
ret = client.transport.read()
2018-03-22 14:27:43 +00:00
# Confirm success
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
2018-03-22 14:27:43 +00:00
# Workflow succesfully ended
2018-08-13 16:21:24 +00:00
assert ret == proto.Success(message="Device recovered")
2018-03-22 14:27:43 +00:00
# Mnemonic is the same
client.init_device()
2019-09-11 12:29:39 +00:00
assert client.debug.read_mnemonic_secret() == MNEMONIC12.encode()
2018-03-22 14:27:43 +00:00
assert client.features.pin_protection is False
assert client.features.passphrase_protection is False
2019-09-19 07:37:23 +00:00
assert client.features.backup_type is proto.BackupType.Bip39
2018-03-22 14:27:43 +00:00
def test_already_initialized(self, client):
with pytest.raises(RuntimeError):
device.recover(
client, 12, False, False, "label", "en-US", client.mnemonic_callback
)