1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 19:09:10 +00:00
trezor-firmware/tests/device_tests/test_msg_lisk_getpublickey.py

37 lines
1.2 KiB
Python
Raw Normal View History

# This file is part of the Trezor project.
2018-04-16 15:31:11 +00:00
#
2019-05-29 16:44:09 +00:00
# Copyright (C) 2012-2019 SatoshiLabs and contributors
2018-04-16 15:31:11 +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.
2018-04-16 15:31:11 +00:00
#
# 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-16 15:31:11 +00:00
import pytest
2018-04-16 15:31:11 +00:00
2018-08-10 12:04:58 +00:00
from trezorlib import lisk
from trezorlib.tools import parse_path
2018-04-16 15:31:11 +00:00
2019-09-11 12:43:32 +00:00
from ..common import MNEMONIC12
2018-08-13 16:21:24 +00:00
LISK_PATH = parse_path("m/44h/134h/0h/0h")
@pytest.mark.altcoin
@pytest.mark.lisk
2019-09-11 12:29:39 +00:00
class TestMsgLiskGetPublicKey:
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
def test_lisk_get_public_key(self, client):
sig = lisk.get_public_key(client, LISK_PATH)
2018-08-13 16:21:24 +00:00
assert (
2018-09-14 10:23:38 +00:00
sig.public_key.hex()
== "eb56d7bbb5e8ea9269405f7a8527fe126023d1db2c973cfac6f760b60ae27294"
2018-08-13 16:21:24 +00:00
)