mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 14:59:44 +00:00
172 lines
5.8 KiB
Python
172 lines
5.8 KiB
Python
# 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 btc, messages as proto
|
|
from trezorlib.exceptions import TrezorFailure
|
|
from trezorlib.tools import parse_path
|
|
|
|
|
|
class TestMsgGetaddressSegwitNative:
|
|
def test_show_segwit(self, client):
|
|
assert (
|
|
btc.get_address(
|
|
client,
|
|
"Testnet",
|
|
parse_path("84'/1'/0'/0/0"),
|
|
True,
|
|
None,
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
)
|
|
== "tb1qkvwu9g3k2pdxewfqr7syz89r3gj557l3uuf9r9"
|
|
)
|
|
assert (
|
|
btc.get_address(
|
|
client,
|
|
"Testnet",
|
|
parse_path("84'/1'/0'/1/0"),
|
|
False,
|
|
None,
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
)
|
|
== "tb1qejqxwzfld7zr6mf7ygqy5s5se5xq7vmt96jk9x"
|
|
)
|
|
assert (
|
|
btc.get_address(
|
|
client,
|
|
"Testnet",
|
|
parse_path("84'/1'/0'/0/0"),
|
|
False,
|
|
None,
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
)
|
|
== "tb1qkvwu9g3k2pdxewfqr7syz89r3gj557l3uuf9r9"
|
|
)
|
|
assert (
|
|
btc.get_address(
|
|
client,
|
|
"Testnet",
|
|
parse_path("44'/1'/0'/0/0"),
|
|
False,
|
|
None,
|
|
script_type=proto.InputScriptType.SPENDADDRESS,
|
|
)
|
|
== "mvbu1Gdy8SUjTenqerxUaZyYjmveZvt33q"
|
|
)
|
|
|
|
@pytest.mark.altcoin
|
|
def test_show_segwit_altcoin(self, client):
|
|
assert (
|
|
btc.get_address(
|
|
client,
|
|
"Groestlcoin",
|
|
parse_path("84'/17'/0'/0/0"),
|
|
False,
|
|
None,
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
)
|
|
== "grs1qw4teyraux2s77nhjdwh9ar8rl9dt7zww8r6lne"
|
|
)
|
|
assert (
|
|
btc.get_address(
|
|
client,
|
|
"Elements",
|
|
parse_path("84'/1'/0'/0/0"),
|
|
False,
|
|
None,
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
)
|
|
== "ert1qkvwu9g3k2pdxewfqr7syz89r3gj557l3xp9k2v"
|
|
)
|
|
|
|
@pytest.mark.multisig
|
|
def test_show_multisig_3(self, client):
|
|
nodes = [
|
|
btc.get_public_node(
|
|
client, parse_path("84'/1'/%d'" % index), coin_name="Testnet"
|
|
).node
|
|
for index in range(1, 4)
|
|
]
|
|
multisig1 = proto.MultisigRedeemScriptType(
|
|
nodes=nodes, address_n=[0, 0], signatures=[b"", b"", b""], m=2
|
|
)
|
|
multisig2 = proto.MultisigRedeemScriptType(
|
|
nodes=nodes, address_n=[0, 1], signatures=[b"", b"", b""], m=2
|
|
)
|
|
for i in [1, 2, 3]:
|
|
assert (
|
|
btc.get_address(
|
|
client,
|
|
"Testnet",
|
|
parse_path("84'/1'/%d'/0/1" % i),
|
|
False,
|
|
multisig2,
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
)
|
|
== "tb1qauuv4e2pwjkr4ws5f8p20hu562jlqpe5h74whxqrwf7pufsgzcms9y8set"
|
|
)
|
|
assert (
|
|
btc.get_address(
|
|
client,
|
|
"Testnet",
|
|
parse_path("84'/1'/%d'/0/0" % i),
|
|
False,
|
|
multisig1,
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
)
|
|
== "tb1qgvn67p4twmpqhs8c39tukmu9geamtf7x0z3flwf9rrw4ff3h6d2qt0czq3"
|
|
)
|
|
|
|
@pytest.mark.multisig
|
|
@pytest.mark.parametrize("show_display", (True, False))
|
|
def test_multisig_missing(self, client, show_display):
|
|
# Multisig with global suffix specification.
|
|
# Use account numbers 1, 2 and 3 to create a valid multisig,
|
|
# but not containing the keys from account 0 used below.
|
|
nodes = [
|
|
btc.get_public_node(client, parse_path("84'/0'/%d'" % i)).node
|
|
for i in range(1, 4)
|
|
]
|
|
multisig1 = proto.MultisigRedeemScriptType(
|
|
nodes=nodes, address_n=[0, 0], signatures=[b"", b"", b""], m=2
|
|
)
|
|
|
|
# Multisig with per-node suffix specification.
|
|
node = btc.get_public_node(
|
|
client, parse_path("84h/0h/0h/0"), coin_name="Bitcoin"
|
|
).node
|
|
multisig2 = proto.MultisigRedeemScriptType(
|
|
pubkeys=[
|
|
proto.HDNodePathType(node=node, address_n=[1]),
|
|
proto.HDNodePathType(node=node, address_n=[2]),
|
|
proto.HDNodePathType(node=node, address_n=[3]),
|
|
],
|
|
signatures=[b"", b"", b""],
|
|
m=2,
|
|
)
|
|
|
|
for multisig in (multisig1, multisig2):
|
|
with pytest.raises(TrezorFailure):
|
|
btc.get_address(
|
|
client,
|
|
"Bitcoin",
|
|
parse_path("84'/0'/0'/0/0"),
|
|
show_display=show_display,
|
|
multisig=multisig,
|
|
script_type=proto.InputScriptType.SPENDWITNESS,
|
|
)
|