1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 02:19:21 +00:00
trezor-firmware/tests/test_apps.common.coins.py
Tomas Susanka 7e3673ad26 common: remove coins.by_address_type because there are conflicts
Unfortunetly, there are coins with the same `address type` field. For
example ZClassic Coin uses the same one as Zcash.
2019-02-18 17:00:17 +01:00

32 lines
790 B
Python

from common import *
from apps.common import coins
class TestCoins(unittest.TestCase):
def test_coins(self):
ref = [
('BTC', 'Bitcoin', 0),
('NMC', 'Namecoin', 52),
('LTC', 'Litecoin', 48),
('DASH', 'Dash', 76),
('ZEC', 'Zcash', 7352),
('TAZ', 'Zcash Testnet', 7461),
]
for s, n, a in ref:
c1 = coins.by_shortcut(s)
c2 = coins.by_name(n)
self.assertEqual(c1, c2)
self.assertEqual(c1.address_type, a)
def test_failure(self):
with self.assertRaises(ValueError):
coins.by_shortcut('XXX')
with self.assertRaises(ValueError):
coins.by_name('XXXXX')
if __name__ == '__main__':
unittest.main()