python-trezor/tests/common.py

49 lines
2.3 KiB
Python
Raw Normal View History

2016-05-20 13:27:20 -07:00
from __future__ import print_function
import unittest
2016-11-12 06:06:32 -08:00
from trezorlib.client import TrezorClient, TrezorDebugClient
from trezorlib.tx_api import TxApiBitcoin
2016-05-26 08:20:44 -07:00
import config
2013-09-12 20:28:56 -07:00
class TrezorTest(unittest.TestCase):
def setUp(self):
2016-11-12 06:06:32 -08:00
transport = config.TRANSPORT(*config.TRANSPORT_ARGS, **config.TRANSPORT_KWARGS)
if hasattr(config, 'DEBUG_TRANSPORT'):
debug_transport = config.DEBUG_TRANSPORT(*config.DEBUG_TRANSPORT_ARGS, **config.DEBUG_TRANSPORT_KWARGS)
self.client = TrezorDebugClient(transport)
self.client.set_debuglink(debug_transport)
else:
self.client = TrezorClient(transport)
self.client.set_tx_api(TxApiBitcoin)
2014-12-10 06:26:18 -08:00
# self.client.set_buttonwait(3)
2013-09-12 20:28:56 -07:00
2014-03-07 12:44:27 -08:00
# 1 2 3 4 5 6 7 8 9 10 11 12
2014-02-16 16:54:54 -08:00
self.mnemonic12 = 'alcohol woman abuse must during monitor noble actual mixed trade anger aisle'
self.mnemonic18 = 'owner little vague addict embark decide pink prosper true fork panda embody mixture exchange choose canoe electric jewel'
self.mnemonic24 = 'dignity pass list indicate nasty swamp pool script soccer toe leaf photo multiply desk host tomato cradle drill spread actor shine dismiss champion exotic'
2016-10-21 06:24:30 -07:00
self.mnemonic_all = ' '.join(['all'] * 12)
2013-09-12 20:28:56 -07:00
2014-02-16 16:54:54 -08:00
self.pin4 = '1234'
self.pin6 = '789456'
self.pin8 = '45678978'
2013-09-12 20:28:56 -07:00
2014-02-16 16:54:54 -08:00
self.client.wipe_device()
2013-09-12 20:28:56 -07:00
2016-05-04 18:16:17 -07:00
print("Setup finished")
print("--------------")
2014-02-16 16:54:54 -08:00
2016-10-21 06:24:30 -07:00
def setup_mnemonic_allallall(self):
self.client.load_device_by_mnemonic(mnemonic=self.mnemonic_all, pin='', passphrase_protection=False, label='test', language='english')
2014-02-16 16:54:54 -08:00
def setup_mnemonic_nopin_nopassphrase(self):
self.client.load_device_by_mnemonic(mnemonic=self.mnemonic12, pin='', passphrase_protection=False, label='test', language='english')
2014-12-13 10:07:30 -08:00
def setup_mnemonic_pin_nopassphrase(self):
self.client.load_device_by_mnemonic(mnemonic=self.mnemonic12, pin=self.pin4, passphrase_protection=False, label='test', language='english')
2014-02-16 16:54:54 -08:00
def setup_mnemonic_pin_passphrase(self):
self.client.load_device_by_mnemonic(mnemonic=self.mnemonic12, pin=self.pin4, passphrase_protection=True, label='test', language='english')
def tearDown(self):
self.client.close()