ts_misc.py 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2019 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. ts_misc.py: Miscellaneous test groups for the test.py test suite
  20. """
  21. from mmgen.globalvars import g
  22. from test.common import *
  23. from test.test_py_d.common import *
  24. from test.test_py_d.ts_base import *
  25. from test.test_py_d.ts_main import TestSuiteMain
  26. class TestSuiteHelp(TestSuiteBase):
  27. 'help and usage screens'
  28. tmpdir_nums = []
  29. passthru_opts = ('coin','testnet')
  30. cmd_group = (
  31. ('helpscreens', (1,'help screens', [])),
  32. ('longhelpscreens', (1,'help screens (--longhelp)',[])),
  33. ('tool_help', (1,"'mmgen-tool' usage screen",[])),
  34. ('test_help', (1,"'test.py' help screens",[])),
  35. )
  36. def helpscreens(self,arg='--help'):
  37. scripts = (
  38. 'walletgen','walletconv','walletchk','txcreate','txsign','txsend','txdo','txbump',
  39. 'addrgen','addrimport','keygen','passchg','tool','passgen','regtest','autosign')
  40. for s in scripts:
  41. t = self._run_cmd('mmgen-'+s,[arg],extra_desc='(mmgen-{})'.format(s),no_output=True)
  42. return t
  43. def longhelpscreens(self):
  44. return self.helpscreens(arg='--longhelp')
  45. def _run_cmd( self, cmd_name,
  46. cmd_args = [],
  47. no_msg = False,
  48. extra_desc = '',
  49. cmd_dir = 'cmds',
  50. no_output = False):
  51. t = self.spawn( cmd_name,
  52. args = cmd_args,
  53. no_msg = no_msg,
  54. extra_desc = extra_desc,
  55. cmd_dir = cmd_dir,
  56. no_output = no_output)
  57. t.read()
  58. ret = t.p.wait()
  59. if ret == 0:
  60. msg('OK')
  61. else:
  62. rdie(1,"\n'{}' returned {}".format(self.test_name,ret))
  63. t.skip_ok = True
  64. return t
  65. def tool_help(self):
  66. self._run_cmd('mmgen-tool',['help'],extra_desc="('mmgen-tool help')")
  67. return self._run_cmd('mmgen-tool',['usage'],extra_desc="('mmgen-tool usage')")
  68. def test_help(self):
  69. self._run_cmd('test.py',['-h'],cmd_dir='test')
  70. self._run_cmd('test.py',['-L'],cmd_dir='test',extra_desc='(cmd group list)')
  71. return self._run_cmd('test.py',['-l'],cmd_dir='test',extra_desc='(cmd list)')
  72. class TestSuiteOutput(TestSuiteBase):
  73. 'screen output tests'
  74. networks = ('btc',)
  75. tmpdir_nums = []
  76. cmd_group = (
  77. ('output_gr', (1,"Greek text", [])),
  78. ('output_ru', (1,"Russian text", [])),
  79. ('output_zh', (1,"Chinese text", [])),
  80. ('output_jp', (1,"Japanese text", []))
  81. )
  82. def screen_output(self,lang):
  83. t = self.spawn('test/misc/utf8_output.py',[lang],cmd_dir='.')
  84. t.read()
  85. return t
  86. def output_gr(self): return self.screen_output('gr')
  87. def output_ru(self): return self.screen_output('ru')
  88. def output_zh(self): return self.screen_output('zh')
  89. def output_jp(self): return self.screen_output('jp')
  90. class TestSuiteInput(TestSuiteBase):
  91. 'user input tests'
  92. networks = ('btc',)
  93. tmpdir_nums = []
  94. cmd_group = (
  95. ('password_entry_noecho', (1,"utf8 password entry", [])),
  96. ('password_entry_echo', (1,"utf8 password entry (echoed)", [])),
  97. ('mnemonic_entry', (1,"stealth mnemonic entry", [])),
  98. )
  99. def password_entry(self,prompt,cmd_args):
  100. t = self.spawn('test/misc/password_entry.py',cmd_args,cmd_dir='.')
  101. pw = 'abc-α'
  102. t.expect(prompt,pw)
  103. ret = t.expect_getend('Entered: ')
  104. assert ret == pw,'Password mismatch! {} != {}'.format(ret,pw)
  105. return t
  106. def password_entry_noecho(self):
  107. if self.skip_for_win():
  108. msg('Perform this test by hand on MSWin with non-ASCII password abc-α:')
  109. msg(' test/misc/password_entry.py')
  110. return 'skip' # getpass() can't handle utf8, and pexpect double-escapes utf8, so skip
  111. return self.password_entry('Enter passphrase: ',[])
  112. def password_entry_echo(self):
  113. if self.skip_for_win():
  114. msg('Perform this test by hand on MSWin with non-ASCII password abc-α:')
  115. msg(' test/misc/password_entry.py --echo-passphrase')
  116. return 'skip' # pexpect double-escapes utf8, so skip
  117. return self.password_entry('Enter passphrase (echoed): ',['--echo-passphrase'])
  118. def mnemonic_entry(self):
  119. mn = read_from_file(dfl_words_file).strip().split()[:12]
  120. mn = ['foo'] + mn[:5] + ['realiz','realized'] + mn[5:]
  121. t = self.spawn('mmgen-walletconv',['-S','-i','words','-o','words'])
  122. t.expect('words: ','1')
  123. t.expect('(Y/n): ','y')
  124. stealth_mnemonic_entry(t,mn)
  125. sid_chk = '5F9BC42F'
  126. sid = t.expect_getend('Valid mnemonic data for Seed ID ')[:8]
  127. assert sid == sid_chk,'Seed ID mismatch! {} != {}'.format(sid,sid_chk)
  128. t.expect('to confirm: ','YES\n')
  129. t.read()
  130. return t
  131. class TestSuiteTool(TestSuiteMain,TestSuiteBase):
  132. "tests for interactive 'mmgen-tool' commands"
  133. networks = ('btc',)
  134. segwit_opts_ok = False
  135. tmpdir_nums = [9]
  136. enc_infn = 'tool_encrypt.in'
  137. cmd_group = (
  138. ('tool_find_incog_data', (9,"'mmgen-tool find_incog_data'", [[[hincog_fn],1],[[incog_id_fn],1]])),
  139. ('tool_rand2file', (9,"'mmgen-tool rand2file'", [])),
  140. ('tool_encrypt', (9,"'mmgen-tool encrypt' (random data)", [])),
  141. ('tool_decrypt', (9,"'mmgen-tool decrypt' (random data)", [[[enc_infn+'.mmenc'],9]])),
  142. # ('tool_encrypt_ref', (9,"'mmgen-tool encrypt' (reference text)", [])),
  143. )
  144. def tool_rand2file(self):
  145. outfile = os.path.join(self.tmpdir,'rand2file.out')
  146. from mmgen.tool import MMGenToolCmd
  147. tu = MMGenToolCmd()
  148. for nbytes in ('1','1023','1K','1048575','1M','1048577','123M'):
  149. t = self.spawn( 'mmgen-tool',
  150. ['-d',self.tmpdir,'-r0','rand2file','rand2file.out',nbytes],
  151. extra_desc='({} byte{})'.format(nbytes,suf(tu.bytespec(nbytes)))
  152. )
  153. t.expect('random data written to file')
  154. t.read()
  155. t.p.wait()
  156. t.ok()
  157. t.skip_ok = True
  158. return t
  159. def tool_encrypt(self):
  160. infile = joinpath(self.tmpdir,self.enc_infn)
  161. write_to_file(infile,os.urandom(1033),binary=True)
  162. t = self.spawn('mmgen-tool',['-d',self.tmpdir,self.usr_rand_arg,'encrypt',infile])
  163. t.usr_rand(self.usr_rand_chars)
  164. t.hash_preset('user data','1')
  165. t.passphrase_new('user data',tool_enc_passwd)
  166. t.written_to_file('Encrypted data')
  167. return t
  168. def tool_decrypt(self,f1):
  169. out_fn = 'tool_encrypt.out'
  170. t = self.spawn('mmgen-tool',['-d',self.tmpdir,'decrypt',f1,'outfile='+out_fn,'hash_preset=1'])
  171. t.passphrase('user data',tool_enc_passwd)
  172. t.written_to_file('Decrypted data')
  173. d1 = self.read_from_tmpfile(self.enc_infn,binary=True)
  174. d2 = self.read_from_tmpfile(out_fn,binary=True)
  175. cmp_or_die(d1,d2)
  176. return t
  177. def tool_find_incog_data(self,f1,f2):
  178. i_id = read_from_file(f2).rstrip()
  179. vmsg('Incog ID: {}'.format(cyan(i_id)))
  180. t = self.spawn('mmgen-tool',['-d',self.tmpdir,'find_incog_data',f1,i_id])
  181. o = t.expect_getend('Incog data for ID {} found at offset '.format(i_id))
  182. if not g.platform == 'win':
  183. os.unlink(f1) # causes problems with MSYS2
  184. cmp_or_die(hincog_offset,int(o))
  185. return t
  186. class TestSuiteRefTX(TestSuiteMain,TestSuiteBase):
  187. 'create a reference transaction file (administrative command)'
  188. segwit_opts_ok = False
  189. passthru_opts = ('coin','testnet')
  190. tmpdir_nums = [31,32,33,34]
  191. cmd_group = (
  192. ('ref_tx_addrgen1', (31,'address generation (legacy)', [[[],1]])),
  193. ('ref_tx_addrgen2', (32,'address generation (compressed)', [[[],1]])),
  194. ('ref_tx_addrgen3', (33,'address generation (segwit)', [[[],1]])),
  195. ('ref_tx_addrgen4', (34,'address generation (bech32)', [[[],1]])),
  196. ('ref_tx_txcreate', (31,'transaction creation',
  197. ([['addrs'],31],[['addrs'],32],[['addrs'],33],[['addrs'],34]))),
  198. )
  199. def __init__(self,trunner,cfgs,spawn):
  200. if cfgs:
  201. for n in self.tmpdir_nums:
  202. cfgs[str(n)].update({ 'addr_idx_list': '1-2',
  203. 'segwit': n in (33,34),
  204. 'dep_generators': { 'addrs':'ref_tx_addrgen'+str(n)[-1] }})
  205. return TestSuiteMain.__init__(self,trunner,cfgs,spawn)
  206. def ref_tx_addrgen(self,atype):
  207. if atype not in g.proto.mmtypes: return
  208. t = self.spawn('mmgen-addrgen',['--outdir='+self.tmpdir,'--type='+atype,dfl_words_file,'1-2'])
  209. t.read()
  210. return t
  211. def ref_tx_addrgen1(self): return self.ref_tx_addrgen(atype='L')
  212. def ref_tx_addrgen2(self): return self.ref_tx_addrgen(atype='C')
  213. def ref_tx_addrgen3(self): return self.ref_tx_addrgen(atype='S')
  214. def ref_tx_addrgen4(self): return self.ref_tx_addrgen(atype='B')
  215. def ref_tx_txcreate(self,f1,f2,f3,f4):
  216. sources = ['31','32']
  217. if 'S' in g.proto.mmtypes: sources += ['33']
  218. if 'B' in g.proto.mmtypes: sources += ['34']
  219. return self.txcreate_common(
  220. addrs_per_wallet = 2,
  221. sources = sources,
  222. add_args = ['--locktime=1320969600'],
  223. do_label = True )