tooltest2.py 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2020 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/tooltest2.py: Simple tests for the 'mmgen-tool' utility
  20. """
  21. # TODO: move all non-interactive 'mmgen-tool' tests in 'test.py' here
  22. # TODO: move all(?) tests in 'tooltest.py' here (or duplicate them?)
  23. import sys,os,time
  24. from subprocess import run,PIPE
  25. from decimal import Decimal
  26. from include.tests_header import repo_root
  27. from mmgen.common import *
  28. from test.include.common import *
  29. from mmgen.obj import is_wif,is_coin_addr
  30. from mmgen.seed import is_bip39_mnemonic,is_mmgen_mnemonic
  31. from mmgen.addr import is_xmrseed
  32. from mmgen.baseconv import *
  33. NL = ('\n','\r\n')[g.platform=='win']
  34. def is_str(s): return type(s) == str
  35. def md5_hash(s):
  36. from hashlib import md5
  37. return md5(s.encode()).hexdigest()
  38. def md5_hash_strip(s):
  39. import re
  40. s = re.sub('\x1b\[[;0-9]+?m','',s) # strip ANSI color sequences
  41. s = s.replace(NL,'\n') # fix DOS newlines
  42. return md5_hash(s.strip())
  43. opts_data = {
  44. 'text': {
  45. 'desc': "Simple test suite for the 'mmgen-tool' utility",
  46. 'usage':'[options] [command]...',
  47. 'options': """
  48. -h, --help Print this help message
  49. -A, --tool-api Test the tool_api subsystem
  50. -C, --coverage Produce code coverage info using trace module
  51. -d, --die-on-missing Abort if no test data found for given command
  52. --, --longhelp Print help message for long options (common options)
  53. -l, --list-tests List the test groups in this test suite
  54. -L, --list-tested-cmds Output the 'mmgen-tool' commands that are tested by this test suite
  55. -n, --names Print command names instead of descriptions
  56. -q, --quiet Produce quieter output
  57. -s, --system Test scripts and modules installed on system rather than
  58. those in the repo root
  59. -t, --type= Specify coin type
  60. -f, --fork Run commands via tool executable instead of importing tool module
  61. -t, --traceback Run tool inside traceback script
  62. -v, --verbose Produce more verbose output
  63. """,
  64. 'notes': """
  65. If no command is given, the whole suite of tests is run.
  66. """
  67. }
  68. }
  69. sample_text_hexdump = (
  70. '000000: 5468 6520 5469 6d65 7320 3033 2f4a 616e{n}' +
  71. '000010: 2f32 3030 3920 4368 616e 6365 6c6c 6f72{n}' +
  72. '000020: 206f 6e20 6272 696e 6b20 6f66 2073 6563{n}' +
  73. '000030: 6f6e 6420 6261 696c 6f75 7420 666f 7220{n}' +
  74. '000040: 6261 6e6b 73').format(n=NL)
  75. kafile_opts = ['-p1','-Ptest/ref/keyaddrfile_password']
  76. kafile_code = (
  77. "\nopt.hash_preset = '1'" +
  78. "\nopt.set_by_user = ['hash_preset']" +
  79. "\nopt.use_old_ed25519 = None" +
  80. "\nopt.passwd_file = 'test/ref/keyaddrfile_password'" )
  81. from test.unit_tests_d.ut_bip39 import unit_test as bip39
  82. tests = {
  83. 'Mnemonic': {
  84. 'hex2mn': [
  85. ( ['deadbeefdeadbeefdeadbeefdeadbeef','fmt=mmgen'],
  86. 'table cast forgive master funny gaze sadness ripple million paint moral match' ),
  87. ( ['deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef'],
  88. ('swirl maybe anymore mix scale stray fog use approach page crime rhyme ' +
  89. 'class former strange window snap soon') ),
  90. ( ['deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef'],
  91. ('swell type milk figure cheese phone fill black test bloom heard comfort ' +
  92. 'image terrible radio lesson own reply battle goal goodbye need laugh stream') ),
  93. ( ['ffffffffffffffffffffffffffffffff'],
  94. 'yellow yeah show bowl season spider cling defeat poison law shelter reflect' ),
  95. ( ['ffffffffffffffffffffffffffffffffffffffffffffffff'],
  96. ('yeah youth quit fail perhaps drum out person young click skin ' +
  97. 'weird inside silently perfectly together anyone memory') ),
  98. ( ['ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'],
  99. ('wrote affection object cell opinion here laughter stare honest north cost begin ' +
  100. 'murder something yourself effort acid dot doubt game broke tell guilt innocent') ),
  101. ( ['0000000000000000000000000000000000000000000000000000000000000001'],
  102. ('able able able able able able able able able able able able ' +
  103. 'able able able able able able able able able able able about') ),
  104. ( ['e8164dda6d42bd1e261a3406b2038dcbddadbeefdeadbeefdeadbeefdeadbe0f','fmt=xmrseed'],
  105. ('viewpoint donuts ardent template unveil agile meant unafraid urgent athlete rustled mime azure ' +
  106. 'jaded hawk baby jagged haystack baby jagged haystack ramped oncoming point template') ),
  107. ] + [([a,'fmt=bip39'],b) for a,b in bip39.vectors],
  108. 'mn2hex': [
  109. ( ['table cast forgive master funny gaze sadness ripple million paint moral match','fmt=mmgen'],
  110. 'deadbeefdeadbeefdeadbeefdeadbeef' ),
  111. ( ['swirl maybe anymore mix scale stray fog use approach page crime rhyme ' +
  112. 'class former strange window snap soon'],
  113. 'deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef'),
  114. ( ['swell type milk figure cheese phone fill black test bloom heard comfort ' +
  115. 'image terrible radio lesson own reply battle goal goodbye need laugh stream'],
  116. 'deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef' ),
  117. ( ['yellow yeah show bowl season spider cling defeat poison law shelter reflect'],
  118. 'ffffffffffffffffffffffffffffffff' ),
  119. ( ['yeah youth quit fail perhaps drum out person young click skin ' +
  120. 'weird inside silently perfectly together anyone memory'],
  121. 'ffffffffffffffffffffffffffffffffffffffffffffffff' ) ,
  122. ( ['wrote affection object cell opinion here laughter stare honest north cost begin ' +
  123. 'murder something yourself effort acid dot doubt game broke tell guilt innocent'],
  124. 'ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'),
  125. ( ['able able able able able able able able able able able able ' +
  126. 'able able able able able able able able able able able about'],
  127. '0000000000000000000000000000000000000000000000000000000000000001'),
  128. ( ['viewpoint donuts ardent template unveil agile meant unafraid urgent athlete ' +
  129. 'rustled mime azure jaded hawk baby jagged haystack baby jagged haystack ' +
  130. 'ramped oncoming point template','fmt=xmrseed'],
  131. 'e8164dda6d42bd1e261a3406b2038dcbddadbeefdeadbeefdeadbeefdeadbe0f'),
  132. ] + [([b,'fmt=bip39'],a) for a,b in bip39.vectors],
  133. 'mn_rand128': [
  134. ( [], is_mmgen_mnemonic, ['-r0']),
  135. ( ['fmt=mmgen'], is_mmgen_mnemonic, ['-r0']),
  136. ( ['fmt=bip39'], is_bip39_mnemonic, ['-r0']),
  137. ],
  138. 'mn_rand192': [
  139. ( ['fmt=mmgen'], is_mmgen_mnemonic, ['-r0']),
  140. ( ['fmt=bip39'], is_bip39_mnemonic, ['-r0']),
  141. ],
  142. 'mn_rand256': [
  143. ( ['fmt=mmgen'], is_mmgen_mnemonic, ['-r0']),
  144. ( ['fmt=bip39'], is_bip39_mnemonic, ['-r0']),
  145. ( ['fmt=xmrseed'], is_xmrseed, ['-r0']),
  146. ],
  147. 'mn_stats': [
  148. ( [], is_str ),
  149. ( ['fmt=mmgen'], is_str ),
  150. ( ['fmt=bip39'], is_str ),
  151. ( ['fmt=xmrseed'], is_str ),
  152. ],
  153. 'mn_printlist': [
  154. ( [], is_str ),
  155. ( ['fmt=mmgen'], is_str ),
  156. ( ['fmt=bip39'], is_str ),
  157. ( ['fmt=xmrseed','enum=true'], is_str ),
  158. ],
  159. },
  160. 'Util': {
  161. 'hextob32': [
  162. ( ['deadbeef'], 'DPK3PXP' ),
  163. ( ['deadbeefdeadbeef'], 'N5LN657PK3PXP' ),
  164. ( ['ffffffffffffffff'], 'P777777777777' ),
  165. ( ['0000000000000000'], 'A' ),
  166. ( ['0000000000000000','pad=10'], 'AAAAAAAAAA' ),
  167. ( ['ff','pad=10'], 'AAAAAAAAH7' ),
  168. ],
  169. 'b32tohex': [
  170. ( ['DPK3PXP'], 'deadbeef' ),
  171. ( ['N5LN657PK3PXP'], 'deadbeefdeadbeef' ),
  172. ( ['P777777777777'], 'ffffffffffffffff' ),
  173. ( ['A','pad=16'], '0000000000000000' ),
  174. ( ['AAAAAAAAAA','pad=16'], '0000000000000000' ),
  175. ( ['AAAAAAAAH7','pad=2'], 'ff' ),
  176. ],
  177. 'hextob6d': [
  178. ( ['deadbeef'], '25255 24636 426' ),
  179. ( ['deadbeefdeadbeef'], '43263 51255 35545 36422 42642' ),
  180. ( ['ffffffffffffffff'], '46316 33121 21321 15553 55534' ),
  181. ( ['0000000000000000'], '1' ),
  182. ( ['0000000000000000','pad=10'], '11111 11111' ),
  183. ( ['ff','pad=10'], '11111 12214' ),
  184. ( ['ff'*16],
  185. '34164 46464 12666 61652 46515 46546 53354 43666 45555 21414' ),
  186. ( ['ff'*24],
  187. '24611 14114 33323 36422 24655 66552 32465 25661 21541 62342 '
  188. '61351 63525 45161 35543 13654' ),
  189. ( ['ff'*32],
  190. '21325 21653 31261 31341 45131 42346 54146 36252 11413 12253 '
  191. '24246 31114 16424 56513 41632 24121 46151 43214 22425 65134' ),
  192. ],
  193. 'b6dtohex': [
  194. ( ['25255 24636 426'], 'deadbeef' ),
  195. ( ['43263 51255 35545 36422 42642'], 'deadbeefdeadbeef' ),
  196. ( ['46316 33121 21321 15553 55534'], 'ffffffffffffffff' ),
  197. ( ['1','pad=16'], '0000000000000000' ),
  198. ( ['11111 11111','pad=16'], '0000000000000000' ),
  199. ( ['11111 12214','pad=2'], 'ff' ),
  200. ( ['22222 22222'], 'b88733' ),
  201. ( ['66666 66666'], '039aa3ff' ),
  202. ( ['6'*50], {
  203. 'len': 34,
  204. 'value':'0260154fc36cbf42778f23ffffffffffff' # 130 bits
  205. } ),
  206. ( ['6'*75], {
  207. 'len': 50,
  208. 'value':'03a92ef1c3432e71a7679561bb6817d7ffffffffffffffffff' # 194 bits
  209. } ),
  210. ( ['6'*100], {
  211. 'len': 66,
  212. 'value':'05a4653ca673768565b41f775d6947d55cf3813d0fffffffffffffffffffffffff' # 259 bits
  213. } ),
  214. ],
  215. 'hextob58chk': [
  216. ( ['deadbeef'], 'eFGDJPketnz' ),
  217. ( ['deadbeefdeadbeef'], '5CizhNNRPYpBjrbYX' ),
  218. ( ['ffffffffffffffff'], '5qCHTcgbQwprzjWrb' ),
  219. ( ['0000000000000000'], '111111114FCKVB' ),
  220. ( ['00'], '1Wh4bh' ),
  221. ( ['000000000000000000000000000000000000000000'], '1111111111111111111114oLvT2' ),
  222. ],
  223. 'b58chktohex': [
  224. ( ['eFGDJPketnz'], 'deadbeef' ),
  225. ( ['5CizhNNRPYpBjrbYX'], 'deadbeefdeadbeef' ),
  226. ( ['5qCHTcgbQwprzjWrb'], 'ffffffffffffffff' ),
  227. ( ['111111114FCKVB'], '0000000000000000' ),
  228. ( ['3QJmnh'], '' ),
  229. ( ['1111111111111111111114oLvT2'], '000000000000000000000000000000000000000000' ),
  230. ],
  231. 'bytestob58': [
  232. ( [b'\xde\xad\xbe\xef'], '6h8cQN' ),
  233. ( [b'\xde\xad\xbe\xef\xde\xad\xbe\xef'], 'eFGDJURJykA' ),
  234. ( [b'\xff\xff\xff\xff\xff\xff\xff\xff'], 'jpXCZedGfVQ' ),
  235. ( [b'\x00\x00\x00\x00\x00\x00\x00\x00'], '1' ),
  236. ( [b'\x00\x00\x00\x00\x00\x00\x00\x00','pad=10'], '1111111111' ),
  237. ( [b'\xff','pad=10'], '111111115Q' ),
  238. ],
  239. 'b58tobytes': [
  240. ( ['6h8cQN'], b'\xde\xad\xbe\xef' ),
  241. ( ['eFGDJURJykA'], b'\xde\xad\xbe\xef\xde\xad\xbe\xef' ),
  242. ( ['jpXCZedGfVQ'], b'\xff\xff\xff\xff\xff\xff\xff\xff' ),
  243. ( ['1','pad=8'], b'\x00\x00\x00\x00\x00\x00\x00\x00' ),
  244. ( ['1111111111','pad=8'], b'\x00\x00\x00\x00\x00\x00\x00\x00' ),
  245. ( ['111111115Q','pad=1'], b'\xff' ),
  246. ],
  247. 'hextob58': [
  248. ( ['deadbeef'], '6h8cQN' ),
  249. ( ['deadbeefdeadbeef'], 'eFGDJURJykA' ),
  250. ( ['ffffffffffffffff'], 'jpXCZedGfVQ' ),
  251. ( ['0000000000000000'], '1' ),
  252. ( ['0000000000000000','pad=10'], '1111111111' ),
  253. ( ['ff','pad=10'], '111111115Q' ),
  254. ],
  255. 'b58tohex': [
  256. ( ['6h8cQN'], 'deadbeef' ),
  257. ( ['eFGDJURJykA'], 'deadbeefdeadbeef' ),
  258. ( ['jpXCZedGfVQ'], 'ffffffffffffffff' ),
  259. ( ['1','pad=16'], '0000000000000000' ),
  260. ( ['1111111111','pad=16'], '0000000000000000' ),
  261. ( ['111111115Q','pad=2'], 'ff' ),
  262. ],
  263. 'bytespec': [
  264. ( ['1G'], str(1024*1024*1024) ),
  265. ( ['1234G'], str(1234*1024*1024*1024) ),
  266. ( ['1GB'], str(1000*1000*1000) ),
  267. ( ['1234GB'], str(1234*1000*1000*1000) ),
  268. ( ['1.234MB'], str(1234*1000) ),
  269. ( ['1.234567M'], str(int(Decimal('1.234567')*1024*1024)) ),
  270. ( ['1234'], str(1234) ),
  271. ],
  272. 'hash160': [ # TODO: check that hextob58chk(hash160) = pubhex2addr
  273. ( ['deadbeef'], 'f04df4c4b30d2b7ac6e1ed2445aeb12a9cb4d2ec' ),
  274. ( ['000000000000000000000000000000000000000000'], '2db95e704e2d9b0474acf76182f3f985b7064a8a' ),
  275. ( [''], 'b472a266d0bd89c13706a4132ccfb16f7c3b9fcb' ),
  276. ( ['ffffffffffffffff'], 'f86221f5a1fca059a865c0b7d374dfa9d5f3aeb4' ),
  277. ],
  278. 'hash256': [
  279. ( ['deadbeef'], 'e107944e77a688feae4c2d4db5951923812dd0f72026a11168104ee1b248f8a9' ),
  280. ( ['000000000000000000000000000000000000000000'], 'fd5181fcd097a334ab340569e5edcd09f702fef7994abab01f4b66e86b32ebbe' ),
  281. ( [''], '5df6e0e2761359d30a8275058e299fcc0381534545f55cf43e41983f5d4c9456' ),
  282. ( ['ffffffffffffffff'], '57b2d2c3455e0f76c61c5237ff04fc9fc0f3fe691e587ea9c951949e1a5e0fed' ),
  283. ],
  284. 'hexdump': [
  285. ( [sample_text.encode()], sample_text_hexdump ),
  286. ],
  287. 'unhexdump': [
  288. ( [sample_text_hexdump.encode()], sample_text.encode() ),
  289. ],
  290. 'hexlify': [
  291. ( [b'foobar'], '666f6f626172' ),
  292. ],
  293. 'unhexlify': [
  294. ( ['666f6f626172'], 'foobar' ),
  295. ],
  296. 'hexreverse': [
  297. ( ['deadbeefcafe'], 'fecaefbeadde' ),
  298. ],
  299. 'id6': [
  300. ( [sample_text.encode()], 'a6d72b' ),
  301. ],
  302. 'id8': [
  303. ( [sample_text.encode()], '687C09C2' ),
  304. ],
  305. 'str2id6': [
  306. ( ['74ev zjeq Zw2g DspF RKpE 7H'], '70413d' ), # checked
  307. ],
  308. 'randhex': [
  309. ( [], {'boolfunc':is_hex_str,'len':64}, ['-r0'] ),
  310. ( ['nbytes=16'], {'boolfunc':is_hex_str,'len':32}, ['-r0'] ),
  311. ( ['nbytes=6'], {'boolfunc':is_hex_str,'len':12}, ['-r0'] ),
  312. ],
  313. 'randb58': [
  314. ( [], {'boolfunc':is_b58_str}, ['-r0'] ),
  315. ( ['nbytes=16'], {'boolfunc':is_b58_str}, ['-r0'] ),
  316. ( ['nbytes=12','pad=0'], is_b58_str, ['-r0'] ),
  317. ],
  318. },
  319. 'Wallet': {
  320. 'gen_key': [
  321. ( ['98831F3A:11','wallet=test/ref/98831F3A.mmwords'],
  322. '5JKLcdYbhP6QQ4BXc9HtjfqJ79FFRXP2SZTKUyEuyXJo9QSFUkv'
  323. ),
  324. ( ['98831F3A:C:11','wallet=test/ref/98831F3A.mmwords'],
  325. 'L2LwXv94XTU2HjCbJPXCFuaHjrjucGipWPWUi1hkM5EykgektyqR'
  326. ),
  327. ( ['98831F3A:B:11','wallet=test/ref/98831F3A.mmwords'],
  328. 'L2K4Y9MWb5oUfKKZtwdgCm6FLZdUiWJDHjh9BYxpEvtfcXt4iM5g'
  329. ),
  330. ( ['98831F3A:S:11','wallet=test/ref/98831F3A.mmwords'],
  331. 'KwmkkfC9GghnJhnKoRXRn5KwGCgXrCmDw6Uv83NzE4kJS5axCR9A'
  332. ),
  333. ],
  334. 'gen_addr': [
  335. ( ['98831F3A:11','wallet=test/ref/98831F3A.mmwords'],
  336. '12bYUGXS8SRArZneQDN9YEEYAtEa59Rykm'
  337. ),
  338. ( ['98831F3A:L:11','wallet=test/ref/98831F3A.mmwords'],
  339. '12bYUGXS8SRArZneQDN9YEEYAtEa59Rykm'
  340. ),
  341. ( ['98831F3A:C:11','wallet=test/ref/98831F3A.mmwords'],
  342. '1MPsZ7BY9qikqfPxqmrovE8gLDX2rYArZk'
  343. ),
  344. ( ['98831F3A:B:11','wallet=test/ref/98831F3A.mmwords'],
  345. 'bc1qxptlvmwaymaxa7pxkr2u5pn7c0508stcncv7ms'
  346. ),
  347. ( ['98831F3A:S:11','wallet=test/ref/98831F3A.mmwords'],
  348. '3Eevao3DRVXnYym3tdrJDqS3Wc39PQzahn'
  349. ),
  350. ],
  351. 'get_subseed': [
  352. ( ['3s','wallet=test/ref/98831F3A.mmwords'], '4018EB17' ),
  353. ( ['200','wallet=test/ref/98831F3A.mmwords'], '2B05AE73' ),
  354. ],
  355. 'get_subseed_by_seed_id': [
  356. ( ['4018EB17','wallet=test/ref/98831F3A.mmwords'], '3S' ),
  357. ( ['2B05AE73','wallet=test/ref/98831F3A.mmwords'], None ),
  358. ( ['2B05AE73','wallet=test/ref/98831F3A.mmwords','last_idx=200'], '200L' ),
  359. ],
  360. 'list_subseeds': [
  361. ( ['1-5','wallet=test/ref/98831F3A.mmwords'],
  362. (md5_hash_strip,'996c047e8543d5dde6f82efc3214a6a1')
  363. ),
  364. ],
  365. 'list_shares': [
  366. ( ['3','wallet=test/ref/98831F3A.bip39'],
  367. (md5_hash_strip,'84e8bdaebf9c816a8a3bd2ebec5a2e12')
  368. ),
  369. ( ['3','id_str=default','wallet=test/ref/98831F3A.mmwords'],
  370. (md5_hash_strip,'84e8bdaebf9c816a8a3bd2ebec5a2e12')
  371. ),
  372. ( ['3','id_str=foo','wallet=test/ref/98831F3A.bip39'],
  373. (md5_hash_strip,'d2ac20823c4ea26f15234b5ca8df5d6f')
  374. ),
  375. ( ['3','id_str=foo','master_share=0','wallet=test/ref/98831F3A.mmwords'],
  376. (md5_hash_strip,'d2ac20823c4ea26f15234b5ca8df5d6f')
  377. ),
  378. ( ['3','id_str=foo','master_share=5','wallet=test/ref/98831F3A.mmwords'],
  379. (md5_hash_strip,'c4feedce40bb5959011ee4a996710832')
  380. ),
  381. ( ['3','id_str=βαρ','master_share=5','wallet=test/ref/98831F3A.mmwords'],
  382. (md5_hash_strip,'f7d254798fe2e34b94b5f4ff312998db')
  383. ),
  384. ( ['4','id_str=βαρ','master_share=5','wallet=test/ref/98831F3A.bip39'],
  385. (md5_hash_strip,'d3e479f55792181372a9f32a569c04e5')
  386. ),
  387. ],
  388. },
  389. 'Coin': {
  390. 'addr2pubhash': {
  391. 'btc_mainnet': [
  392. ( ['12bYUGXS8SRArZneQDN9YEEYAtEa59Rykm'], '118089d66b4a5853765e94923abdd5de4616c6e5' ),
  393. ( ['3Eevao3DRVXnYym3tdrJDqS3Wc39PQzahn'], '8e34586186551f6320fa3eb2d238a9c61ab8264b' ),
  394. ( ['bc1qxptlvmwaymaxa7pxkr2u5pn7c0508stcncv7ms'], '3057f66ddd26fa6ef826b0d5ca067ec3e8f3c178' ),
  395. ],
  396. },
  397. 'pubhash2addr': {
  398. 'btc_mainnet': [
  399. ( ['118089d66b4a5853765e94923abdd5de4616c6e5'], '12bYUGXS8SRArZneQDN9YEEYAtEa59Rykm',
  400. None, 'opt.type="legacy"' ),
  401. ( ['8e34586186551f6320fa3eb2d238a9c61ab8264b'], '3Eevao3DRVXnYym3tdrJDqS3Wc39PQzahn',
  402. ['--type=segwit'], 'opt.type="segwit"' ),
  403. ( ['3057f66ddd26fa6ef826b0d5ca067ec3e8f3c178'], 'bc1qxptlvmwaymaxa7pxkr2u5pn7c0508stcncv7ms',
  404. ['--type=bech32'], 'opt.type="bech32"' ),
  405. ],
  406. },
  407. 'addr2scriptpubkey': {
  408. 'btc_mainnet': [
  409. ( ['12bYUGXS8SRArZneQDN9YEEYAtEa59Rykm'], '76a914118089d66b4a5853765e94923abdd5de4616c6e588ac' ),
  410. ( ['3Eevao3DRVXnYym3tdrJDqS3Wc39PQzahn'], 'a9148e34586186551f6320fa3eb2d238a9c61ab8264b87' ),
  411. ( ['bc1qxptlvmwaymaxa7pxkr2u5pn7c0508stcncv7ms'], '00143057f66ddd26fa6ef826b0d5ca067ec3e8f3c178' ),
  412. ],
  413. },
  414. 'scriptpubkey2addr': {
  415. 'btc_mainnet': [
  416. ( ['76a914118089d66b4a5853765e94923abdd5de4616c6e588ac'], '12bYUGXS8SRArZneQDN9YEEYAtEa59Rykm' ),
  417. ( ['a9148e34586186551f6320fa3eb2d238a9c61ab8264b87'], '3Eevao3DRVXnYym3tdrJDqS3Wc39PQzahn' ),
  418. ( ['00143057f66ddd26fa6ef826b0d5ca067ec3e8f3c178'], 'bc1qxptlvmwaymaxa7pxkr2u5pn7c0508stcncv7ms' ),
  419. ],
  420. },
  421. 'hex2wif': {
  422. 'btc_mainnet': [
  423. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  424. '5HwzecKMWD82ppJK3qMKpC7ohXXAwcyAN5VgdJ9PLFaAzpBG4sX',
  425. None, 'opt.type="legacy"' ),
  426. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  427. 'KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm',
  428. ['--type=compressed'], 'opt.type="compressed"' ),
  429. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  430. 'KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm',
  431. ['--type=segwit'], 'opt.type="segwit"' ),
  432. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  433. 'KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm',
  434. ['--type=bech32'], 'opt.type="bech32"' ),
  435. ],
  436. },
  437. 'privhex2addr': {
  438. 'btc_mainnet': [
  439. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  440. '1C5VPtgq9xQ6AcTgMAR3J6GDrs72HC4pS1',
  441. None, 'opt.type="legacy"' ),
  442. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  443. '1Kz9fVSUMshzPejpzW9D95kScgA3rY6QxF',
  444. ['--type=compressed'], 'opt.type="compressed"' ),
  445. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  446. '3AhjTiWHhVJAi1s5CfKMcLzYps12x3gZhg',
  447. ['--type=segwit'], 'opt.type="segwit"' ),
  448. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  449. 'bc1q6pqnfwwakuuejpm9w52ds342f9d5u36v0qnz7c',
  450. ['--type=bech32'], 'opt.type="bech32"' ),
  451. ],
  452. 'eth_mainnet': [
  453. ( ['0000000000000000000000000000000000000000000000000000000000000001'],
  454. '7e5f4552091a69125d5dfcb7b8c2659029395bdf'),
  455. ( ['ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'],
  456. 'b92702b3eefb3c2049aeb845b0335b283e11e9c6'),
  457. ( ['0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'],
  458. 'ad30adc7451c1dace34c5d1f328f8a74a4947534'),
  459. ( ['00000000000000000000000000000000000000000000000000000000000000ff'],
  460. '5044a80bd3eff58302e638018534bbda8896c48a'),
  461. ( ['ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0f'],
  462. '8b10f977e27611516f186980d8161b25f8adca5e'),
  463. ( ['deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef'],
  464. 'c96aaa54e2d44c299564da76e1cd3184a2386b8d'),
  465. ],
  466. 'xmr_mainnet': [
  467. ( ['0000000000000000000000000000000000000000000000000000000000000001'],
  468. '42nsXK8WbVGTNayQ6Kjw5UdgqbQY5KCCufdxdCgF7NgTfjC69Mna7DJSYyie77hZTQ8H92G2HwgFhgEUYnDzrnLnQdF28r3'),
  469. ( ['ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'],
  470. '49voQEbjouUQSDikRWKUt1PGbS47TBde4hiGyftN46CvTDd8LXCaimjHRGtofCJwY5Ed5QhYwc12P15AH5w7SxUAMCz1nr1'),
  471. ( ['0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'],
  472. '45Ee1yJSjXBKuf8aaihf6KgSRGtMBN6NNDtkd9fLJzHiK4ar4NyNxDk6afc7MTRoruAsg6J6792tCJazHqs1sjbv7LuEsLx'),
  473. ( ['00000000000000000000000000000000000000000000000000000000000000ff'],
  474. '43aZyywWW4MYt2Az32XioQYirxyT8xeRBP84EBNA7Cra5SqQNmca6iD9pM487pcR9JAEiKrnw2QwvA5uWiFNokEzLJ5coZ9'),
  475. ( ['ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0f'],
  476. '4AeR1owefiJGbrAdSKCbVL73ME4FGv2cpczjV2peqqkxagm5D4gBqAHJta6NpbtxyuRe3ywaTj6QCHD59savvPW69wfW9my'),
  477. ( ['deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef'],
  478. '41i7saPWA53EoHenmJVRt34dubPxsXwoWMnw8AdMyx4mTD1svf7qYzcVjxxRfteLNdYrAxWUMmiPegFW9EfoNgXx7vDMExv'),
  479. ],
  480. 'zec_mainnet': [
  481. ( ['0000000000000000000000000000000000000000000000000000000000000001'],
  482. 'zceQDpyNwek7dKqF5ZuFGj7YrNVxh7X1aPkrVxDLVxWSiZAFDEuy5C7XNV8VhyZ3ghTPQ61xjCGiyLT3wqpiN1Yi6mdmaCq',
  483. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  484. ( ['ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'],
  485. 'zcY1hqJ3P5ifjnWk1BcXpjrLG5XeJZUSPCiiVTF9LXrejxBzAsFWcNyr6PudwQHm8DnQpD8HEaM3dh8sB6cf91ciAa53YQ1',
  486. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  487. ( ['0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'],
  488. 'zcY1hqJ3P5ifjnWk1BcXpjrLG5XeJZUSPCiiVTF9LXrejxBzAsFWcNyr6PudwQHm8DnQpD8HEaM3dh8sB6cf91ciAa53YQ1',
  489. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  490. ( ['00000000000000000000000000000000000000000000000000000000000000ff'],
  491. 'zcck12KgVY34LJwVEDLN8sXhL787zmjKqPsP1uBYRHs75bL9sQu4P7wcc5ZJTjKsL376zaSpsYqGxK94JbiYcNoH8DkeGbN',
  492. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  493. ( ['ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0f'],
  494. 'zcJ9hEezG1Jeye5dciqiMDh6SXtYbUsircGmpVyhHWyzyxDVRRDs5Q8M7hG3c7nDcvd5Pw4u4wV9RAQmq5RCBZq5wVyMQV8',
  495. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  496. ( ['deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef'],
  497. 'zchFELwBxqsAubsLQ8yZgPCDDGukjXJssgCbiTPwFNmFwn9haLnDatzfhLdZzJT4PcU4o2yr92B52UFirUzEdF6ZYM2gBkM',
  498. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  499. ],
  500. },
  501. 'privhex2pubhex': {
  502. 'btc_mainnet': [
  503. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  504. '044281a85c9ce87279e028410b851410d65136304cfbbbeaaa8e2e3931cf4e972757f3254c322eeaa3cb6bf97cc5ecf8d4387b0df2c0b1e6ee18fe3a6977a7d57a',
  505. None, 'opt.type="legacy"' ),
  506. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  507. '024281a85c9ce87279e028410b851410d65136304cfbbbeaaa8e2e3931cf4e9727',
  508. ['--type=compressed'], 'opt.type="compressed"' ),
  509. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  510. '024281a85c9ce87279e028410b851410d65136304cfbbbeaaa8e2e3931cf4e9727',
  511. ['--type=segwit'], 'opt.type="segwit"' ),
  512. ( ['118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492'],
  513. '024281a85c9ce87279e028410b851410d65136304cfbbbeaaa8e2e3931cf4e9727',
  514. ['--type=bech32'], 'opt.type="bech32"' ),
  515. ],
  516. },
  517. 'pubhex2addr': {
  518. 'btc_mainnet': [
  519. ( ['044281a85c9ce87279e028410b851410d65136304cfbbbeaaa8e2e3931cf4e972757f3254c322eeaa3cb6bf97cc5ecf8d4387b0df2c0b1e6ee18fe3a6977a7d57a'],
  520. '1C5VPtgq9xQ6AcTgMAR3J6GDrs72HC4pS1',
  521. None, 'opt.type="legacy"' ),
  522. ( ['024281a85c9ce87279e028410b851410d65136304cfbbbeaaa8e2e3931cf4e9727'],
  523. '1Kz9fVSUMshzPejpzW9D95kScgA3rY6QxF',
  524. ['--type=compressed'], 'opt.type="compressed"' ),
  525. ( ['024281a85c9ce87279e028410b851410d65136304cfbbbeaaa8e2e3931cf4e9727'],
  526. '3AhjTiWHhVJAi1s5CfKMcLzYps12x3gZhg',
  527. ['--type=segwit'], 'opt.type="segwit"' ),
  528. ( ['024281a85c9ce87279e028410b851410d65136304cfbbbeaaa8e2e3931cf4e9727'],
  529. 'bc1q6pqnfwwakuuejpm9w52ds342f9d5u36v0qnz7c',
  530. ['--type=bech32'], 'opt.type="bech32"' ),
  531. ],
  532. },
  533. 'pubhex2redeem_script': {
  534. 'btc_mainnet': [
  535. ( ['024281a85c9ce87279e028410b851410d65136304cfbbbeaaa8e2e3931cf4e9727'],
  536. '0014d04134b9ddb7399907657514d846aa495b4e474c',
  537. ['--type=segwit'], 'opt.type="segwit"' ),
  538. ],
  539. },
  540. 'redeem_script2addr': {
  541. 'btc_mainnet': [
  542. ( ['0014d04134b9ddb7399907657514d846aa495b4e474c'],
  543. '3AhjTiWHhVJAi1s5CfKMcLzYps12x3gZhg',
  544. ['--type=segwit'], 'opt.type="segwit"' ),
  545. ],
  546. },
  547. 'randpair': {
  548. 'btc_mainnet': [ ( [], [is_wif,is_coin_addr], ['-r0'] ) ],
  549. 'btc_testnet': [ ( [], [is_wif,is_coin_addr], ['-r0'] ) ],
  550. },
  551. 'randwif': {
  552. 'btc_mainnet': [ ( [], is_wif, ['-r0'] ) ],
  553. 'btc_testnet': [ ( [], is_wif, ['-r0'] ) ],
  554. },
  555. 'wif2addr': {
  556. 'btc_mainnet': [
  557. ( ['5HwzecKMWD82ppJK3qMKpC7ohXXAwcyAN5VgdJ9PLFaAzpBG4sX'],
  558. '1C5VPtgq9xQ6AcTgMAR3J6GDrs72HC4pS1', ['--type=legacy'], 'opt.type="legacy"' ),
  559. ( ['KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm'],
  560. '1Kz9fVSUMshzPejpzW9D95kScgA3rY6QxF', ['--type=compressed'], 'opt.type="compressed"' ),
  561. ( ['KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm'],
  562. '3AhjTiWHhVJAi1s5CfKMcLzYps12x3gZhg', ['--type=segwit'], 'opt.type="segwit"' ),
  563. ( ['KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm'],
  564. 'bc1q6pqnfwwakuuejpm9w52ds342f9d5u36v0qnz7c', ['--type=bech32'], 'opt.type="bech32"' ),
  565. ],
  566. 'eth_mainnet': [
  567. ( ['0000000000000000000000000000000000000000000000000000000000000001'],
  568. '7e5f4552091a69125d5dfcb7b8c2659029395bdf'),
  569. ( ['000000000000000000000000000000014551231950b75fc4402da1732fc9bebe'],
  570. 'b92702b3eefb3c2049aeb845b0335b283e11e9c6'),
  571. ( ['0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'],
  572. 'ad30adc7451c1dace34c5d1f328f8a74a4947534'),
  573. ( ['00000000000000000000000000000000000000000000000000000000000000ff'],
  574. '5044a80bd3eff58302e638018534bbda8896c48a'),
  575. ( ['000000000000000000000000000000014551231950b75fc4402da1732fc9bdce'],
  576. '8b10f977e27611516f186980d8161b25f8adca5e'),
  577. ( ['deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef'],
  578. 'c96aaa54e2d44c299564da76e1cd3184a2386b8d'),
  579. ],
  580. 'xmr_mainnet': [
  581. ( ['0000000000000000000000000000000000000000000000000000000000000001'],
  582. '42nsXK8WbVGTNayQ6Kjw5UdgqbQY5KCCufdxdCgF7NgTfjC69Mna7DJSYyie77hZTQ8H92G2HwgFhgEUYnDzrnLnQdF28r3'),
  583. ( ['1c95988d7431ecd670cf7d73f45befc6feffffffffffffffffffffffffffff0f'],
  584. '49voQEbjouUQSDikRWKUt1PGbS47TBde4hiGyftN46CvTDd8LXCaimjHRGtofCJwY5Ed5QhYwc12P15AH5w7SxUAMCz1nr1'),
  585. ( ['2c94988d7431ecd670cf7d73f45befc6feffffffffffffffffffffffffffff0f'],
  586. '45Ee1yJSjXBKuf8aaihf6KgSRGtMBN6NNDtkd9fLJzHiK4ar4NyNxDk6afc7MTRoruAsg6J6792tCJazHqs1sjbv7LuEsLx'),
  587. ( ['1d95988d7431ecd670cf7d73f45befc6feffffffffffffffffffffffffffff0e'],
  588. '43aZyywWW4MYt2Az32XioQYirxyT8xeRBP84EBNA7Cra5SqQNmca6iD9pM487pcR9JAEiKrnw2QwvA5uWiFNokEzLJ5coZ9'),
  589. ( ['ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0f'],
  590. '4AeR1owefiJGbrAdSKCbVL73ME4FGv2cpczjV2peqqkxagm5D4gBqAHJta6NpbtxyuRe3ywaTj6QCHD59savvPW69wfW9my'),
  591. ( ['e8164dda6d42bd1e261a3406b2038dcbddadbeefdeadbeefdeadbeefdeadbe0f'],
  592. '41i7saPWA53EoHenmJVRt34dubPxsXwoWMnw8AdMyx4mTD1svf7qYzcVjxxRfteLNdYrAxWUMmiPegFW9EfoNgXx7vDMExv'),
  593. ],
  594. 'zec_mainnet': [
  595. ( ['SKxny894fJe2rmZjeuoE6GVfNkWoXfPp8337VrLLNWG56FjqVUYR'],
  596. 'zceQDpyNwek7dKqF5ZuFGj7YrNVxh7X1aPkrVxDLVxWSiZAFDEuy5C7XNV8VhyZ3ghTPQ61xjCGiyLT3wqpiN1Yi6mdmaCq',
  597. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  598. ( ['SKxv1peuQvMT4TvqPLqKy1px3oqLm98Evi948VU8N8VKcf7C2umc'],
  599. 'zcY1hqJ3P5ifjnWk1BcXpjrLG5XeJZUSPCiiVTF9LXrejxBzAsFWcNyr6PudwQHm8DnQpD8HEaM3dh8sB6cf91ciAa53YQ1',
  600. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  601. ( ['SKxv1peuQvMT4TvqPLqKy1px3oqLm98Evi948VU8N8VKcf7C2umc'],
  602. 'zcY1hqJ3P5ifjnWk1BcXpjrLG5XeJZUSPCiiVTF9LXrejxBzAsFWcNyr6PudwQHm8DnQpD8HEaM3dh8sB6cf91ciAa53YQ1',
  603. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  604. ( ['SKxny894fJe2rmZjeuoE6GVfNkWoXfPp8337VrLLNWG56kQw4qjm'],
  605. 'zcck12KgVY34LJwVEDLN8sXhL787zmjKqPsP1uBYRHs75bL9sQu4P7wcc5ZJTjKsL376zaSpsYqGxK94JbiYcNoH8DkeGbN',
  606. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  607. ( ['SKxv1peuQvMT4TvqPLqKy1px3oqLm98Evi948VU8N8VKcBwrLwiu'],
  608. 'zcJ9hEezG1Jeye5dciqiMDh6SXtYbUsircGmpVyhHWyzyxDVRRDs5Q8M7hG3c7nDcvd5Pw4u4wV9RAQmq5RCBZq5wVyMQV8',
  609. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  610. ( ['SKxuS56e99jpCeD9mMQ5o63zoGPakNdM9HCvt4Vt2cypvRjCdvGJ'],
  611. 'zchFELwBxqsAubsLQ8yZgPCDDGukjXJssgCbiTPwFNmFwn9haLnDatzfhLdZzJT4PcU4o2yr92B52UFirUzEdF6ZYM2gBkM',
  612. ['--type=zcash_z'], 'opt.type="zcash_z"' ),
  613. ],
  614. },
  615. 'wif2hex': {
  616. 'btc_mainnet': [
  617. ( ['5HwzecKMWD82ppJK3qMKpC7ohXXAwcyAN5VgdJ9PLFaAzpBG4sX'],
  618. '118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492',
  619. None, 'opt.type="legacy"' ),
  620. ( ['KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm'],
  621. '118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492',
  622. ['--type=compressed'], 'opt.type="compressed"' ),
  623. ( ['KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm'],
  624. '118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492',
  625. ['--type=segwit'], 'opt.type="segwit"' ),
  626. ( ['KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm'],
  627. '118089d66b4a5853765e94923abdd5de4616c6e5118089d66b4a5853765e9492',
  628. ['--type=bech32'], 'opt.type="bech32"' ),
  629. ],
  630. },
  631. 'wif2redeem_script': {
  632. 'btc_mainnet': [
  633. ( ['KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm'],
  634. '0014d04134b9ddb7399907657514d846aa495b4e474c',
  635. ['--type=segwit'], 'opt.type="segwit"' ),
  636. ],
  637. },
  638. 'wif2segwit_pair': {
  639. 'btc_mainnet': [
  640. ( ['KwojSzt1VvW343mQfWQi3J537siAt5ktL2qbuCg1ZyKR8BLQ6UJm'],
  641. ('0014d04134b9ddb7399907657514d846aa495b4e474c','3AhjTiWHhVJAi1s5CfKMcLzYps12x3gZhg'),
  642. ['--type=segwit'], 'opt.type="segwit"' ),
  643. ],
  644. },
  645. },
  646. # TODO: compressed address files are missing
  647. # 'addrfile_compressed_chk':
  648. # 'btc': ('A33C 4FDE F515 F5BC','6C48 AA57 2056 C8C8'),
  649. # 'ltc': ('3FC0 8F03 C2D6 BD19','4C0A 49B6 2DD1 1BE0'),
  650. 'File': {
  651. 'addrfile_chksum': {
  652. 'btc_mainnet': [
  653. ( ['test/ref/98831F3A[1,31-33,500-501,1010-1011].addrs'],
  654. '6FEF 6FB9 7B13 5D91'),
  655. ( ['test/ref/98831F3A-S[1,31-33,500-501,1010-1011].addrs'],
  656. '06C1 9C87 F25C 4EE6'),
  657. ( ['test/ref/98831F3A-B[1,31-33,500-501,1010-1011].addrs'],
  658. '9D2A D4B6 5117 F02E'),
  659. ],
  660. 'btc_testnet': [
  661. ( ['test/ref/98831F3A[1,31-33,500-501,1010-1011].testnet.addrs'],
  662. '424E 4326 CFFE 5F51'),
  663. ( ['test/ref/98831F3A-S[1,31-33,500-501,1010-1011].testnet.addrs'],
  664. '072C 8B07 2730 CB7A'),
  665. ( ['test/ref/98831F3A-B[1,31-33,500-501,1010-1011].testnet.addrs'],
  666. '0527 9C39 6C1B E39A'),
  667. ],
  668. 'ltc_mainnet': [
  669. ( ['test/ref/litecoin/98831F3A-LTC[1,31-33,500-501,1010-1011].addrs'],
  670. 'AD52 C3FE 8924 AAF0'),
  671. ( ['test/ref/litecoin/98831F3A-LTC-S[1,31-33,500-501,1010-1011].addrs'],
  672. '63DF E42A 0827 21C3'),
  673. ( ['test/ref/litecoin/98831F3A-LTC-B[1,31-33,500-501,1010-1011].addrs'],
  674. 'FF1C 7939 5967 AB82'),
  675. ],
  676. 'ltc_testnet': [
  677. ( ['test/ref/litecoin/98831F3A-LTC[1,31-33,500-501,1010-1011].testnet.addrs'],
  678. '4EBE 2E85 E969 1B30'),
  679. ( ['test/ref/litecoin/98831F3A-LTC-S[1,31-33,500-501,1010-1011].testnet.addrs'],
  680. '5DD1 D186 DBE1 59F2'),
  681. ( ['test/ref/litecoin/98831F3A-LTC-B[1,31-33,500-501,1010-1011].testnet.addrs'],
  682. 'ED3D 8AA4 BED4 0B40'),
  683. ],
  684. 'zec_mainnet': [
  685. ( ['test/ref/zcash/98831F3A-ZEC-C[1,31-33,500-501,1010-1011].addrs'],'903E 7225 DD86 6E01'),
  686. ( ['test/ref/zcash/98831F3A-ZEC-Z[1,31-33,500-501,1010-1011].addrs'], '9C7A 72DC 3D4A B3AF',
  687. ['--type=zcash_z'], 'opt.type = "zcash_z"' ),
  688. ],
  689. 'xmr_mainnet': [
  690. ( ['test/ref/monero/98831F3A-XMR-M[1,31-33,500-501,1010-1011].addrs'],'4369 0253 AC2C 0E38'), ],
  691. 'dash_mainnet': [
  692. ( ['test/ref/dash/98831F3A-DASH-C[1,31-33,500-501,1010-1011].addrs'],'FBC1 6B6A 0988 4403'), ],
  693. 'eth_mainnet': [
  694. ( ['test/ref/ethereum/98831F3A-ETH[1,31-33,500-501,1010-1011].addrs'],'E554 076E 7AF6 66A3'), ],
  695. 'etc_mainnet': [
  696. ( ['test/ref/ethereum_classic/98831F3A-ETC[1,31-33,500-501,1010-1011].addrs'],
  697. 'E97A D796 B495 E8BC'), ],
  698. },
  699. 'keyaddrfile_chksum': {
  700. 'btc_mainnet': [
  701. ( ['test/ref/98831F3A[1,31-33,500-501,1010-1011].akeys.mmenc'],
  702. '9F2D D781 1812 8BAD', kafile_opts, kafile_code ),
  703. ],
  704. 'btc_testnet': [
  705. ( ['test/ref/98831F3A[1,31-33,500-501,1010-1011].testnet.akeys.mmenc'],
  706. '88CC 5120 9A91 22C2', kafile_opts, kafile_code ),
  707. ],
  708. 'ltc_mainnet': [
  709. ( ['test/ref/litecoin/98831F3A-LTC[1,31-33,500-501,1010-1011].akeys.mmenc'],
  710. 'B804 978A 8796 3ED4', kafile_opts, kafile_code ),
  711. ],
  712. 'ltc_testnet': [
  713. ( ['test/ref/litecoin/98831F3A-LTC[1,31-33,500-501,1010-1011].testnet.akeys.mmenc'],
  714. '98B5 AC35 F334 0398', kafile_opts, kafile_code ),
  715. ],
  716. 'zec_mainnet': [
  717. ( ['test/ref/zcash/98831F3A-ZEC-C[1,31-33,500-501,1010-1011].akeys.mmenc'],
  718. 'F05A 5A5C 0C8E 2617', kafile_opts, kafile_code ),
  719. ( ['test/ref/zcash/98831F3A-ZEC-Z[1,31-33,500-501,1010-1011].akeys.mmenc'], '6B87 9B2D 0D8D 8D1E',
  720. kafile_opts + ['--type=zcash_z'], kafile_code + '\nopt.type = "zcash_z"' ),
  721. ],
  722. 'xmr_mainnet': [
  723. ( ['test/ref/monero/98831F3A-XMR-M[1,31-33,500-501,1010-1011].akeys.mmenc'],
  724. 'E0D7 9612 3D67 404A', kafile_opts, kafile_code ), ],
  725. 'dash_mainnet': [
  726. ( ['test/ref/dash/98831F3A-DASH-C[1,31-33,500-501,1010-1011].akeys.mmenc'],
  727. 'E83D 2C63 FEA2 4142', kafile_opts, kafile_code ), ],
  728. 'eth_mainnet': [
  729. ( ['test/ref/ethereum/98831F3A-ETH[1,31-33,500-501,1010-1011].akeys.mmenc'],
  730. 'E400 70D9 0AE3 C7C2', kafile_opts, kafile_code ), ],
  731. 'etc_mainnet': [
  732. ( ['test/ref/ethereum_classic/98831F3A-ETC[1,31-33,500-501,1010-1011].akeys.mmenc'],
  733. 'EF49 967D BD6C FE45', kafile_opts, kafile_code ), ],
  734. },
  735. 'passwdfile_chksum': {
  736. 'btc_mainnet': [
  737. ( ['test/ref/98831F3A-фубар@crypto.org-b58-20[1,4,1100].pws'],
  738. 'DDD9 44B0 CA28 183F', kafile_opts, kafile_code ), ],
  739. },
  740. 'txview': {
  741. 'btc_mainnet': [ ( ['test/ref/0B8D5A[15.31789,14,tl=1320969600].rawtx'], None ), ],
  742. 'btc_testnet': [ ( ['test/ref/0C7115[15.86255,14,tl=1320969600].testnet.rawtx'], None ), ],
  743. 'bch_mainnet': [ ( ['test/ref/460D4D-BCH[10.19764,tl=1320969600].rawtx'], None ), ],
  744. 'bch_testnet': [ ( ['test/ref/359FD5-BCH[6.68868,tl=1320969600].testnet.rawtx'], None ), ],
  745. 'ltc_mainnet': [ ( ['test/ref/litecoin/AF3CDF-LTC[620.76194,1453,tl=1320969600].rawtx'], None ), ],
  746. 'ltc_testnet': [ ( ['test/ref/litecoin/A5A1E0-LTC[1454.64322,1453,tl=1320969600].testnet.rawtx'],
  747. None ), ],
  748. 'eth_mainnet': [ ( ['test/ref/ethereum/88FEFD-ETH[23.45495,40000].rawtx'], None ), ],
  749. 'eth_testnet': [ ( ['test/ref/ethereum/B472BD-ETH[23.45495,40000].testnet.rawtx'], None ), ],
  750. 'mm1_mainnet': [ ( ['test/ref/ethereum/5881D2-MM1[1.23456,50000].rawtx'], None ), ],
  751. 'mm1_testnet': [ ( ['test/ref/ethereum/6BDB25-MM1[1.23456,50000].testnet.rawtx'], None ), ],
  752. 'etc_mainnet': [ ( ['test/ref/ethereum_classic/ED3848-ETC[1.2345,40000].rawtx'], None ), ],
  753. },
  754. },
  755. }
  756. coin_dependent_groups = ('Coin','File') # TODO: do this as attr of each group in tool.py
  757. def run_test(gid,cmd_name):
  758. data = tests[gid][cmd_name]
  759. # behavior is like test.py: run coin-dependent tests only if g.testnet or g.coin != BTC
  760. if gid in coin_dependent_groups:
  761. k = '{}_{}net'.format((g.token.lower() if g.token else g.coin.lower()),('main','test')[g.testnet])
  762. if k in data:
  763. data = data[k]
  764. m2 = ' ({})'.format(k)
  765. else:
  766. qmsg("-- no data for {} ({}) - skipping".format(cmd_name,k))
  767. return
  768. else:
  769. if g.coin != 'BTC' or g.testnet: return
  770. m2 = ''
  771. m = '{} {}{}'.format(purple('Testing'), cmd_name if opt.names else
  772. extract_docstring(getattr(getattr(tool,'MMGenToolCmd'+gid),cmd_name)),m2)
  773. msg_r(green(m)+'\n' if opt.verbose else m)
  774. def fork_cmd(cmd_name,args,out,opts,exec_code):
  775. cmd = list(tool_cmd) + (opts or []) + [cmd_name] + args
  776. vmsg('{} {}'.format(green('Executing'),cyan(' '.join(cmd))))
  777. cp = run(cmd,input=stdin_input or None,stdout=PIPE,stderr=PIPE)
  778. try: cmd_out = cp.stdout.decode()
  779. except: cmd_out = cp.stdout
  780. if cp.stderr:
  781. vmsg(cp.stderr.strip().decode())
  782. if cp.returncode != 0:
  783. import re
  784. m = re.match(b"tool command returned '(None|False)'"+NL.encode(),cp.stderr)
  785. if m:
  786. return { b'None': None, b'False': False }[m.group(1)]
  787. else:
  788. ydie(1,'Spawned program exited with error: {}'.format(cp.stderr))
  789. return cmd_out.strip()
  790. def run_func(cmd_name,args,out,opts,exec_code):
  791. vmsg('{}: {}{}'.format(purple('Running'),
  792. ' '.join([cmd_name]+[repr(e) for e in args]),
  793. ' '+exec_code if exec_code else '' ))
  794. if exec_code: exec(exec_code)
  795. aargs,kwargs = tool._process_args(cmd_name,args)
  796. oq_save = opt.quiet
  797. if not opt.verbose: opt.quiet = True
  798. if stdin_input:
  799. fd0,fd1 = os.pipe()
  800. if os.fork(): # parent
  801. os.close(fd1)
  802. stdin_save = os.dup(0)
  803. os.dup2(fd0,0)
  804. cmd_out = getattr(tc,cmd_name)(*aargs,**kwargs)
  805. os.dup2(stdin_save,0)
  806. os.wait()
  807. opt.quiet = oq_save
  808. return cmd_out
  809. else: # child
  810. os.close(fd0)
  811. os.write(fd1,stdin_input)
  812. vmsg('Input: {!r}'.format(stdin_input))
  813. sys.exit(0)
  814. else:
  815. ret = getattr(tc,cmd_name)(*aargs,**kwargs)
  816. opt.quiet = oq_save
  817. return ret
  818. def tool_api(cmd_name,args,out,opts,exec_code):
  819. from mmgen.tool import tool_api
  820. tool = tool_api()
  821. if opts:
  822. for o in opts:
  823. if o.startswith('--type='):
  824. tool.addrtype = o.split('=')[1]
  825. pargs,kwargs = [],{}
  826. for a in args:
  827. if '=' in a:
  828. a1,a2 = a.split('=')
  829. kwargs[a1] = int(a2) if is_int(a2) else a2
  830. else:
  831. pargs.append(a)
  832. return getattr(tool,cmd_name)(*pargs,**kwargs)
  833. for d in data:
  834. args,out,opts,exec_code = d + tuple([None] * (4-len(d)))
  835. stdin_input = None
  836. if args and type(args[0]) == bytes:
  837. stdin_input = args[0]
  838. args[0] = '-'
  839. if opt.tool_api:
  840. if args and args[0 ]== '-':
  841. continue
  842. cmd_out = tool_api(cmd_name,args,out,opts,exec_code)
  843. elif opt.fork:
  844. cmd_out = fork_cmd(cmd_name,args,out,opts,exec_code)
  845. else:
  846. if stdin_input and g.platform == 'win':
  847. msg('Skipping for MSWin - no os.fork()')
  848. continue
  849. cmd_out = run_func(cmd_name,args,out,opts,exec_code)
  850. try: vmsg('Output:\n{}\n'.format(cmd_out))
  851. except: vmsg('Output:\n{}\n'.format(repr(cmd_out)))
  852. def check_output(out,chk):
  853. if isinstance(chk,str): chk = chk.encode()
  854. if isinstance(out,int): out = str(out).encode()
  855. if isinstance(out,str): out = out.encode()
  856. err_fs = "Output ({!r}) doesn't match expected output ({!r})"
  857. try: outd = out.decode()
  858. except: outd = None
  859. if type(chk).__name__ == 'function':
  860. assert chk(outd),"{}({}) failed!".format(chk.__name__,outd)
  861. elif type(chk) == dict:
  862. for k,v in chk.items():
  863. if k == 'boolfunc':
  864. assert v(outd),"{}({}) failed!".format(v.__name__,outd)
  865. elif k == 'value':
  866. assert outd == v, err_fs.format(outd,v)
  867. else:
  868. outval = getattr(__builtins__,k)(out)
  869. if outval != v:
  870. die(1,"{}({}) returned {}, not {}!".format(k,out,outval,v))
  871. elif chk is not None:
  872. assert out == chk, err_fs.format(out,chk)
  873. if type(out) == tuple and type(out[0]).__name__ == 'function':
  874. func_out = out[0](cmd_out)
  875. assert func_out == out[1],(
  876. "{}({}) == {} failed!\nOutput: {}".format(out[0].__name__,cmd_out,out[1],func_out))
  877. elif isinstance(out,(list,tuple)):
  878. for co,o in zip(cmd_out.split(NL) if opt.fork else cmd_out,out):
  879. check_output(co,o)
  880. else:
  881. check_output(cmd_out,out)
  882. if not opt.verbose: msg_r('.')
  883. if not opt.verbose:
  884. msg('OK')
  885. def extract_docstring(obj):
  886. return obj.__doc__.strip().split('\n')[0]
  887. def do_group(gid):
  888. qmsg(blue("Testing {}".format(
  889. "command group '{}'".format(gid) if opt.names
  890. else extract_docstring(getattr(tool,'MMGenToolCmd'+gid)))))
  891. for cname in [e for e in dir(getattr(tool,'MMGenToolCmd'+gid)) if e[0] != '_']:
  892. if cname not in tests[gid]:
  893. m = 'No test for command {!r} in group {!r}!'.format(cname,gid)
  894. if opt.die_on_missing:
  895. die(1,m+' Aborting')
  896. else:
  897. msg(m)
  898. continue
  899. run_test(gid,cname)
  900. def do_cmd_in_group(cmd):
  901. for gid in tests:
  902. for cname in tests[gid]:
  903. if cname == cmd:
  904. run_test(gid,cname)
  905. return True
  906. return False
  907. def list_tested_cmds():
  908. for gid in tests:
  909. for cname in [e for e in dir(getattr(tool,'MMGenToolCmd'+gid)) if e[0] != '_']:
  910. Msg(cname)
  911. sys.argv = [sys.argv[0]] + ['--skip-cfg-file'] + sys.argv[1:]
  912. cmd_args = opts.init(opts_data,add_opts=['use_old_ed25519'])
  913. if opt.tool_api:
  914. del tests['Wallet']
  915. del tests['File']
  916. import mmgen.tool as tool
  917. if opt.list_tests:
  918. Msg('Available tests:')
  919. for gid in tests:
  920. Msg(' {:6} - {}'.format(gid,extract_docstring(getattr(tool,'MMGenToolCmd'+gid))))
  921. sys.exit(0)
  922. if opt.list_tested_cmds:
  923. list_tested_cmds()
  924. sys.exit(0)
  925. if opt.system:
  926. tool_exec = 'mmgen-tool'
  927. sys.path.pop(0)
  928. else:
  929. os.environ['PYTHONPATH'] = repo_root
  930. tool_exec = os.path.relpath(os.path.join('cmds','mmgen-tool'))
  931. if opt.fork:
  932. tool_cmd = (tool_exec,'--skip-cfg-file')
  933. passthru_args = ['coin','type','testnet','token']
  934. tool_cmd += tuple(['--{}{}'.format(k.replace('_','-'),
  935. '='+getattr(opt,k) if getattr(opt,k) != True else ''
  936. ) for k in passthru_args if getattr(opt,k)])
  937. if opt.traceback:
  938. tool_cmd = (os.path.join('scripts','traceback_run.py'),) + tool_cmd
  939. if opt.coverage:
  940. d,f = init_coverage()
  941. tool_cmd = ('python3','-m','trace','--count','--coverdir='+d,'--file='+f) + tool_cmd
  942. elif g.platform == 'win':
  943. tool_cmd = ('python3',) + tool_cmd
  944. else:
  945. opt.usr_randchars = 0
  946. tc = tool.MMGenToolCmd()
  947. start_time = int(time.time())
  948. try:
  949. if cmd_args:
  950. for cmd in cmd_args:
  951. if cmd in tests:
  952. do_group(cmd)
  953. else:
  954. if not do_cmd_in_group(cmd):
  955. die(1,"'{}': not a recognized test or test group".format(cmd))
  956. else:
  957. for garg in tests:
  958. do_group(garg)
  959. except KeyboardInterrupt:
  960. die(1,green('\nExiting at user request'))
  961. t = int(time.time()) - start_time
  962. gmsg('All requested tests finished OK, elapsed time: {:02}:{:02}'.format(t//60,t%60))