mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-17 05:03:07 +00:00
37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
import unittest
|
|
import config
|
|
|
|
from trezorlib.client import TrezorDebugClient
|
|
from trezorlib.api_blockchain import BlockchainApi
|
|
|
|
class TrezorTest(unittest.TestCase):
|
|
def setUp(self):
|
|
self.debug_transport = config.DEBUG_TRANSPORT(*config.DEBUG_TRANSPORT_ARGS, **config.DEBUG_TRANSPORT_KWARGS)
|
|
self.transport = config.TRANSPORT(*config.TRANSPORT_ARGS, **config.TRANSPORT_KWARGS)
|
|
self.client = TrezorDebugClient(self.transport)
|
|
self.client.set_debuglink(self.debug_transport)
|
|
self.client.set_tx_func(BlockchainApi().get_tx)
|
|
|
|
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.wipe_device()
|
|
self.client.load_device_by_mnemonic(
|
|
mnemonic=self.mnemonic1,
|
|
pin=self.pin1,
|
|
passphrase_protection=False,
|
|
label='test',
|
|
language='english',
|
|
)
|
|
|
|
# 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()
|