mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 19:18:56 +00:00
445f56d387
- core/bitcoin: move common files to the app's root - core/bitcoin: use require_confirm instead of confirm - core: move bitcoin unrelated functions from 'bitcoin' to a new 'misc' app - core/bitcoin: use relative imports inside the app - core: rename wallet app to bitcoin - core/wallet: replace SigningErrors and the other exception classes with wire.Errors
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
from common import *
|
|
|
|
from apps.bitcoin.sign_tx.omni import is_valid, parse
|
|
|
|
class TestSignTxOmni(unittest.TestCase):
|
|
|
|
def test_is_valid(self):
|
|
VECTORS = {
|
|
"6f6d6e69": False,
|
|
"6f6d6e69000000": False,
|
|
"6f6d6e6900000000": True,
|
|
"6f6d6e69000000000000001f0000000020c85580": True,
|
|
"0f6d6e69000000000000001f0000000020c85580": False,
|
|
"6f6d6e69000000000000001f0000000020c8558000": True,
|
|
"6f6d6e69000000000000001f0000000020c855": True,
|
|
}
|
|
for k, v in VECTORS.items():
|
|
k = unhexlify(k)
|
|
self.assertEqual(is_valid(k), v)
|
|
|
|
def test_parse(self):
|
|
VECTORS = {
|
|
"6f6d6e69000000000000001f000000002b752ee0": "Simple send of 7.291 USDT",
|
|
"6f6d6e69000000000000001f0000000020c85580": "Simple send of 5.5 USDT",
|
|
"6f6d6e690000000000000003000000002b752ee0": "Simple send of 729100000 MAID",
|
|
"6f6d6e690000000000000000000000002b752ee0": "Simple send of 729100000 UNKN",
|
|
"6f6d6e6901000000": "Unknown transaction",
|
|
}
|
|
for k, v in VECTORS.items():
|
|
k = unhexlify(k)
|
|
self.assertEqual(parse(k), v)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|