mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-09 16:18:10 +00:00
46 lines
1.9 KiB
Python
46 lines
1.9 KiB
Python
# This file is part of the Trezor project.
|
|
#
|
|
# Copyright (C) 2012-2018 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>.
|
|
|
|
import pytest
|
|
|
|
from .common import TrezorTest
|
|
from trezorlib import btc
|
|
from trezorlib import debuglink
|
|
|
|
|
|
@pytest.mark.skip_t2
|
|
class TestDeviceLoadXprv(TrezorTest):
|
|
|
|
def test_load_device_xprv_1(self):
|
|
debuglink.load_device_by_xprv(self.client, xprv='xprv9s21ZrQH143K2JF8RafpqtKiTbsbaxEeUaMnNHsm5o6wCW3z8ySyH4UxFVSfZ8n7ESu7fgir8imbZKLYVBxFPND1pniTZ81vKfd45EHKX73', pin='', passphrase_protection=False, label='test', language='english')
|
|
|
|
passphrase_protection = self.client.debug.read_passphrase_protection()
|
|
assert passphrase_protection is False
|
|
|
|
address = btc.get_address(self.client, 'Bitcoin', [])
|
|
assert address == '128RdrAkJDmqasgvfRf6MC5VcX4HKqH4mR'
|
|
|
|
def test_load_device_xprv_2(self):
|
|
debuglink.load_device_by_xprv(self.client, xprv='xprv9s21ZrQH143K2JF8RafpqtKiTbsbaxEeUaMnNHsm5o6wCW3z8ySyH4UxFVSfZ8n7ESu7fgir8imbZKLYVBxFPND1pniTZ81vKfd45EHKX73', pin='', passphrase_protection=True, label='test', language='english')
|
|
|
|
self.client.set_passphrase('passphrase')
|
|
|
|
passphrase_protection = self.client.debug.read_passphrase_protection()
|
|
assert passphrase_protection is True
|
|
|
|
address = btc.get_address(self.client, 'Bitcoin', [])
|
|
assert address == '1CHUbFa4wTTPYgkYaw2LHSd5D4qJjMU8ri'
|