tooltest2.py 36 KB

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