2018-06-21 14:28:34 +00:00
|
|
|
# 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
|
2018-06-21 14:28:34 +00:00
|
|
|
# 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.
|
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# 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
|
|
|
|
2018-05-11 12:53:51 +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:
|
2019-08-27 14:58:59 +00:00
|
|
|
@pytest.mark.setup_client(uninitialized=True)
|
|
|
|
def test_pin_passphrase(self, client):
|
2019-09-11 12:29:39 +00:00
|
|
|
mnemonic = MNEMONIC12.split(" ")
|
2019-08-27 14:58:59 +00:00
|
|
|
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
|
|
|
|
2018-10-22 12:44:36 +00:00
|
|
|
# Confirm Recovery
|
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
2019-08-27 14:58:59 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
ret = client.call_raw(proto.ButtonAck())
|
2018-10-22 12:44:36 +00:00
|
|
|
|
2019-07-11 14:52:25 +00:00
|
|
|
# Enter PIN for first time
|
|
|
|
assert ret == proto.ButtonRequest(code=proto.ButtonRequestType.Other)
|
2019-08-27 14:58:59 +00:00
|
|
|
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)
|
2019-08-27 14:58:59 +00:00
|
|
|
client.debug.input("654")
|
|
|
|
ret = client.call_raw(proto.ButtonAck())
|
2019-07-11 14:52:25 +00:00
|
|
|
|
|
|
|
# Homescreen
|
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
2019-08-27 14:58:59 +00:00
|
|
|
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
|
|
|
|
)
|
2019-08-27 14:58:59 +00:00
|
|
|
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)
|
2019-08-27 14:58:59 +00:00
|
|
|
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)
|
2019-08-27 14:58:59 +00:00
|
|
|
client.transport.write(proto.ButtonAck())
|
2018-03-22 14:27:43 +00:00
|
|
|
for word in mnemonic:
|
2019-08-27 14:58:59 +00:00
|
|
|
client.debug.input(word)
|
|
|
|
ret = client.transport.read()
|
2018-03-22 14:27:43 +00:00
|
|
|
|
2019-06-26 09:57:59 +00:00
|
|
|
# Confirm success
|
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
2019-08-27 14:58:59 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
ret = client.call_raw(proto.ButtonAck())
|
2019-06-26 09:57:59 +00:00
|
|
|
|
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
|
2019-08-27 14:58:59 +00:00
|
|
|
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
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
assert client.features.pin_protection is True
|
|
|
|
assert client.features.passphrase_protection is True
|
2018-03-22 14:27:43 +00:00
|
|
|
|
2019-08-27 14:58:59 +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(" ")
|
2019-08-27 14:58:59 +00:00
|
|
|
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
|
|
|
|
2018-10-22 12:44:36 +00:00
|
|
|
# Confirm Recovery
|
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
2019-08-27 14:58:59 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
ret = client.call_raw(proto.ButtonAck())
|
2018-10-22 12:44:36 +00:00
|
|
|
|
2019-07-11 14:52:25 +00:00
|
|
|
# Homescreen
|
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
2019-08-27 14:58:59 +00:00
|
|
|
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
|
|
|
|
)
|
2019-08-27 14:58:59 +00:00
|
|
|
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)
|
2019-08-27 14:58:59 +00:00
|
|
|
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)
|
2019-08-27 14:58:59 +00:00
|
|
|
client.transport.write(proto.ButtonAck())
|
2018-03-22 14:27:43 +00:00
|
|
|
for word in mnemonic:
|
2019-08-27 14:58:59 +00:00
|
|
|
client.debug.input(word)
|
|
|
|
ret = client.transport.read()
|
2018-03-22 14:27:43 +00:00
|
|
|
|
2019-06-26 09:57:59 +00:00
|
|
|
# Confirm success
|
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
2019-08-27 14:58:59 +00:00
|
|
|
client.debug.press_yes()
|
|
|
|
ret = client.call_raw(proto.ButtonAck())
|
2019-06-26 09:57:59 +00:00
|
|
|
|
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
|
2019-08-27 14:58:59 +00:00
|
|
|
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
|
|
|
|
2019-08-27 14:58:59 +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
|
|
|
|
2019-08-27 14:58:59 +00:00
|
|
|
def test_already_initialized(self, client):
|
2018-10-03 12:19:53 +00:00
|
|
|
with pytest.raises(RuntimeError):
|
|
|
|
device.recover(
|
2019-12-07 11:11:51 +00:00
|
|
|
client, 12, False, False, "label", "en-US", client.mnemonic_callback
|
2018-10-03 12:19:53 +00:00
|
|
|
)
|