mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
44a6696f24
instead of MODEL_IS_T2B1, we now catch INTERNAL_MODEL == Txyz this is still not perfect because it can't detect 'in'/'not in', which sucks but what can we do
44 lines
1.2 KiB
Python
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 not in ("T2B1", "T3T1"):
|
|
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()
|