amt.py 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #!/usr/bin/env python3
  2. """
  3. test.modtest_d.amt: CoinAmt unit tests for the MMGen suite
  4. """
  5. from decimal import Decimal
  6. from mmgen.protocol import init_proto
  7. from mmgen.tx.new import parse_fee_spec
  8. from mmgen.cfg import Config
  9. from ..include.common import cfg, vmsg
  10. def get_protos(data):
  11. return {coin: init_proto(cfg, coin, need_amt=True) for coin in set(d[0] for d in data)}
  12. def test_to_unit(data):
  13. protos = get_protos(data)
  14. for proto, amt, unit, chk in data:
  15. amt = protos[proto].coin_amt(amt)
  16. res = amt.to_unit(unit)
  17. vmsg(f' {proto.upper()} {amt.fmt(8)} => {res:<14} {unit}')
  18. if '.' in chk:
  19. assert res == Decimal(chk), f'{res} != {Decimal(chk)}'
  20. else:
  21. assert res == int(chk), f'{res} != {int(chk)}'
  22. return True
  23. def test_fee_spec(data):
  24. protos = get_protos(data)
  25. for proto, spec, amt, unit in data:
  26. vmsg(f' {proto.upper():6} {spec:<5} => {amt:<4} {unit}')
  27. res = parse_fee_spec(protos[proto], spec)
  28. assert res.amt == amt, f' {res.amt} != {amt}'
  29. assert res.unit == unit, f' {res.unit} != {unit}'
  30. return True
  31. class unit_tests:
  32. altcoin_deps = ('fee_spec_alt', 'to_unit_alt')
  33. def to_unit(self, name, ut, desc='CoinAmt.to_unit() (BTC)'):
  34. return test_to_unit((
  35. ('btc', '0.00000001', 'satoshi', '1'),
  36. ('btc', '1.23456789', 'satoshi', '123456789')))
  37. def to_unit_alt(self, name, ut, desc='CoinAmt.to_unit() (LTC, BCH, ETH, XMR)'):
  38. return test_to_unit((
  39. ('ltc', '0.00000001', 'satoshi', '1'),
  40. ('ltc', '1.23456789', 'satoshi', '123456789'),
  41. ('bch', '0.00000001', 'satoshi', '1'),
  42. ('bch', '1.23456789', 'satoshi', '123456789'),
  43. ('eth', '1.234567890123456789', 'wei', '1234567890123456789'),
  44. ('eth', '1.234567890123456789', 'Kwei', '1234567890123456.789'),
  45. ('eth', '1.234567890123456789', 'Mwei', '1234567890123.456789'),
  46. ('eth', '1.234567890123456789', 'finney', '1234.567890123456789'),
  47. ('eth', '0.000000012345678901', 'Mwei', '12345.678901'),
  48. ('eth', '0.000000000000000001', 'Kwei', '0.001'),
  49. ('eth', '0.000000000000000001', 'Gwei', '0.000000001'),
  50. ('eth', '0.00000001', 'Gwei', '10'),
  51. ('eth', '1', 'Gwei', '1000000000'),
  52. ('eth', '1', 'finney', '1000'),
  53. ('xmr', '1', 'atomic', '1000000000000'),
  54. ('xmr', '0.000000000001', 'atomic', '1'),
  55. ('xmr', '1.234567890123', 'atomic', '1234567890123')))
  56. def fee_spec(self, name, ut, desc='fee spec parsing (BTC)'):
  57. return test_fee_spec((
  58. ('btc', '32s', '32', 'satoshi'),
  59. ('btc', '1s', '1', 'satoshi')))
  60. def fee_spec_alt(self, name, ut, desc='fee spec parsing (LTC, BCH, ETH, XMR)'):
  61. return test_fee_spec((
  62. ('ltc', '3.07s', '3.07', 'satoshi'),
  63. ('bch', '3.07s', '3.07', 'satoshi'),
  64. ('eth', '3.07G', '3.07', 'Gwei'),
  65. ('eth', '37M', '37', 'Mwei'),
  66. ('eth', '3701w', '3701', 'wei'),
  67. ('eth', '3.07M', '3.07', 'Mwei'),
  68. ('xmr', '3.07a', '3.07', 'atomic')))