1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00
trezor-firmware/tests/device_tests/test_msg_getaddress_show.py

156 lines
5.4 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>.
2017-01-03 18:40:05 +00:00
import pytest
2020-03-04 14:12:30 +00:00
from trezorlib import btc, messages, tools
2018-08-13 16:21:24 +00:00
2020-03-04 14:12:30 +00:00
from .. import bip32
2019-09-11 12:43:32 +00:00
from ..common import MNEMONIC12
2017-06-23 19:31:42 +00:00
2019-09-11 12:29:39 +00:00
class TestMsgGetaddressShow:
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
def test_show(self, client):
2018-08-13 16:21:24 +00:00
assert (
btc.get_address(client, "Bitcoin", [1], show_display=True)
2018-08-13 16:21:24 +00:00
== "1CK7SJdcb8z9HuvVft3D91HLpLC6KSsGb"
)
assert (
btc.get_address(client, "Bitcoin", [2], show_display=True)
2018-08-13 16:21:24 +00:00
== "15AeAhtNJNKyowK8qPHwgpXkhsokzLtUpG"
)
assert (
btc.get_address(client, "Bitcoin", [3], show_display=True)
2018-08-13 16:21:24 +00:00
== "1CmzyJp9w3NafXMSEFH4SLYUPAVCSUrrJ5"
)
2019-10-22 14:32:00 +00:00
@pytest.mark.multisig
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
def test_show_multisig_3(self, client):
2018-08-13 16:21:24 +00:00
node = bip32.deserialize(
"xpub661MyMwAqRbcF1zGijBb2K6x9YiJPh58xpcCeLvTxMX6spkY3PcpJ4ABcCyWfskq5DDxM3e6Ez5ePCqG5bnPUXR4wL8TZWyoDaUdiWW7bKy"
)
multisig = messages.MultisigRedeemScriptType(
2017-06-23 19:31:42 +00:00
pubkeys=[
messages.HDNodePathType(node=node, address_n=[1]),
messages.HDNodePathType(node=node, address_n=[2]),
messages.HDNodePathType(node=node, address_n=[3]),
2017-06-23 19:31:42 +00:00
],
2018-08-13 16:21:24 +00:00
signatures=[b"", b"", b""],
2017-06-23 19:31:42 +00:00
m=2,
)
for i in [1, 2, 3]:
2018-08-13 16:21:24 +00:00
assert (
btc.get_address(
client, "Bitcoin", [i], show_display=True, multisig=multisig
2018-08-13 16:21:24 +00:00
)
== "3E7GDtuHqnqPmDgwH59pVC7AvySiSkbibz"
)
@pytest.mark.skip_t1
@pytest.mark.multisig
def test_show_multisig_xpubs(self, client):
nodes = [
btc.get_public_node(
client, tools.parse_path(f"48h/0h/{i}h"), coin_name="Bitcoin"
)
for i in range(3)
]
multisig = messages.MultisigRedeemScriptType(
nodes=[n.node for n in nodes],
signatures=[b"", b"", b""],
address_n=[0, 0],
m=2,
)
xpubs = [[n.xpub[i * 16 : (i + 1) * 16] for i in range(5)] for n in nodes]
for i in range(3):
def input_flow():
yield # show address
assert client.debug.wait_layout().lines == [
"Multisig 2 of 3",
"34yJV2b2GtbmxfZNw",
"jPyuyUYkUbUnogqa8",
]
client.debug.press_no()
yield # show QR code
assert client.debug.wait_layout().text.startswith("Qr")
client.debug.press_no()
yield # show XPUB#1
lines = client.debug.wait_layout().lines
assert lines[0] == "XPUB #1 " + ("(yours)" if i == 0 else "(others)")
assert lines[1:] == xpubs[0]
# just for UI test
client.debug.swipe_up()
client.debug.press_no()
yield # show XPUB#2
lines = client.debug.wait_layout().lines
assert lines[0] == "XPUB #2 " + ("(yours)" if i == 1 else "(others)")
assert lines[1:] == xpubs[1]
# just for UI test
client.debug.swipe_up()
client.debug.press_no()
yield # show XPUB#3
lines = client.debug.wait_layout().lines
assert lines[0] == "XPUB #3 " + ("(yours)" if i == 2 else "(others)")
assert lines[1:] == xpubs[2]
# just for UI test
client.debug.swipe_up()
client.debug.press_yes()
with client:
client.set_input_flow(input_flow)
btc.get_address(
client,
"Bitcoin",
tools.parse_path(f"48h/0h/{i}h/0/0"),
show_display=True,
multisig=multisig,
script_type=messages.InputScriptType.SPENDMULTISIG,
)
2019-10-22 14:32:00 +00:00
@pytest.mark.multisig
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
def test_show_multisig_15(self, client):
2018-08-13 16:21:24 +00:00
node = bip32.deserialize(
"xpub661MyMwAqRbcF1zGijBb2K6x9YiJPh58xpcCeLvTxMX6spkY3PcpJ4ABcCyWfskq5DDxM3e6Ez5ePCqG5bnPUXR4wL8TZWyoDaUdiWW7bKy"
)
2014-12-12 21:31:40 +00:00
pubs = []
for x in range(15):
pubs.append(messages.HDNodePathType(node=node, address_n=[x]))
2014-12-12 21:31:40 +00:00
multisig = messages.MultisigRedeemScriptType(
2018-08-13 16:21:24 +00:00
pubkeys=pubs, signatures=[b""] * 15, m=15
2017-06-23 19:31:42 +00:00
)
for i in range(15):
2018-08-13 16:21:24 +00:00
assert (
btc.get_address(
client, "Bitcoin", [i], show_display=True, multisig=multisig
2018-08-13 16:21:24 +00:00
)
== "3QaKF8zobqcqY8aS6nxCD5ZYdiRfL3RCmU"
)