1
0
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:
Ioan Bizău 2024-11-22 13:12:56 +01:00
parent 0c33e899df
commit 608b366b2e

View File

@ -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