1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 06:19:27 +00:00
trezor-firmware/core/tests/test_apps.common.coins.py
matejcik afb75892f2 chore(core): include T3B1 where relevant
also convert "INTERNAL_MODEL in (tuple)" to equality comparisons, see
previous commit

[no changelog]
2024-08-29 10:56:21 +02:00

44 lines
1.2 KiB
Python

from common import * # isort:skip
from apps.common import coins
class TestCoins(unittest.TestCase):
def test_bitcoin(self):
ref = [
("BTC", "Bitcoin", 0),
("TEST", "Testnet", 111),
("REGTEST", "Regtest", 111),
]
for s, n, a in ref:
c = coins.by_name(n)
self.assertEqual(c.address_type, a)
self.assertEqual(c.coin_shortcut, s)
@unittest.skipUnless(not utils.BITCOIN_ONLY, "altcoin")
def test_altcoins(self):
ref = [
("LTC", "Litecoin", 48),
("ZEC", "Zcash", 7352),
("TAZ", "Zcash Testnet", 7461),
]
if utils.INTERNAL_MODEL in ("T1B1", "T2T1"):
ref.extend(
[
("NMC", "Namecoin", 52),
("DASH", "Dash", 76),
]
)
for s, n, a in ref:
c = coins.by_name(n)
self.assertEqual(c.address_type, a)
self.assertEqual(c.coin_shortcut, s)
def test_failure(self):
with self.assertRaises(ValueError):
coins.by_name("XXXXX")
if __name__ == "__main__":
unittest.main()