mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-10-31 20:39:48 +00:00
40 lines
1.0 KiB
Python
40 lines
1.0 KiB
Python
from common import *
|
|
|
|
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 = [
|
|
('NMC', 'Namecoin', 52),
|
|
('LTC', 'Litecoin', 48),
|
|
('DASH', 'Dash', 76),
|
|
('ZEC', 'Zcash', 7352),
|
|
('TAZ', 'Zcash Testnet', 7461),
|
|
]
|
|
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()
|