1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-04 03:40:58 +00:00

Implements 'with' + set_expected_responses

This commit is contained in:
slush0 2014-02-21 07:28:56 +01:00
parent eae7d98b8a
commit 640d290129
7 changed files with 139 additions and 110 deletions

View File

@ -21,6 +21,8 @@ x SimpleSignTx
FirmwareErase
FirmwareUpload
protection levels
- zrejme v sucinnosti s inymi testami
x ButtonRequest/ButtonAck workflow
x PinMatrixRequest/PinMatrixAck workflow

View File

@ -3,7 +3,7 @@ import common
import time
from trezorlib import tools
class TestAddresses(common.TrezorTest):
class TestBip32Speed(common.TrezorTest):
def test_public_ckd(self):
self.setup_mnemonic_nopin_nopassphrase()
@ -13,7 +13,7 @@ class TestAddresses(common.TrezorTest):
start = time.time()
self.client.get_address('Bitcoin', range(depth))
delay = time.time() - start
expected = (depth + 1) * 0.25
expected = (depth + 1) * 0.26
print "DEPTH", depth, "EXPECTED DELAY", expected, "REAL DELAY", delay
self.assertLessEqual(delay, expected)
@ -26,7 +26,7 @@ class TestAddresses(common.TrezorTest):
start = time.time()
self.client.get_address('Bitcoin', range(-depth, 0))
delay = time.time() - start
expected = (depth + 1) * 0.25
expected = (depth + 1) * 0.26
print "DEPTH", depth, "EXPECTED DELAY", expected, "REAL DELAY", delay
self.assertLessEqual(delay, expected)

View File

@ -3,7 +3,7 @@ import common
import trezorlib.ckd_public as bip32
from trezorlib import tools
class TestAddresses(common.TrezorTest):
class TestMsgGetaddress(common.TrezorTest):
def test_btc(self):
self.setup_mnemonic_nopin_nopassphrase()

View File

@ -18,10 +18,11 @@ def entropy(data):
e -= p * math.log(p, 256)
return e
class TestEntropy(common.TrezorTest):
class TestMsgGetentropy(common.TrezorTest):
def test_entropy(self):
for l in [0, 1, 2, 3, 4, 5, 8, 9, 16, 17, 32, 33, 64, 65, 128, 129, 256, 257, 512, 513, 1024]:
with self.client:
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_Other), proto.Entropy()])
ent = self.client.get_entropy(l)
self.assertTrue(len(ent) >= l)

View File

@ -10,18 +10,22 @@ class TestPing(common.TrezorTest):
def test_ping(self):
self.setup_mnemonic_pin_passphrase()
with self.client:
self.client.set_expected_responses([proto.Success()])
res = self.client.ping('random data')
self.assertEqual(res, 'random data')
with self.client:
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_Other), proto.Success()])
res = self.client.ping('random data', button_protection=True)
self.assertEqual(res, 'random data')
with self.client:
self.client.set_expected_responses([proto.PinMatrixRequest(), proto.Success()])
res = self.client.ping('random data', pin_protection=True)
self.assertEqual(res, 'random data')
with self.client:
self.client.set_expected_responses([proto.PassphraseRequest(), proto.Success()])
res = self.client.ping('random data', passphrase_protection=True)
self.assertEqual(res, 'random data')
@ -29,10 +33,12 @@ class TestPing(common.TrezorTest):
def test_ping_caching(self):
self.setup_mnemonic_pin_passphrase()
with self.client:
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_Other), proto.PinMatrixRequest(), proto.PassphraseRequest(), proto.Success()])
res = self.client.ping('random data', button_protection=True, pin_protection=True, passphrase_protection=True)
self.assertEqual(res, 'random data')
with self.client:
# pin and passphrase are cached
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_Other), proto.Success()])
res = self.client.ping('random data', button_protection=True, pin_protection=True, passphrase_protection=True)

View File

