mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-10 09:39:00 +00:00
e073e619c9
isort set to skip the first necessary "from common import *" line. A better solution would be to get rid of the need of this import in the future. [no changelog]
41 lines
1.6 KiB
Python
41 lines
1.6 KiB
Python
from common import * # isort:skip
|
|
|
|
from apps.cardano.helpers import bech32
|
|
|
|
|
|
@unittest.skipUnless(not utils.BITCOIN_ONLY, "altcoin")
|
|
class TestCardanoBech32(unittest.TestCase):
|
|
def test_decode_and_encode(self):
|
|
expected_bechs = [
|
|
# human readable part, bech32
|
|
("a", "a12uel5l"),
|
|
(
|
|
"an83characterlonghumanreadablepartthatcontainsthenumber1andtheexcludedcharactersbio",
|
|
"an83characterlonghumanreadablepartthatcontainsthenumber1andtheexcludedcharactersbio1tt5tgs",
|
|
),
|
|
("abcdef", "abcdef1qpzry9x8gf2tvdw0s3jn54khce6mua7lmqqqxw"),
|
|
(
|
|
"1",
|
|
"11qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqc8247j",
|
|
),
|
|
("split", "split1checkupstagehandshakeupstreamerranterredcaperred2y9e3w"),
|
|
(
|
|
"addr",
|
|
"addr1qzq0nckg3ekgzuqg7w5p9mvgnd9ym28qh5grlph8xd2z92sj922xhxkn6twlq2wn4q50q352annk3903tj00h45mgfmsw8ezsk",
|
|
),
|
|
(
|
|
"addr_test",
|
|
"addr_test1qzq0nckg3ekgzuqg7w5p9mvgnd9ym28qh5grlph8xd2z92sj922xhxkn6twlq2wn4q50q352annk3903tj00h45mgfmsu8d9w5",
|
|
),
|
|
]
|
|
|
|
for expected_human_readable_part, expected_bech in expected_bechs:
|
|
decoded = bech32._decode(expected_human_readable_part, expected_bech)
|
|
actual_bech = bech32.encode(expected_human_readable_part, decoded)
|
|
|
|
self.assertEqual(actual_bech, expected_bech)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|