You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-trezor/tests/common.py

38 lines
1.4 KiB
Python

import unittest
import config
from trezorlib.client import TrezorClient
from trezorlib.debuglink import DebugLink
class TrezorTest(unittest.TestCase):
def setUp(self):
self.debug_transport = config.DEBUG_TRANSPORT(*config.DEBUG_TRANSPORT_ARGS)
self.transport = config.TRANSPORT(*config.TRANSPORT_ARGS)
self.client = TrezorClient(self.transport, DebugLink(self.debug_transport), debug=True)
10 years ago
# self.client = TrezorClient(self.transport, debug=False)
11 years ago
self.mnemonic1 = 'alcohol woman abuse must during monitor noble actual mixed trade anger aisle'
self.mnemonic2 = 'owner little vague addict embark decide pink prosper true fork panda embody mixture exchange choose canoe electric jewel'
self.pin1 = '1234'
self.pin2 = '43211'
self.client.setup_debuglink(button=True, pin_correct=True)
self.client.wipe_device()
11 years ago
self.client.load_device_by_mnemonic(
mnemonic=self.mnemonic1,
11 years ago
pin=self.pin1,
passphrase_protection=False,
label='test',
language='english',
)
11 years ago
# self.client.apply_settings(label='unit testing', coin_shortcut='BTC', language='english')
print "Setup finished"
print "--------------"
def tearDown(self):
self.debug_transport.close()
self.transport.close()