2018-09-10 14:40:31 +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-09-10 14:40:31 +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
|
|
|
|
|
2022-01-31 12:25:30 +00:00
|
|
|
from trezorlib.debuglink import TrezorClientDebugLink as Client
|
2018-09-10 14:40:31 +00:00
|
|
|
from trezorlib.tezos import get_address
|
|
|
|
from trezorlib.tools import parse_path
|
|
|
|
|
|
|
|
|
2019-08-22 16:47:01 +00:00
|
|
|
@pytest.mark.altcoin
|
2018-09-10 14:40:31 +00:00
|
|
|
@pytest.mark.tezos
|
|
|
|
@pytest.mark.skip_t1
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_tezos_get_address(client: Client):
|
|
|
|
path = parse_path("m/44h/1729h/0h")
|
2021-11-10 21:19:53 +00:00
|
|
|
address = get_address(client, path, show_display=True)
|
|
|
|
assert address == "tz1Kef7BSg6fo75jk37WkKRYSnJDs69KVqt9"
|
2018-09-10 14:40:31 +00:00
|
|
|
|
2022-01-31 12:25:30 +00:00
|
|
|
path = parse_path("m/44h/1729h/1h")
|
2021-11-10 21:19:53 +00:00
|
|
|
address = get_address(client, path, show_display=True)
|
|
|
|
assert address == "tz1ekQapZCX4AXxTJhJZhroDKDYLHDHegvm1"
|