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

208 lines
6.9 KiB
Python
Raw Normal View History

# This file is part of the Trezor project.
2017-01-03 18:40:05 +00:00
#
2019-05-29 16:44:09 +00:00
# Copyright (C) 2012-2019 SatoshiLabs and contributors
2017-01-03 18:40:05 +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.
2017-01-03 18:40:05 +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>.
import pytest
2017-01-03 18:40:05 +00:00
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
2019-09-11 12:29:39 +00:00
PIN4 = "1234"
PIN6 = "789456"
2017-06-23 19:31:42 +00:00
@pytest.mark.skip_t2
2019-09-11 12:29:39 +00:00
class TestMsgRecoverydevice:
@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(
word_count=12,
passphrase_protection=True,
pin_protection=True,
label="label",
language="en-US",
2018-08-13 16:21:24 +00:00
enforce_wordlist=True,
)
)
# click through confirmation
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
assert isinstance(ret, proto.PinMatrixRequest)
# Enter PIN for first time
2019-09-11 12:29:39 +00:00
pin_encoded = client.debug.encode_pin(PIN6)
ret = client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
assert isinstance(ret, proto.PinMatrixRequest)
# Enter PIN for second time
2019-09-11 12:29:39 +00:00
pin_encoded = client.debug.encode_pin(PIN6)
ret = client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
fakes = 0
2014-07-10 16:07:00 +00:00
for _ in range(int(12 * 2)):
assert isinstance(ret, proto.WordRequest)
(word, pos) = client.debug.read_recovery_word()
if pos != 0:
ret = client.call_raw(proto.WordAck(word=mnemonic[pos - 1]))
mnemonic[pos - 1] = None
else:
ret = client.call_raw(proto.WordAck(word=word))
fakes += 1
2016-05-05 01:16:17 +00:00
print(mnemonic)
# Workflow succesfully ended
assert isinstance(ret, proto.Success)
2014-07-10 16:07:00 +00:00
# 12 expected fake words and all words of mnemonic are used
assert fakes == 12
assert mnemonic == [None] * 12
# Mnemonic is the same
client.init_device()
2019-09-11 12:29:39 +00:00
assert client.debug.read_mnemonic_secret() == MNEMONIC12.encode()
assert client.features.pin_protection is True
assert client.features.passphrase_protection is True
2016-01-12 23:17:38 +00:00
# Do passphrase-protected action, PassphraseRequest should be raised
resp = client.call_raw(proto.GetAddress())
assert isinstance(resp, proto.PassphraseRequest)
client.call_raw(proto.Cancel())
@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(
word_count=12,
passphrase_protection=False,
pin_protection=False,
label="label",
language="en-US",
2018-08-13 16:21:24 +00:00
enforce_wordlist=True,
)
)
# click through confirmation
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
fakes = 0
2014-07-10 16:07:00 +00:00
for _ in range(int(12 * 2)):
assert isinstance(ret, proto.WordRequest)
(word, pos) = client.debug.read_recovery_word()
if pos != 0:
ret = client.call_raw(proto.WordAck(word=mnemonic[pos - 1]))
mnemonic[pos - 1] = None
else:
ret = client.call_raw(proto.WordAck(word=word))
fakes += 1
2016-05-05 01:16:17 +00:00
print(mnemonic)
# Workflow succesfully ended
assert isinstance(ret, proto.Success)
2014-07-10 16:07:00 +00:00
# 12 expected fake words and all words of mnemonic are used
assert fakes == 12
assert mnemonic == [None] * 12
# Mnemonic is the same
client.init_device()
2019-09-11 12:29:39 +00:00
assert client.debug.read_mnemonic_secret() == MNEMONIC12.encode()
assert client.features.pin_protection is False
assert client.features.passphrase_protection is False
2020-01-21 09:05:48 +00:00
# Do pin & passphrase-protected action, PassphraseRequest should NOT be raised
resp = client.call_raw(proto.GetAddress())
2020-01-21 09:05:48 +00:00
assert isinstance(resp, proto.Address)
2016-01-12 23:17:38 +00:00
@pytest.mark.setup_client(uninitialized=True)
def test_word_fail(self, client):
ret = client.call_raw(
2018-08-13 16:21:24 +00:00
proto.RecoveryDevice(
word_count=12,
passphrase_protection=False,
pin_protection=False,
label="label",
language="en-US",
2018-08-13 16:21:24 +00:00
enforce_wordlist=True,
)
)
# click through confirmation
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
assert isinstance(ret, proto.WordRequest)
2014-07-10 16:07:00 +00:00
for _ in range(int(12 * 2)):
(word, pos) = client.debug.read_recovery_word()
if pos != 0:
ret = client.call_raw(proto.WordAck(word="kwyjibo"))
assert isinstance(ret, proto.Failure)
break
else:
client.call_raw(proto.WordAck(word=word))
@pytest.mark.setup_client(uninitialized=True)
def test_pin_fail(self, client):
ret = client.call_raw(
2018-08-13 16:21:24 +00:00
proto.RecoveryDevice(
word_count=12,
passphrase_protection=True,
pin_protection=True,
label="label",
language="en-US",
2018-08-13 16:21:24 +00:00
enforce_wordlist=True,
)
)
# click through confirmation
assert isinstance(ret, proto.ButtonRequest)
client.debug.press_yes()
ret = client.call_raw(proto.ButtonAck())
assert isinstance(ret, proto.PinMatrixRequest)
# Enter PIN for first time
2019-09-11 12:29:39 +00:00
pin_encoded = client.debug.encode_pin(PIN4)
ret = client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
assert isinstance(ret, proto.PinMatrixRequest)
# Enter PIN for second time, but different one
2019-09-11 12:29:39 +00:00
pin_encoded = client.debug.encode_pin(PIN6)
ret = client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
# Failure should be raised
assert isinstance(ret, proto.Failure)
def test_already_initialized(self, client):
with pytest.raises(RuntimeError):
device.recover(
client, 12, False, False, "label", "en-US", client.mnemonic_callback
)