2013-01-14 13:44:31 +00:00
|
|
|
import unittest
|
|
|
|
import config
|
|
|
|
|
2013-09-13 03:28:56 +00:00
|
|
|
from trezorlib.client import TrezorClient
|
|
|
|
from trezorlib.debuglink import DebugLink
|
|
|
|
from trezorlib import proto
|
2013-01-14 13:44:31 +00:00
|
|
|
|
2013-09-13 03:28:56 +00:00
|
|
|
class TrezorTest(unittest.TestCase):
|
2013-01-14 13:44:31 +00:00
|
|
|
def setUp(self):
|
|
|
|
self.debug_transport = config.DEBUG_TRANSPORT(*config.DEBUG_TRANSPORT_ARGS)
|
|
|
|
self.transport = config.TRANSPORT(*config.TRANSPORT_ARGS)
|
2013-09-13 03:28:56 +00:00
|
|
|
self.client = TrezorClient(self.transport, DebugLink(self.debug_transport), debug=True)
|
|
|
|
|
2013-10-08 18:33:09 +00:00
|
|
|
self.mnemonic1 = 'juice enrich pool orbit brick prevent system chronic people industry insane private'
|
|
|
|
self.mnemonic2 = 'bark depend buffalo library lonely syrup exact trip kitten yellow arch into damage phone toy wild color soon suit move opinion type replace donate'
|
2013-09-13 03:28:56 +00:00
|
|
|
self.pin1 = '1234'
|
|
|
|
self.pin2 = '43211'
|
|
|
|
|
|
|
|
self.client.setup_debuglink(button=True, pin_correct=True)
|
2013-01-14 13:44:31 +00:00
|
|
|
|
2013-09-13 03:28:56 +00:00
|
|
|
self.client.load_device(
|
|
|
|
seed=self.mnemonic1,
|
|
|
|
pin=self.pin1)
|
|
|
|
|
|
|
|
self.client.apply_settings(label='unit testing', coin_shortcut='BTC', language='english')
|
|
|
|
|
2013-01-14 13:44:31 +00:00
|
|
|
print "Setup finished"
|
|
|
|
print "--------------"
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.debug_transport.close()
|
2013-04-15 17:57:36 +00:00
|
|
|
self.transport.close()
|