tooltest2.py 36 KB

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