ethbump.py 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. #!/usr/bin/env python3
  2. #
  3. # MMGen Wallet, a terminal-based cryptocurrency wallet
  4. # Copyright (C)2013-2025 The MMGen Project <mmgen@tuta.io>
  5. # Licensed under the GNU General Public License, Version 3:
  6. # https://www.gnu.org/licenses
  7. # Public project repositories:
  8. # https://github.com/mmgen/mmgen-wallet
  9. # https://gitlab.com/mmgen/mmgen-wallet
  10. """
  11. test.cmdtest_d.ethbump: Ethereum transaction bumping tests for the cmdtest.py test suite
  12. """
  13. import sys, time, asyncio, json
  14. from mmgen.util import ymsg, suf
  15. from .ethdev import CmdTestEthdev, CmdTestEthdevMethods, dfl_sid
  16. from ..include.common import imsg, omsg_r
  17. from .include.common import cleanup_env, dfl_words_file
  18. burn_addr = 'beefcafe22' * 4
  19. class CmdTestEthBumpMethods:
  20. def _txcreate(self, args, acct):
  21. self.get_file_with_ext('rawtx', delete_all=True)
  22. return self.txcreate(args, acct=acct, interactive_fee='0.9G', fee_info_data=('0.0000189', '0.9'))
  23. def _txsign(self, has_label=True):
  24. self.get_file_with_ext('sigtx', delete_all=True)
  25. return self.txsign(has_label=has_label)
  26. def _txsend(self, has_label=True):
  27. return self.txsend(has_label=has_label)
  28. def _txbump_feebump(self, *args, **kwargs):
  29. self.get_file_with_ext('rawtx', delete_all=True)
  30. return self._txbump(*args, **kwargs)
  31. def _txbump_new_outputs(self, *, args, fee, add_opts=[]):
  32. self.get_file_with_ext('rawtx', delete_all=True)
  33. ext = '{}.regtest.sigtx'.format('-α' if self.cfg.debug_utf8 else '')
  34. txfile = self.get_file_with_ext(ext, no_dot=True)
  35. return self.txbump_ui_common(
  36. self.spawn('mmgen-txbump', self.eth_opts + add_opts + args + [txfile]),
  37. fee = fee,
  38. fee_desc = 'or gas price',
  39. bad_fee = '0.9G')
  40. def _token_txcreate(self, *, args, cmd='txcreate'):
  41. self.get_file_with_ext('sigtx', delete_all=True)
  42. t = self._create_token_tx(cmd=cmd, fee='1.3G', args=args, add_opts=self.eth_opts)
  43. t.expect('to confirm: ', 'YES\n')
  44. t.written_to_file('Sent transaction')
  45. return t
  46. async def _wait_for_block(self, require_seen=True):
  47. self.spawn(msg_only=True)
  48. if self.devnet_block_period:
  49. empty_pools_seen = 0
  50. tx_seen = False
  51. while True:
  52. await asyncio.sleep(1)
  53. t = self.spawn(
  54. 'mmgen-cli',
  55. ['--regtest=1', 'txpool_content'],
  56. env = cleanup_env(self.cfg),
  57. no_msg = True,
  58. silent = True)
  59. res = json.loads(t.read().strip())
  60. if p := res['pending']:
  61. imsg(f'Pool has {len(p)} transaction{suf(p)}')
  62. if self.tr.quiet:
  63. omsg_r('+')
  64. tx_seen = True
  65. else:
  66. imsg('Pool is empty')
  67. if self.tr.quiet:
  68. omsg_r('+')
  69. if tx_seen or not require_seen:
  70. break
  71. empty_pools_seen += 1
  72. if empty_pools_seen > 5:
  73. m = ('\nTransaction pool empty! Try increasing the block period with the'
  74. ' --devnet-block-period option (current value is {})')
  75. ymsg(m.format(self.devnet_block_period))
  76. sys.exit(1)
  77. return 'ok'
  78. class CmdTestEthBump(CmdTestEthdev, CmdTestEthdevMethods, CmdTestEthBumpMethods):
  79. 'Ethereum transaction bumping operations'
  80. networks = ('eth',)
  81. tmpdir_nums = [42]
  82. dfl_devnet_block_period = 7
  83. cmd_group_in = (
  84. ('setup', 'dev mode transaction bumping tests for Ethereum (start daemon)'),
  85. ('subgroup.init', []),
  86. ('subgroup.feebump', ['init']),
  87. ('subgroup.new_outputs', ['init']),
  88. ('subgroup.token_init', ['init']),
  89. ('subgroup.token_feebump', ['token_init']),
  90. ('subgroup.token_new_outputs', ['token_init']),
  91. ('stop', 'stopping daemon'),
  92. )
  93. cmd_subgroups = CmdTestEthdev.cmd_subgroups | {
  94. 'init': (
  95. 'initializing wallets',
  96. ('addrgen', 'generating addresses'),
  97. ('addrimport', 'importing addresses'),
  98. ('addrimport_dev_addr', 'importing dev faucet address ‘Ox00a329c..’'),
  99. ('fund_dev_address', 'funding the default (Parity dev) address'),
  100. ('fund_mmgen_address', 'creating a transaction (spend from dev address to address :1)'),
  101. ('wait2', 'waiting for block'),
  102. ),
  103. 'feebump': (
  104. 'creating, signing, sending, bumping and resending a transaction (fee-bump only)',
  105. ('txcreate1', 'creating a transaction (send to burn address)'),
  106. ('txsign1', 'signing the transaction'),
  107. ('txsend1', 'sending the transaction'),
  108. ('txbump1', 'creating a replacement transaction (fee-bump)'),
  109. ('txbump1sign', 'signing the replacement transaction'),
  110. ('txbump1send', 'sending the replacement transaction'),
  111. ('wait3', 'waiting for block'),
  112. ('bal1', 'checking the balance'),
  113. ),
  114. 'new_outputs': (
  115. 'creating, signing, sending, bumping and resending a transaction (new outputs)',
  116. ('txcreate2', 'creating a transaction (send to burn address)'),
  117. ('txsign2', 'signing the transaction'),
  118. ('txsend2', 'sending the transaction'),
  119. ('txbump2', 'creating a replacement transaction (new outputs)'),
  120. ('txbump2sign', 'signing the replacement transaction'),
  121. ('txbump2send', 'sending the replacement transaction'),
  122. ('wait4', 'waiting for block'),
  123. ('bal2', 'checking the balance'),
  124. ),
  125. 'token_init': (
  126. 'initializing token wallets',
  127. ('token_compile1', 'compiling ERC20 token #1'),
  128. ('token_deploy_a', 'deploying ERC20 token MM1 (SafeMath)'),
  129. ('token_deploy_b', 'deploying ERC20 token MM1 (Owned)'),
  130. ('token_deploy_c', 'deploying ERC20 token MM1 (Token)'),
  131. ('wait_reth1', 'waiting for block'),
  132. ('token_fund_user', 'transferring token funds from dev to user'),
  133. ('wait6', 'waiting for block'),
  134. ('token_addrgen', 'generating token addresses'),
  135. ('token_addrimport', 'importing token addresses using token address (MM1)'),
  136. ('token_bal1', 'the token balance'),
  137. ),
  138. 'token_feebump': (
  139. 'creating, signing, sending, bumping and resending a token transaction (fee-bump only)',
  140. ('token_txdo1', 'creating, signing and sending a token transaction'),
  141. ('token_txbump1', 'bumping the token transaction (fee-bump)'),
  142. ('wait7', 'waiting for block'),
  143. ('token_bal2', 'the token balance'),
  144. ),
  145. 'token_new_outputs': (
  146. 'creating, signing, sending, bumping and resending a token transaction (new outputs)',
  147. ('token_txdo2', 'creating, signing and sending a token transaction'),
  148. ('token_txbump2', 'creating a replacement token transaction (new outputs)'),
  149. ('token_txbump2sign', 'signing the replacement transaction'),
  150. ('token_txbump2send', 'sending the replacement transaction'),
  151. ('wait8', 'waiting for block'),
  152. ('token_bal3', 'the token balance'),
  153. )
  154. }
  155. def __init__(self, cfg, trunner, cfgs, spawn):
  156. self.devnet_block_period = cfg.devnet_block_period or self.dfl_devnet_block_period
  157. CmdTestEthdev.__init__(self, cfg, trunner, cfgs, spawn)
  158. def fund_mmgen_address(self):
  159. return self._fund_mmgen_address(arg=f'{dfl_sid}:E:1,98765.4321')
  160. def txcreate1(self):
  161. return self._txcreate(args=[f'{burn_addr},987'], acct='1')
  162. def txbump1(self):
  163. return self._txbump_feebump(fee='1.3G', ext='{}.regtest.sigtx')
  164. def txcreate2(self):
  165. return self._txcreate(args=[f'{burn_addr},789'], acct='1')
  166. def txbump2(self):
  167. return self._txbump_new_outputs(args=[f'{dfl_sid}:E:2,777'], fee='1.3G')
  168. def bal1(self):
  169. return self._bal_check(pat=rf'{dfl_sid}:E:1\s+97778\.4320727\s')
  170. def bal2(self):
  171. return self._bal_check(pat=rf'{dfl_sid}:E:2\s+777\s')
  172. async def token_deploy_a(self):
  173. return await self._token_deploy_math(num=1, get_receipt=False)
  174. async def token_deploy_b(self):
  175. return await self._token_deploy_owned(num=1, get_receipt=False)
  176. async def token_deploy_c(self):
  177. return await self._token_deploy_token(num=1, get_receipt=False)
  178. def token_fund_user(self):
  179. return self._token_transfer_ops(op='fund_user', mm_idxs=[1], get_receipt=False)
  180. def token_addrgen(self):
  181. return self._token_addrgen(mm_idxs=[1], naddrs=5)
  182. def token_addrimport(self):
  183. return self._token_addrimport('token_addr1', '1-5', expect='5/5')
  184. def token_bal1(self):
  185. return self._token_bal_check(pat=rf'{dfl_sid}:E:1\s+1000\s')
  186. def token_txdo1(self):
  187. return self._token_txcreate(cmd='txdo', args=[f'{dfl_sid}:E:2,1.23456', dfl_words_file])
  188. def token_txbump1(self):
  189. t = self._txbump_feebump(
  190. fee = '60G',
  191. ext = '{}.regtest.sigtx',
  192. add_opts = ['--token=MM1'],
  193. add_args = [dfl_words_file])
  194. t.expect('to confirm: ', 'YES\n')
  195. t.written_to_file('Signed transaction')
  196. return t
  197. def token_bal2(self):
  198. return self._token_bal_check(pat=rf'{dfl_sid}:E:1\s+998.76544\s.*\s{dfl_sid}:E:2\s+1\.23456')
  199. def token_txdo2(self):
  200. return self._token_txcreate(cmd='txdo', args=[f'{dfl_sid}:E:3,5.4321', dfl_words_file])
  201. def token_txbump2(self):
  202. return self._txbump_new_outputs(
  203. args = [f'{dfl_sid}:E:4,6.54321'],
  204. fee = '1.6G',
  205. add_opts = ['--token=mm1'])
  206. def token_txbump2sign(self):
  207. return self._txsign(has_label=False)
  208. def token_txbump2send(self):
  209. return self._txsend(has_label=False)
  210. def token_bal3(self):
  211. return self._token_bal_check(pat=rf'{dfl_sid}:E:4\s+6\.54321')
  212. def wait_reth1(self):
  213. return self._wait_for_block() if self.daemon.id == 'reth' else 'silent'
  214. wait1 = wait2 = wait3 = wait4 = wait5 = wait6 = wait7 = wait8 = CmdTestEthBumpMethods._wait_for_block
  215. txsign1 = txsign2 = txbump1sign = txbump2sign = CmdTestEthBumpMethods._txsign
  216. txsend1 = txsend2 = txbump1send = txbump2send = CmdTestEthBumpMethods._txsend