@ -55,6 +55,7 @@ class TestSignTx(common.TrezorTest):
script_type=proto_types.PAYTOADDRESS,
)
with self.client:
msg = self.client._prepare_simple_sign_tx('Bitcoin', [inp1, ], [out1, ])
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
proto.TxRequest(request_index=-1)])
@ -84,6 +85,7 @@ class TestSignTx(common.TrezorTest):
script_type=proto_types.PAYTOADDRESS,
)
with self.client:
self.client.set_tx_func(FakeTestnetBlockchain().get_tx)
msg = self.client._prepare_simple_sign_tx('Testnet', [inp1, ], [out1, out2])
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
@ -114,6 +116,7 @@ class TestSignTx(common.TrezorTest):
script_type=proto_types.PAYTOADDRESS,
)
with self.client:
self.client.set_tx_func(FakeTestnetBlockchain().get_tx)
msg = self.client._prepare_simple_sign_tx('Testnet', [inp1, ], [out1, out2])
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
@ -146,6 +149,7 @@ class TestSignTx(common.TrezorTest):
script_type=proto_types.PAYTOADDRESS,
)
with self.client:
msg = self.client._prepare_simple_sign_tx('Bitcoin', [inp1, ], [out1, out2])
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
@ -181,6 +185,7 @@ class TestSignTx(common.TrezorTest):
script_type=proto_types.PAYTOADDRESS,
)
with self.client:
msg = self.client._prepare_simple_sign_tx('Bitcoin', [inp1, ], [out1, out2, out3])
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
@ -220,6 +225,7 @@ class TestSignTx(common.TrezorTest):
script_type=proto_types.PAYTOADDRESS,
)
with self.client:
msg = self.client._prepare_simple_sign_tx('Bitcoin', [inp1, inp2], [out1, out2])
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
@ -260,6 +266,7 @@ class TestSignTx(common.TrezorTest):
)
outputs.append(out)
with self.client:
msg = self.client._prepare_simple_sign_tx('Bitcoin', [inp1, inp2], outputs)
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput), ] * 255 + \
[proto.TxRequest(), ])
@ -285,6 +292,7 @@ class TestSignTx(common.TrezorTest):
script_type=proto_types.PAYTOADDRESS,
)
with self.client:
msg = self.client._prepare_simple_sign_tx('Bitcoin', [inp1, ], [out1, ])
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
proto.ButtonRequest(code=proto_types.ButtonRequest_FeeOverThreshold),
@ -310,6 +318,7 @@ class TestSignTx(common.TrezorTest):
script_type=proto_types.PAYTOADDRESS,
)
with self.client:
msg = self.client._prepare_simple_sign_tx('Bitcoin', [inp1, ], [out1, ])
self.client.set_expected_responses([proto.ButtonRequest(code=proto_types.ButtonRequest_ConfirmOutput),
proto.Failure(code=proto_types.Failure_NotEnoughFunds)])

View File

@ -23,20 +23,26 @@ class TestProtectCall(common.TrezorTest):
# This is low-level test of set_expected_responses()
# feature of debugging client
with self.client:
# Scenario 1 - Received unexpected message
self.client.set_expected_responses([])
self.assertRaises(CallException, self._some_protected_call, True, True, True)
with self.client:
# Scenario 2 - Received other than expected message
self.client.set_expected_responses([proto.Success()])
self.assertRaises(CallException, self._some_protected_call, True, True, True)
def scenario3():
with self.client:
# Scenario 3 - Not received expected message
self.client.set_expected_responses([proto.ButtonRequest(),
proto.Success(),
proto.Success()]) # This is expected, but not received
self.assertRaises(Exception, self._some_protected_call, True, False, False)
self._some_protected_call(True, False, False)
self.assertRaises(Exception, scenario3)
with self.client:
# Scenario 4 - Received what expected
self.client.set_expected_responses([proto.ButtonRequest(),
proto.PinMatrixRequest(),
@ -44,15 +50,18 @@ class TestProtectCall(common.TrezorTest):
proto.Success(message='random data')])
self._some_protected_call(True, True, True)
def scenario5():
with self.client:
# Scenario 5 - Failed message by field filter
self.client.set_expected_responses([proto.ButtonRequest(),
proto.PinMatrixRequest(),
proto.Success(message='wrong data')])
self.assertRaises(CallException, self._some_protected_call, True, True, True)
self._some_protected_call(True, True, True)
self.assertRaises(CallException, scenario5)
def test_no_protection(self):
self.setup_mnemonic_nopin_nopassphrase()
with self.client:
self.assertEqual(self.client.debug.read_pin()[0], '')
self.client.set_expected_responses([proto.Success()])
self._some_protected_call(False, True, True)
@ -60,6 +69,7 @@ class TestProtectCall(common.TrezorTest):
def test_pin(self):
self.setup_mnemonic_pin_passphrase()
with self.client:
self.assertEqual(self.client.debug.read_pin()[0], self.pin4)
self.client.setup_debuglink(button=True, pin_correct=True)
self.client.set_expected_responses([proto.ButtonRequest(),
@ -94,6 +104,7 @@ class TestProtectCall(common.TrezorTest):
start = time.time()
self.assertRaises(PinException, self._some_protected_call, False, True, False)
test_backoff(attempt, start)
'''
# Unplug Trezor now
self.client.debuglink.stop()