1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 14:30:31 +00:00
trezor-firmware/core/tests/test_apps.common.coins.py

44 lines
1.2 KiB
Python
Raw Normal View History

from common import * # isort:skip
2016-11-15 10:57:18 +00:00
from apps.common import coins
2017-12-16 01:11:26 +00:00
2016-11-15 10:57:18 +00:00
class TestCoins(unittest.TestCase):
def test_bitcoin(self):
2016-11-15 10:57:18 +00:00
ref = [
2023-06-28 10:46:29 +00:00
("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 = [
2023-06-28 10:46:29 +00:00
("LTC", "Litecoin", 48),
("ZEC", "Zcash", 7352),
("TAZ", "Zcash Testnet", 7461),
2016-11-15 10:57:18 +00:00
]
if utils.INTERNAL_MODEL not in ("T2B1", "T3T1"):
ref.extend(
[
("NMC", "Namecoin", 52),
("DASH", "Dash", 76),
]
)
2016-11-15 10:57:18 +00:00
for s, n, a in ref:
c = coins.by_name(n)
self.assertEqual(c.address_type, a)
self.assertEqual(c.coin_shortcut, s)
2016-11-15 10:57:18 +00:00
def test_failure(self):
with self.assertRaises(ValueError):
2023-06-28 10:46:29 +00:00
coins.by_name("XXXXX")
2016-11-15 10:57:18 +00:00
2023-06-28 10:46:29 +00:00
if __name__ == "__main__":
2016-11-15 10:57:18 +00:00
unittest.main()