mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 23:48:12 +00:00
fixup! chore(core/tests): add smoke test for libtropic
This commit is contained in:
parent
0c33e899df
commit
608b366b2e
@ -11,9 +11,6 @@ class TestCryptoTropic(unittest.TestCase):
|
||||
def test_get_certificate(self):
|
||||
self.assertEqual(len(tropic.get_certificate()), 512)
|
||||
|
||||
def test_get_random(self):
|
||||
self.assertEqual(len(tropic.random_get(10)), 10)
|
||||
|
||||
def test_sign(self):
|
||||
try:
|
||||
tropic.sign(0, "ASD")
|
||||
@ -21,13 +18,6 @@ class TestCryptoTropic(unittest.TestCase):
|
||||
except ValueError as e:
|
||||
self.assertIn("invalid length", str(e).lower())
|
||||
|
||||
# signing needs to fail because we don't have a key!
|
||||
try:
|
||||
tropic.sign(0, "a" * 32)
|
||||
assert False
|
||||
except tropic.TropicError as e:
|
||||
self.assertIn("sign failed", str(e).lower())
|
||||
|
||||
tropic.key_generate(0)
|
||||
|
||||
# signing should work now that we have a key
|
||||
|
Loading…
Reference in New Issue
Block a user