2018-06-26 12:17:53 +00:00
|
|
|
# This file is part of the Trezor project.
|
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2018-06-26 12:17:53 +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.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
from trezorlib import debuglink
|
2018-07-12 14:27:42 +00:00
|
|
|
from trezorlib.ripple import get_address
|
2018-08-10 13:48:39 +00:00
|
|
|
from trezorlib.tools import parse_path
|
2018-08-13 16:21:24 +00:00
|
|
|
|
|
|
|
from .common import TrezorTest
|
2018-06-26 12:17:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.ripple
|
|
|
|
@pytest.mark.skip_t1 # T1 support is not planned
|
|
|
|
class TestMsgRippleGetAddress(TrezorTest):
|
|
|
|
def test_ripple_get_address(self):
|
|
|
|
# data from https://iancoleman.io/bip39/#english
|
|
|
|
self.setup_mnemonic_allallall()
|
|
|
|
|
2018-07-12 14:27:42 +00:00
|
|
|
address = get_address(self.client, parse_path("m/44'/144'/0'/0/0"))
|
2018-08-13 16:21:24 +00:00
|
|
|
assert address == "rNaqKtKrMSwpwZSzRckPf7S96DkimjkF4H"
|
2018-07-12 14:27:42 +00:00
|
|
|
address = get_address(self.client, parse_path("m/44'/144'/0'/0/1"))
|
2018-08-13 16:21:24 +00:00
|
|
|
assert address == "rBKz5MC2iXdoS3XgnNSYmF69K1Yo4NS3Ws"
|
2018-07-12 14:27:42 +00:00
|
|
|
address = get_address(self.client, parse_path("m/44'/144'/1'/0/0"))
|
2018-08-13 16:21:24 +00:00
|
|
|
assert address == "rJX2KwzaLJDyFhhtXKi3htaLfaUH2tptEX"
|
2018-06-26 12:17:53 +00:00
|
|
|
|
|
|
|
def test_ripple_get_address_other(self):
|
|
|
|
# data from https://github.com/you21979/node-ripple-bip32/blob/master/test/test.js
|
2018-08-10 12:04:58 +00:00
|
|
|
debuglink.load_device_by_mnemonic(
|
|
|
|
self.client,
|
2018-08-13 16:21:24 +00:00
|
|
|
mnemonic="armed bundle pudding lazy strategy impulse where identify submit weekend physical antenna flight social acoustic absurd whip snack decide blur unfold fiction pumpkin athlete",
|
|
|
|
pin="",
|
2018-06-26 12:17:53 +00:00
|
|
|
passphrase_protection=False,
|
2018-08-13 16:21:24 +00:00
|
|
|
label="test",
|
|
|
|
language="english",
|
|
|
|
)
|
2018-07-12 14:27:42 +00:00
|
|
|
address = get_address(self.client, parse_path("m/44'/144'/0'/0/0"))
|
2018-08-13 16:21:24 +00:00
|
|
|
assert address == "r4ocGE47gm4G4LkA9mriVHQqzpMLBTgnTY"
|
2018-07-12 14:27:42 +00:00
|
|
|
address = get_address(self.client, parse_path("m/44'/144'/0'/0/1"))
|
2018-08-13 16:21:24 +00:00
|
|
|
assert address == "rUt9ULSrUvfCmke8HTFU1szbmFpWzVbBXW"
|