1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/tests/device_tests/test_msg_nem_getaddress.py

38 lines
1.2 KiB
Python
Raw Normal View History

# This file is part of the Trezor project.
#
2019-05-29 16:44:09 +00:00
# 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>.
2018-04-18 13:53:40 +00:00
import pytest
2018-08-10 12:04:58 +00:00
from trezorlib import nem
2018-08-13 16:21:24 +00:00
from trezorlib.tools import parse_path
2019-09-11 12:43:32 +00:00
from ..common import MNEMONIC12
@pytest.mark.altcoin
@pytest.mark.nem
2019-09-11 12:29:39 +00:00
class TestMsgNEMGetaddress:
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
def test_nem_getaddress(self, client):
2018-08-13 16:21:24 +00:00
assert (
nem.get_address(client, parse_path("m/44'/1'/0'/0'/0'"), 0x68)
2018-08-13 16:21:24 +00:00
== "NB3JCHVARQNGDS3UVGAJPTFE22UQFGMCQGHUBWQN"
)
assert (
nem.get_address(client, parse_path("m/44'/1'/0'/0'/0'"), 0x98)
2018-08-13 16:21:24 +00:00
== "TB3JCHVARQNGDS3UVGAJPTFE22UQFGMCQHSBNBMF"
)