2018-11-04 14:21:08 +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-11-04 14:21:08 +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
|
|
|
|
|
|
|
|
from trezorlib import monero
|
|
|
|
from trezorlib.tools import parse_path
|
|
|
|
|
2019-09-11 12:43:32 +00:00
|
|
|
from ..common import MNEMONIC12
|
2018-11-04 14:21:08 +00:00
|
|
|
|
|
|
|
|
2019-08-22 16:47:01 +00:00
|
|
|
@pytest.mark.altcoin
|
2018-11-04 14:21:08 +00:00
|
|
|
@pytest.mark.monero
|
|
|
|
@pytest.mark.skip_t1
|
2019-09-11 12:29:39 +00:00
|
|
|
class TestMsgMoneroGetaddress:
|
2019-08-27 14:58:59 +00:00
|
|
|
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
|
|
|
|
def test_monero_getaddress(self, client):
|
2018-11-04 14:21:08 +00:00
|
|
|
assert (
|
2019-08-27 14:58:59 +00:00
|
|
|
monero.get_address(client, parse_path("m/44h/128h/0h"))
|
2018-11-04 14:21:08 +00:00
|
|
|
== b"4Ahp23WfMrMFK3wYL2hLWQFGt87ZTeRkufS6JoQZu6MEFDokAQeGWmu9MA3GFq1yVLSJQbKJqVAn9F9DLYGpRzRAEXqAXKM"
|
|
|
|
)
|
|
|
|
assert (
|
2019-08-27 14:58:59 +00:00
|
|
|
monero.get_address(client, parse_path("m/44h/128h/1h"))
|
2018-11-04 14:21:08 +00:00
|
|
|
== b"44iAazhoAkv5a5RqLNVyh82a1n3ceNggmN4Ho7bUBJ14WkEVR8uFTe9f7v5rNnJ2kEbVXxfXiRzsD5Jtc6NvBi4D6WNHPie"
|
|
|
|
)
|
|
|
|
assert (
|
2019-08-27 14:58:59 +00:00
|
|
|
monero.get_address(client, parse_path("m/44h/128h/2h"))
|
2018-11-04 14:21:08 +00:00
|
|
|
== b"47ejhmbZ4wHUhXaqA4b7PN667oPMkokf4ZkNdWrMSPy9TNaLVr7vLqVUQHh2MnmaAEiyrvLsX8xUf99q3j1iAeMV8YvSFcH"
|
|
|
|
)
|