ts_shared.py 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2022 The MMGen Project <mmgen@tuta.io>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. """
  19. test.test_py_d.ts_shared: Shared methods for the test.py test suite
  20. """
  21. import os
  22. from mmgen.globalvars import g
  23. from mmgen.opts import opt
  24. from mmgen.util import ymsg
  25. from mmgen.wallet import get_wallet_cls
  26. from ..include.common import *
  27. from .common import *
  28. class TestSuiteShared(object):
  29. 'shared methods for the test.py test suite'
  30. def txcreate_ui_common(self,t,
  31. caller = None,
  32. menu = [],
  33. inputs = '1',
  34. file_desc = 'Unsigned transaction',
  35. input_sels_prompt = 'to spend',
  36. bad_input_sels = False,
  37. interactive_fee = '',
  38. fee_desc = 'transaction fee',
  39. fee_res = None,
  40. eth_fee_res = None,
  41. add_comment = '',
  42. view = 't',
  43. save = True,
  44. tweaks = [],
  45. used_chg_addr_resp = None,
  46. auto_chg_al_id = None ):
  47. txdo = (caller or self.test_name)[:4] == 'txdo'
  48. expect_pat = r'\[q\]uit view, .*?:.'
  49. delete_pat = r'Enter account number .*:.'
  50. confirm_pat = r'Is this what you want.*:.'
  51. if used_chg_addr_resp is not None:
  52. t.expect('reuse harms your privacy.*:.*',used_chg_addr_resp,regex=True)
  53. if auto_chg_al_id is not None:
  54. t.expect(fr'Using .*{auto_chg_al_id}:\d+\D.* as.*address','y',regex=True)
  55. pat = expect_pat
  56. for choice in menu + ['q']:
  57. t.expect(pat,choice,regex=True)
  58. if self.proto.base_proto == 'Ethereum':
  59. pat = confirm_pat if pat == delete_pat else delete_pat if choice == 'D' else expect_pat
  60. if bad_input_sels:
  61. for r in ('x','3-1','9999'):
  62. t.expect(input_sels_prompt+': ',r+'\n')
  63. t.expect(input_sels_prompt+': ',inputs+'\n')
  64. have_est_fee = t.expect([fee_desc+': ','OK? (Y/n): ']) == 1
  65. if have_est_fee and not interactive_fee:
  66. t.send('y')
  67. else:
  68. if have_est_fee:
  69. t.send('n')
  70. if self.proto.coin == 'BCH' or self.proto.base_coin == 'ETH': # TODO: pexpect race condition?
  71. time.sleep(0.1)
  72. if eth_fee_res:
  73. t.expect('or gas price: ',interactive_fee+'\n')
  74. else:
  75. t.send(interactive_fee+'\n')
  76. if fee_res:
  77. t.expect(fee_res,regex=True)
  78. t.expect('OK? (Y/n): ','y')
  79. t.expect('(Y/n): ','\n') # chg amt OK?
  80. if 'confirm_non_mmgen' in tweaks:
  81. t.expect('Continue? (Y/n)','\n')
  82. t.do_comment(add_comment)
  83. t.view_tx(view)
  84. if not txdo:
  85. t.expect('(y/N): ',('n','y')[save])
  86. t.written_to_file(file_desc)
  87. return t
  88. def txsign_ui_common(self,t,
  89. caller = None,
  90. view = 't',
  91. add_comment = '',
  92. file_desc = 'Signed transaction',
  93. ni = False,
  94. save = True,
  95. do_passwd = False,
  96. has_label = False ):
  97. txdo = (caller or self.test_name)[:4] == 'txdo'
  98. if do_passwd:
  99. t.passphrase('MMGen wallet',self.wpasswd)
  100. if not ni and not txdo:
  101. t.view_tx(view)
  102. t.do_comment(add_comment,has_label=has_label)
  103. t.expect('(Y/n): ',('n','y')[save])
  104. t.written_to_file(file_desc)
  105. return t
  106. def txsend_ui_common(self,t,
  107. caller = None,
  108. view = 'n',
  109. add_comment = '',
  110. file_desc = 'Sent transaction',
  111. confirm_send = True,
  112. bogus_send = True,
  113. quiet = False,
  114. has_label = False ):
  115. txdo = (caller or self.test_name)[:4] == 'txdo'
  116. if not txdo:
  117. t.license() # MMGEN_NO_LICENSE is set, so does nothing
  118. t.view_tx(view)
  119. t.do_comment(add_comment,has_label=has_label)
  120. self._do_confirm_send(t,quiet=quiet,confirm_send=confirm_send)
  121. if bogus_send:
  122. txid = ''
  123. t.expect('BOGUS transaction NOT sent')
  124. else:
  125. txid = strip_ansi_escapes(t.expect_getend('Transaction sent: '))
  126. assert len(txid) == 64, f'{txid!r}: Incorrect txid length!'
  127. t.written_to_file(file_desc)
  128. return txid
  129. def txsign_end(self,t,tnum=None,has_label=False):
  130. t.expect('Signing transaction')
  131. t.do_comment(False,has_label=has_label)
  132. t.expect(r'Save signed transaction.*?\? \(Y/n\): ','y',regex=True)
  133. t.written_to_file('Signed transaction' + (' #' + tnum if tnum else ''), oo=True)
  134. return t
  135. def txsign(self,wf,txfile,
  136. pf = '',
  137. bumpf = '',
  138. save = True,
  139. has_label = False,
  140. extra_opts = [],
  141. extra_desc = '',
  142. view = 'n',
  143. dfl_wallet = False ):
  144. opts = extra_opts + ['-d',self.tmpdir,txfile] + ([wf] if wf else [])
  145. t = self.spawn('mmgen-txsign', opts, extra_desc)
  146. t.license()
  147. t.view_tx(view)
  148. wcls = get_wallet_cls( ext = 'mmdat' if dfl_wallet else get_extension(wf) )
  149. if wcls.enc and wcls.type != 'brain':
  150. t.passphrase(wcls.desc,self.wpasswd)
  151. if save:
  152. self.txsign_end(t,has_label=has_label)
  153. else:
  154. t.do_comment(False,has_label=has_label)
  155. t.expect('Save signed transaction? (Y/n): ','n')
  156. t.expect('not saved')
  157. t.req_exit_val = 1
  158. return t
  159. def ref_brain_chk(self,bw_file=ref_bw_file):
  160. wf = joinpath(ref_dir,bw_file)
  161. add_args = [f'-l{self.seed_len}', f'-p{ref_bw_hash_preset}']
  162. return self.walletchk(wf,pf=None,add_args=add_args,sid=self.ref_bw_seed_id)
  163. def walletchk(self,wf,pf,wcls=None,add_args=[],sid=None,extra_desc='',dfl_wallet=False):
  164. hp = self.hash_preset if hasattr(self,'hash_preset') else '1'
  165. wcls = wcls or get_wallet_cls(ext=get_extension(wf))
  166. t = self.spawn('mmgen-walletchk',
  167. ([] if dfl_wallet else ['-i',wcls.fmt_codes[0]])
  168. + add_args + ['-p',hp]
  169. + ([wf] if wf else []),
  170. extra_desc=extra_desc)
  171. if wcls.type != 'incog_hidden':
  172. t.expect(f"Getting {wcls.desc} from file '")
  173. if wcls.enc and wcls.type != 'brain':
  174. t.passphrase(wcls.desc,self.wpasswd)
  175. t.expect(['Passphrase is OK', 'Passphrase.* are correct'],regex=True)
  176. chk = t.expect_getend(f'Valid {wcls.desc} for Seed ID ')[:8]
  177. if sid:
  178. cmp_or_die(chk,sid)
  179. return t
  180. def addrgen(self,wf,
  181. pf = None,
  182. check_ref = False,
  183. ftype = 'addr',
  184. id_str = None,
  185. extra_args = [],
  186. mmtype = None,
  187. stdout = False,
  188. dfl_wallet = False ):
  189. passgen = ftype[:4] == 'pass'
  190. if not mmtype and not passgen:
  191. mmtype = self.segwit_mmtype
  192. cmd_pfx = (ftype,'pass')[passgen]
  193. t = self.spawn(f'mmgen-{cmd_pfx}gen',
  194. ['-d',self.tmpdir] + extra_args +
  195. ([],['--type='+str(mmtype)])[bool(mmtype)] +
  196. ([],['--stdout'])[stdout] +
  197. ([],[wf])[bool(wf)] +
  198. ([],[id_str])[bool(id_str)] +
  199. [getattr(self,f'{cmd_pfx}_idx_list')],
  200. extra_desc=f'({mmtype})' if mmtype in ('segwit','bech32') else '')
  201. t.license()
  202. wcls = get_wallet_cls( ext = 'mmdat' if dfl_wallet else get_extension(wf) )
  203. t.passphrase(wcls.desc,self.wpasswd)
  204. t.expect('Passphrase is OK')
  205. desc = ('address','password')[passgen]
  206. chk = t.expect_getend(rf'Checksum for {desc} data .*?: ',regex=True)
  207. if passgen:
  208. t.expect('Encrypt password list? (y/N): ','N')
  209. t.read() if stdout else t.written_to_file(('Addresses','Password list')[passgen])
  210. if check_ref:
  211. chk_ref = (self.chk_data[self.test_name] if passgen else
  212. self.chk_data[self.test_name][self.fork][self.proto.testnet])
  213. cmp_or_die(chk,chk_ref,desc=f'{ftype}list data checksum')
  214. return t
  215. def keyaddrgen(self,wf,pf=None,check_ref=False,mmtype=None):
  216. if not mmtype:
  217. mmtype = self.segwit_mmtype
  218. args = ['-d',self.tmpdir,self.usr_rand_arg,wf,self.addr_idx_list]
  219. t = self.spawn('mmgen-keygen',
  220. ([],['--type='+str(mmtype)])[bool(mmtype)] + args,
  221. extra_desc=f'({mmtype})' if mmtype in ('segwit','bech32') else '')
  222. t.license()
  223. wcls = get_wallet_cls(ext=get_extension(wf))
  224. t.passphrase(wcls.desc,self.wpasswd)
  225. chk = t.expect_getend(r'Checksum for key-address data .*?: ',regex=True)
  226. if check_ref:
  227. chk_ref = self.chk_data[self.test_name][self.fork][self.proto.testnet]
  228. cmp_or_die(chk,chk_ref,desc='key-address list data checksum')
  229. t.expect('Encrypt key list? (y/N): ','y')
  230. t.usr_rand(self.usr_rand_chars)
  231. t.hash_preset('new key-address list','1')
  232. t.passphrase_new('new key-address list',self.kapasswd)
  233. t.written_to_file('Encrypted secret keys',oo=True)
  234. return t
  235. def _do_confirm_send(self,t,quiet=False,confirm_send=True,sure=True):
  236. if sure:
  237. t.expect('Are you sure you want to broadcast this')
  238. m = ('YES, I REALLY WANT TO DO THIS','YES')[quiet]
  239. t.expect(f'{m!r} to confirm: ',('',m)[confirm_send]+'\n')