tooltest2.py 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2022 The MMGen Project <mmgen@tuta.io>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. """
  19. test/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*1024*1024*1024),'G'], '1234.00G', ),
  291. ( [str(1000*1000*1000*1000*1000),'PB'], '1.00PB' ),
  292. ( [str(1024*1024*1024*1024*1024),'P'], '1.00P' ),
  293. ( [str(1024*1024*1024*1024*1024*1024),'E'], '1.00E' ),
  294. ( [str(int(Decimal('1.234567')*1024*1024)),'M','fmt=0.6'], '1.234567M' ),
  295. ( ['1234','c','fmt=0.0','print_sym=false'], '1234' ),
  296. ],
  297. 'hash160': [ # TODO: check that hextob58chk(hash160) = pubhex2addr
  298. ( ['deadbeef'], 'f04df4c4b30d2b7ac6e1ed2445aeb12a9cb4d2ec' ),
  299. ( ['000000000000000000000000000000000000000000'], '2db95e704e2d9b0474acf76182f3f985b7064a8a' ),
  300. ( [''], 'b472a266d0bd89c13706a4132ccfb16f7c3b9fcb' ),
  301. ( ['ffffffffffffffff'], 'f86221f5a1fca059a865c0b7d374dfa9d5f3aeb4' ),
  302. ],
  303. 'hash256': [
  304. ( ['deadbeef'], 'e107944e77a688feae4c2d4db5951923812dd0f72026a11168104ee1b248f8a9' ),
  305. ( ['000000000000000000000000000000000000000000'], 'fd5181fcd097a334ab340569e5edcd09f702fef7994abab01f4b66e86b32ebbe' ),
  306. ( [''], '5df6e0e2761359d30a8275058e299fcc0381534545f55cf43e41983f5d4c9456' ),
  307. ( ['ffffffffffffffff'], '57b2d2c3455e0f76c61c5237ff04fc9fc0f3fe691e587ea9c951949e1a5e0fed' ),
  308. ],
  309. 'hexdump': [
  310. ( [sample_text.encode()], sample_text_hexdump ),
  311. ],
  312. 'unhexdump': [
  313. ( [sample_text_hexdump.encode()], sample_text.encode() ),
  314. ],
  315. 'hexlify': [
  316. ( [b'foobar'], '666f6f626172' ),
  317. ],
  318. 'unhexlify': [
  319. ( ['666f6f626172'], 'foobar' ),
  320. ],
  321. 'hexreverse': [
  322. ( ['deadbeefcafe'], 'fecaefbeadde' ),
  323. ],
  324. 'id6': [
  325. ( [sample_text.encode()], 'a6d72b' ),
  326. ],
  327. 'id8': [
  328. ( [sample_text.encode()], '687C09C2' ),
  329. ],
  330. 'str2id6': [
  331. ( ['74ev zjeq Zw2g DspF RKpE 7H'], '70413d' ), # checked
  332. ],
  333. 'randhex': [
  334. ( [], {'boolfunc':is_hex_str,'len':64}, ['-r0'] ),
  335. ( ['nbytes=16'], {'boolfunc':is_hex_str,'len':32}, ['-r0'] ),
  336. ( ['nbytes=6'], {'boolfunc':is_hex_str,'len':12}, ['-r0'] ),
  337. ],
  338. 'randb58': [
  339. ( [], {'boolfunc':is_b58_str}, ['-r0'] ),
  340. ( ['nbytes=16'], {'boolfunc':is_b58_str}, ['-r0'] ),
  341. ( ['nbytes=12','pad=0'], is_b58_str, ['-r0'] ),
  342. ],
  343. 'eth_checksummed_addr': [
  344. ( ['00a329c0648769a73afac7f9381e08fb43dbea72'], '00a329c0648769A73afAc7F9381E08FB43dBEA72' ),
  345. ( ['deadbeef'*5], 'DeaDbeefdEAdbeefdEadbEEFdeadbeEFdEaDbeeF' ),
  346. ( ['ffffffff'*5], 'FFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF' ),
  347. ( ['0'*39 + '1'], '0'*39 + '1' ),
  348. ],
  349. },
  350. 'Wallet': {
  351. 'gen_key': [
  352. ( ['98831F3A:11','wallet=test/ref/98831F3A.mmwords'],
  353. '5JKLcdYbhP6QQ4BXc9HtjfqJ79FFRXP2SZTKUyEuyXJo9QSFUkv'
  354. ),
  355. ( ['98831F3A:C:11','wallet=test/ref/98831F3A.mmwords'],
  356. 'L2LwXv94XTU2HjCbJPXCFuaHjrjucGipWPWUi1hkM5EykgektyqR'
  357. ),
  358. ( ['98831F3A:B:11','wallet=test/ref/98831F3A.mmwords'],
  359. 'L2K4Y9MWb5oUfKKZtwdgCm6FLZdUiWJDHjh9BYxpEvtfcXt4iM5g'
  360. ),
  361. ( ['98831F3A:S:11','wallet=test/ref/98831F3A.mmwords'],
  362. 'KwmkkfC9GghnJhnKoRXRn5KwGCgXrCmDw6Uv83NzE4kJS5axCR9A'
  363. ),
  364. ],
  365. 'gen_addr': [
  366. ( ['98831F3A:11','wallet=test/ref/98831F3A.mmwords'], btc_addr5 ),
  367. ( ['98831F3A:L:11','wallet=test/ref/98831F3A.mmwords'], btc_addr5 ),
  368. ( ['98831F3A:C:11','wallet=test/ref/98831F3A.mmwords'],
  369. '1MPsZ7BY9qikqfPxqmrovE8gLDX2rYArZk'
  370. ),
  371. ( ['98831F3A:B:11','wallet=test/ref/98831F3A.mmwords'], btc_addr6 ),
  372. ( ['98831F3A:S:11','wallet=test/ref/98831F3A.mmwords'], btc_addr7 ),
  373. ],
  374. 'get_subseed': [
  375. ( ['3s','wallet=test/ref/98831F3A.mmwords'], '4018EB17' ),
  376. ( ['200','wallet=test/ref/98831F3A.mmwords'], '2B05AE73' ),
  377. ],
  378. 'get_subseed_by_seed_id': [
  379. ( ['4018EB17','wallet=test/ref/98831F3A.mmwords'], '3S' ),
  380. ( ['2B05AE73','wallet=test/ref/98831F3A.mmwords'], None ),
  381. ( ['2B05AE73','wallet=test/ref/98831F3A.mmwords','last_idx=200'], '200L' ),
  382. ],
  383. 'list_subseeds': [
  384. ( ['1-5','wallet=test/ref/98831F3A.mmwords'],
  385. (md5_hash_strip,'996c047e8543d5dde6f82efc3214a6a1')
  386. ),
  387. ],
  388. 'list_shares': [
  389. ( ['3','wallet=test/ref/98831F3A.bip39'],
  390. (md5_hash_strip,'84e8bdaebf9c816a8a3bd2ebec5a2e12')
  391. ),
  392. ( ['3','id_str=default','wallet=test/ref/98831F3A.mmwords'],
  393. (md5_hash_strip,'84e8bdaebf9c816a8a3bd2ebec5a2e12')
  394. ),
  395. ( ['3','id_str=foo','wallet=test/ref/98831F3A.bip39'],
  396. (md5_hash_strip,'d2ac20823c4ea26f15234b5ca8df5d6f')
  397. ),
  398. ( ['3','id_str=foo','master_share=0','wallet=test/ref/98831F3A.mmwords'],
  399. (md5_hash_strip,'d2ac20823c4ea26f15234b5ca8df5d6f')
  400. ),
  401. ( ['3','id_str=foo','master_share=5','wallet=test/ref/98831F3A.mmwords'],
  402. (md5_hash_strip,'c4feedce40bb5959011ee4a996710832')
  403. ),
  404. ( ['3','id_str=βαρ','master_share=5','wallet=test/ref/98831F3A.mmwords'],
  405. (md5_hash_strip,'f7d254798fe2e34b94b5f4ff312998db')
  406. ),
  407. ( ['4','id_str=βαρ','master_share=5','wallet=test/ref/98831F3A.bip39'],
  408. (md5_hash_strip,'d3e479f55792181372a9f32a569c04e5')
  409. ),
  410. ],
  411. },
  412. 'Coin': {
  413. 'addr2pubhash': {
  414. 'btc_mainnet': [
  415. ( [ btc_addr5 ], '118089d66b4a5853765e94923abdd5de4616c6e5' ),
  416. ( [ btc_addr6 ], '3057f66ddd26fa6ef826b0d5ca067ec3e8f3c178' ),
  417. ],
  418. },
  419. 'pubhash2addr': {
  420. 'btc_mainnet': [
  421. ( ['118089d66b4a5853765e94923abdd5de4616c6e5'], btc_addr5, None, 'legacy' ),
  422. ( ['8e34586186551f6320fa3eb2d238a9c61ab8264b'], '37ZBgCBjjz9WSEzp1Zjv8sqdgmNie3Kd5s',
  423. ['--type=segwit'], 'segwit' ),
  424. ( ['3057f66ddd26fa6ef826b0d5ca067ec3e8f3c178'], btc_addr6, ['--type=bech32'], 'bech32' ),
  425. ],
  426. },
  427. 'addr2scriptpubkey': {
  428. 'btc_mainnet': [
  429. ( [ btc_addr5 ], '76a914118089d66b4a5853765e94923abdd5de4616c6e588ac' ),
  430. ( [ btc_addr7 ], 'a9148e34586186551f6320fa3eb2d238a9c61ab8264b87' ),
  431. ( [ btc_addr6 ], '00143057f66ddd26fa6ef826b0d5ca067ec3e8f3c178' ),
  432. ],
  433. },
  434. 'scriptpubkey2addr': {
  435. 'btc_mainnet': [
  436. ( ['76a914118089d66b4a5853765e94923abdd5de4616c6e588ac'], btc_addr5 ),
  437. ( ['a9148e34586186551f6320fa3eb2d238a9c61ab8264b87'], btc_addr7 ),
  438. ( ['00143057f66ddd26fa6ef826b0d5ca067ec3e8f3c178'], btc_addr6 ),
  439. ],
  440. },
  441. 'hex2wif': {
  442. 'btc_mainnet': [
  443. ( [ privhex7 ], btc_wif1, None, 'legacy' ),
  444. ( [ privhex7 ], btc_wif2, ['--type=compressed'], 'compressed' ),
  445. ( [ privhex7 ], btc_wif2, ['--type=segwit'], 'segwit' ),
  446. ( [ privhex7 ], btc_wif2, ['--type=bech32'], 'bech32' ),
  447. ],
  448. },
  449. 'privhex2addr': {
  450. 'btc_mainnet': [
  451. ( [ privhex7 ], btc_addr1, None, 'legacy' ),
  452. ( [ privhex7 ], btc_addr2, ['--type=compressed'], 'compressed' ),
  453. ( [ privhex7 ], btc_addr3, ['--type=segwit'], 'segwit' ),
  454. ( [ privhex7 ], btc_addr4, ['--type=bech32'], 'bech32' ),
  455. ],
  456. 'eth_mainnet': [
  457. ( [ privhex1 ], eth_addr1 ),
  458. ( [ privhex2 ], eth_addr2 ),
  459. ( [ privhex3 ], eth_addr3 ),
  460. ( [ privhex4 ], eth_addr4 ),
  461. ( [ privhex5 ], eth_addr5 ),
  462. ( [ privhex6 ], eth_addr6 ),
  463. ],
  464. 'xmr_mainnet': [
  465. ( [ privhex1 ], xmr_addr1 ),
  466. ( [ privhex2 ], xmr_addr2 ),
  467. ( [ privhex3 ], xmr_addr3 ),
  468. ( [ privhex4 ], xmr_addr4 ),
  469. ( [ privhex5 ], xmr_addr5 ),
  470. ( [ privhex6 ], xmr_addr6 ),
  471. ],
  472. 'zec_mainnet': [
  473. ( [ privhex1 ], zec_addr1, ['--type=zcash_z'], 'zcash_z' ),
  474. ( [ privhex2 ], zec_addr2, ['--type=zcash_z'], 'zcash_z' ),
  475. ( [ privhex3 ], zec_addr2, ['--type=zcash_z'], 'zcash_z' ),
  476. ( [ privhex4 ], zec_addr4, ['--type=zcash_z'], 'zcash_z' ),
  477. ( [ privhex5 ], zec_addr5, ['--type=zcash_z'], 'zcash_z' ),
  478. ( [ privhex6 ], zec_addr6, ['--type=zcash_z'], 'zcash_z' ),
  479. ],
  480. },
  481. 'privhex2pubhex': {
  482. 'btc_mainnet': [
  483. ( [ privhex7 ], btc_pubhex2, None, 'legacy' ),
  484. ( [ privhex7 ], btc_pubhex1, ['--type=compressed'], 'compressed' ),
  485. ( [ privhex7 ], btc_pubhex1, ['--type=segwit'], 'segwit' ),
  486. ( [ privhex7 ], btc_pubhex1, ['--type=bech32'], 'bech32' ),
  487. ],
  488. 'eth_mainnet': [
  489. ( [ privhex1 ], eth_pubhex1 ),
  490. ],
  491. 'xmr_mainnet': [
  492. ( [ privhex1 ], xmr_pubhex1 ),
  493. ],
  494. 'zec_mainnet': [
  495. ( [ privhex1 ], zec_pubhex1, ['--type=zcash_z'], 'zcash_z' ),
  496. ],
  497. },
  498. 'pubhex2addr': {
  499. 'btc_mainnet': [
  500. ( [ btc_pubhex2 ], btc_addr1, None, 'legacy' ),
  501. ( [ btc_pubhex1 ], btc_addr2, ['--type=compressed'], 'compressed' ),
  502. ( [ btc_pubhex1 ], btc_addr3, ['--type=segwit'], 'segwit' ),
  503. ( [ btc_pubhex1 ], btc_addr4, ['--type=bech32'], 'bech32' ),
  504. ],
  505. 'eth_mainnet': [
  506. ( [ eth_pubhex1 ], eth_addr1 ),
  507. ( [ eth_pubhex2 ], eth_addr2 ),
  508. ],
  509. 'xmr_mainnet': [
  510. ( [ xmr_pubhex1 ], xmr_addr1 ),
  511. ],
  512. 'zec_mainnet': [
  513. ( [ zec_pubhex1 ], zec_addr1, ['--type=zcash_z'], 'zcash_z' ),
  514. ],
  515. },
  516. 'pubhex2redeem_script': {
  517. 'btc_mainnet': [
  518. ( [ btc_pubhex1 ], redeem_script1, ['--type=segwit'], 'segwit' ),
  519. ],
  520. },
  521. 'redeem_script2addr': {
  522. 'btc_mainnet': [
  523. ( [ redeem_script1 ], btc_addr3, ['--type=segwit'], 'segwit' ),
  524. ],
  525. },
  526. 'randpair': {
  527. 'btc_mainnet': [ ( [], [is_wif_loc,is_coin_addr_loc], ['-r0'] ) ],
  528. 'btc_testnet': [ ( [], [is_wif_loc,is_coin_addr_loc], ['-r0'] ) ],
  529. },
  530. 'randwif': {
  531. 'btc_mainnet': [ ( [], is_wif_loc, ['-r0'] ) ],
  532. 'btc_testnet': [ ( [], is_wif_loc, ['-r0'] ) ],
  533. },
  534. 'wif2addr': {
  535. 'btc_mainnet': [
  536. ( [ btc_wif1 ], btc_addr1, ['--type=legacy'], 'legacy' ),
  537. ( [ btc_wif2 ], btc_addr2, ['--type=compressed'], 'compressed' ),
  538. ( [ btc_wif2 ], btc_addr3, ['--type=segwit'], 'segwit' ),
  539. ( [ btc_wif2 ], btc_addr4, ['--type=bech32'], 'bech32' ),
  540. ],
  541. 'eth_mainnet': [
  542. ( [ privhex1 ], eth_addr1 ),
  543. ( ['000000000000000000000000000000014551231950b75fc4402da1732fc9bebe'], eth_addr2 ),
  544. ( [ privhex3 ], eth_addr3 ),
  545. ( [ privhex4 ], eth_addr4 ),
  546. ( ['000000000000000000000000000000014551231950b75fc4402da1732fc9bdce'], eth_addr5 ),
  547. ( [ privhex6 ], eth_addr6 ),
  548. ],
  549. 'xmr_mainnet': [
  550. ( [ privhex1 ], xmr_addr1 ),
  551. ( ['1c95988d7431ecd670cf7d73f45befc6feffffffffffffffffffffffffffff0f'], xmr_addr2 ),
  552. ( ['2c94988d7431ecd670cf7d73f45befc6feffffffffffffffffffffffffffff0f'], xmr_addr3 ),
  553. ( ['1d95988d7431ecd670cf7d73f45befc6feffffffffffffffffffffffffffff0e'], xmr_addr4 ),
  554. ( [ privhex5 ], xmr_addr5 ),
  555. ( ['e8164dda6d42bd1e261a3406b2038dcbddadbeefdeadbeefdeadbeefdeadbe0f'], xmr_addr6 ),
  556. ],
  557. 'zec_mainnet': [
  558. ( ['SKxny894fJe2rmZjeuoE6GVfNkWoXfPp8337VrLLNWG56FjqVUYR'],
  559. zec_addr1, ['--type=zcash_z'], 'zcash_z' ),
  560. ( ['SKxv1peuQvMT4TvqPLqKy1px3oqLm98Evi948VU8N8VKcf7C2umc'],
  561. zec_addr2, ['--type=zcash_z'], 'zcash_z' ),
  562. ( ['SKxny894fJe2rmZjeuoE6GVfNkWoXfPp8337VrLLNWG56kQw4qjm'],
  563. zec_addr4, ['--type=zcash_z'], 'zcash_z' ),
  564. ( ['SKxv1peuQvMT4TvqPLqKy1px3oqLm98Evi948VU8N8VKcBwrLwiu'],
  565. zec_addr5, ['--type=zcash_z'], 'zcash_z' ),
  566. ( ['SKxuS56e99jpCeD9mMQ5o63zoGPakNdM9HCvt4Vt2cypvRjCdvGJ'],
  567. zec_addr6, ['--type=zcash_z'], 'zcash_z' ),
  568. ],
  569. },
  570. 'wif2hex': {
  571. 'btc_mainnet': [
  572. ( [ btc_wif1 ], privhex7, None, 'legacy' ),
  573. ( [ btc_wif2 ], privhex7, ['--type=compressed'], 'compressed' ),
  574. ( [ btc_wif2 ], privhex7, ['--type=segwit'], 'segwit' ),
  575. ( [ btc_wif2 ], privhex7, ['--type=bech32'], 'bech32' ),
  576. ],
  577. },
  578. 'wif2redeem_script': {
  579. 'btc_mainnet': [
  580. ( [ btc_wif2 ], redeem_script1, ['--type=segwit'], 'segwit' ),
  581. ],
  582. },
  583. 'wif2segwit_pair': {
  584. 'btc_mainnet': [
  585. ( [ btc_wif2 ], (redeem_script1, btc_addr3), ['--type=segwit'], 'segwit' ),
  586. ],
  587. },
  588. },
  589. # TODO: compressed address files are missing
  590. # 'addrfile_compressed_chk':
  591. # 'btc': ('A33C 4FDE F515 F5BC','6C48 AA57 2056 C8C8'),
  592. # 'ltc': ('3FC0 8F03 C2D6 BD19','4C0A 49B6 2DD1 1BE0'),
  593. 'File': {
  594. 'addrfile_chksum': {
  595. 'btc_mainnet': [
  596. ( ['test/ref/98831F3A[1,31-33,500-501,1010-1011].addrs'],
  597. '6FEF 6FB9 7B13 5D91'),
  598. ( ['test/ref/98831F3A-S[1,31-33,500-501,1010-1011].addrs'],
  599. '06C1 9C87 F25C 4EE6'),
  600. ( ['test/ref/98831F3A-B[1,31-33,500-501,1010-1011].addrs'],
  601. '9D2A D4B6 5117 F02E'),
  602. ],
  603. 'btc_testnet': [
  604. ( ['test/ref/98831F3A[1,31-33,500-501,1010-1011].testnet.addrs'],
  605. '424E 4326 CFFE 5F51'),
  606. ( ['test/ref/98831F3A-S[1,31-33,500-501,1010-1011].testnet.addrs'],
  607. '072C 8B07 2730 CB7A'),
  608. ( ['test/ref/98831F3A-B[1,31-33,500-501,1010-1011].testnet.addrs'],
  609. '0527 9C39 6C1B E39A'),
  610. ],
  611. 'ltc_mainnet': [
  612. ( ['test/ref/litecoin/98831F3A-LTC[1,31-33,500-501,1010-1011].addrs'],
  613. 'AD52 C3FE 8924 AAF0'),
  614. ( ['test/ref/litecoin/98831F3A-LTC-S[1,31-33,500-501,1010-1011].addrs'],
  615. '63DF E42A 0827 21C3'),
  616. ( ['test/ref/litecoin/98831F3A-LTC-B[1,31-33,500-501,1010-1011].addrs'],
  617. 'FF1C 7939 5967 AB82'),
  618. ],
  619. 'ltc_testnet': [
  620. ( ['test/ref/litecoin/98831F3A-LTC[1,31-33,500-501,1010-1011].testnet.addrs'],
  621. '4EBE 2E85 E969 1B30'),
  622. ( ['test/ref/litecoin/98831F3A-LTC-S[1,31-33,500-501,1010-1011].testnet.addrs'],
  623. '5DD1 D186 DBE1 59F2'),
  624. ( ['test/ref/litecoin/98831F3A-LTC-B[1,31-33,500-501,1010-1011].testnet.addrs'],
  625. 'ED3D 8AA4 BED4 0B40'),
  626. ],
  627. 'zec_mainnet': [
  628. ( ['test/ref/zcash/98831F3A-ZEC-C[1,31-33,500-501,1010-1011].addrs'],'903E 7225 DD86 6E01'),
  629. ( ['test/ref/zcash/98831F3A-ZEC-Z[1,31-33,500-501,1010-1011].addrs'], '9C7A 72DC 3D4A B3AF',
  630. ['--type=zcash_z'], 'zcash_z' ),
  631. ],
  632. 'xmr_mainnet': [
  633. ( ['test/ref/monero/98831F3A-XMR-M[1,31-33,500-501,1010-1011].addrs'],'4369 0253 AC2C 0E38'), ],
  634. 'dash_mainnet': [
  635. ( ['test/ref/dash/98831F3A-DASH-C[1,31-33,500-501,1010-1011].addrs'],'FBC1 6B6A 0988 4403'), ],
  636. 'eth_mainnet': [
  637. ( ['test/ref/ethereum/98831F3A-ETH[1,31-33,500-501,1010-1011].addrs'],'E554 076E 7AF6 66A3'), ],
  638. 'etc_mainnet': [
  639. ( ['test/ref/ethereum_classic/98831F3A-ETC[1,31-33,500-501,1010-1011].addrs'],
  640. 'E97A D796 B495 E8BC'), ],
  641. },
  642. 'keyaddrfile_chksum': {
  643. 'btc_mainnet': [
  644. ( ['test/ref/98831F3A[1,31-33,500-501,1010-1011].akeys.mmenc'],
  645. '9F2D D781 1812 8BAD', kafile_opts ),
  646. ],
  647. 'btc_testnet': [
  648. ( ['test/ref/98831F3A[1,31-33,500-501,1010-1011].testnet.akeys.mmenc'],
  649. '88CC 5120 9A91 22C2', kafile_opts ),
  650. ],
  651. 'ltc_mainnet': [
  652. ( ['test/ref/litecoin/98831F3A-LTC[1,31-33,500-501,1010-1011].akeys.mmenc'],
  653. 'B804 978A 8796 3ED4', kafile_opts ),
  654. ],
  655. 'ltc_testnet': [
  656. ( ['test/ref/litecoin/98831F3A-LTC[1,31-33,500-501,1010-1011].testnet.akeys.mmenc'],
  657. '98B5 AC35 F334 0398', kafile_opts ),
  658. ],
  659. 'zec_mainnet': [
  660. ( ['test/ref/zcash/98831F3A-ZEC-C[1,31-33,500-501,1010-1011].akeys.mmenc'],
  661. 'F05A 5A5C 0C8E 2617', kafile_opts ),
  662. ( ['test/ref/zcash/98831F3A-ZEC-Z[1,31-33,500-501,1010-1011].akeys.mmenc'], '6B87 9B2D 0D8D 8D1E',
  663. kafile_opts + ['--type=zcash_z'], 'zcash_z' ),
  664. ],
  665. 'xmr_mainnet': [
  666. ( ['test/ref/monero/98831F3A-XMR-M[1,31-33,500-501,1010-1011].akeys.mmenc'],
  667. 'E0D7 9612 3D67 404A', kafile_opts ), ],
  668. 'dash_mainnet': [
  669. ( ['test/ref/dash/98831F3A-DASH-C[1,31-33,500-501,1010-1011].akeys.mmenc'],
  670. 'E83D 2C63 FEA2 4142', kafile_opts ), ],
  671. 'eth_mainnet': [
  672. ( ['test/ref/ethereum/98831F3A-ETH[1,31-33,500-501,1010-1011].akeys.mmenc'],
  673. 'E400 70D9 0AE3 C7C2', kafile_opts ), ],
  674. 'etc_mainnet': [
  675. ( ['test/ref/ethereum_classic/98831F3A-ETC[1,31-33,500-501,1010-1011].akeys.mmenc'],
  676. 'EF49 967D BD6C FE45', kafile_opts ), ],
  677. },
  678. 'passwdfile_chksum': {
  679. 'btc_mainnet': [
  680. ( ['test/ref/98831F3A-фубар@crypto.org-b58-20[1,4,1100].pws'],
  681. 'DDD9 44B0 CA28 183F', kafile_opts ), ],
  682. },
  683. 'txview': {
  684. 'btc_mainnet': [ ( ['test/ref/0B8D5A[15.31789,14,tl=1320969600].rawtx'], None ), ],
  685. 'btc_testnet': [ ( ['test/ref/0C7115[15.86255,14,tl=1320969600].testnet.rawtx'], None ), ],
  686. 'bch_mainnet': [ ( ['test/ref/460D4D-BCH[10.19764,tl=1320969600].rawtx'], None ), ],
  687. 'bch_testnet': [ ( ['test/ref/359FD5-BCH[6.68868,tl=1320969600].testnet.rawtx'], None ), ],
  688. 'ltc_mainnet': [ ( ['test/ref/litecoin/AF3CDF-LTC[620.76194,1453,tl=1320969600].rawtx'], None ), ],
  689. 'ltc_testnet': [ ( ['test/ref/litecoin/A5A1E0-LTC[1454.64322,1453,tl=1320969600].testnet.rawtx'],
  690. None ), ],
  691. 'eth_mainnet': [ ( ['test/ref/ethereum/88FEFD-ETH[23.45495,40000].rawtx'], None ), ],
  692. 'eth_testnet': [ ( [
  693. 'test/ref/ethereum/B472BD-ETH[23.45495,40000].testnet.rawtx',
  694. 'test/ref/ethereum/B472BD-ETH[23.45495,40000].testnet.sigtx'
  695. ], None ), ],
  696. 'mm1_mainnet': [ ( ['test/ref/ethereum/5881D2-MM1[1.23456,50000].rawtx'], None ), ],
  697. 'mm1_testnet': [ ( ['test/ref/ethereum/6BDB25-MM1[1.23456,50000].testnet.rawtx'], None ), ],
  698. 'etc_mainnet': [ ( ['test/ref/ethereum_classic/ED3848-ETC[1.2345,40000].rawtx'], None ), ],
  699. },
  700. },
  701. }
  702. coin_dependent_groups = ('Coin','File')
  703. def fork_cmd(cmd_name,args,out,opts,stdin_input):
  704. cmd = (
  705. tool_cmd_preargs +
  706. tool_cmd +
  707. (opts or []) +
  708. [cmd_name] + args
  709. )
  710. vmsg('{} {}'.format(
  711. green('Executing'),
  712. cyan(' '.join(cmd)) ))
  713. cp = run(cmd,input=stdin_input or None,stdout=PIPE,stderr=PIPE)
  714. try:
  715. cmd_out = cp.stdout.decode()
  716. except:
  717. cmd_out = cp.stdout
  718. if cp.stderr:
  719. vmsg(cp.stderr.strip().decode())
  720. if cp.returncode != 0:
  721. import re
  722. m = re.search(b'tool command returned (None|False)',cp.stdout)
  723. if m:
  724. return { b'None': None, b'False': False }[m.group(1)]
  725. else:
  726. die(2,f'Spawned program exited with error: {cp.stderr}')
  727. return cmd_out.strip()
  728. async def call_method(cls,method,cmd_name,args,out,opts,mmtype,stdin_input):
  729. vmsg('{}: {}{}'.format(purple('Running'),
  730. ' '.join([cmd_name]+[repr(e) for e in args]),
  731. ' '+mmtype if mmtype else '' ))
  732. aargs,kwargs = main_tool.process_args(cmd_name,args,cls)
  733. oq_save = bool(opt.quiet)
  734. if not opt.verbose:
  735. opt.quiet = True
  736. if stdin_input:
  737. fd0,fd1 = os.pipe()
  738. if os.fork(): # parent
  739. os.close(fd1)
  740. stdin_save = os.dup(0)
  741. os.dup2(fd0,0)
  742. cmd_out = method(*aargs,**kwargs)
  743. os.dup2(stdin_save,0)
  744. os.wait()
  745. opt.quiet = oq_save
  746. return cmd_out
  747. else: # child
  748. os.close(fd0)
  749. os.write(fd1,stdin_input)
  750. vmsg(f'Input: {stdin_input!r}')
  751. sys.exit(0)
  752. else:
  753. ret = method(*aargs,**kwargs)
  754. if type(ret).__name__ == 'coroutine':
  755. ret = await ret
  756. opt.quiet = oq_save
  757. return ret
  758. def tool_api(cls,cmd_name,args,out,opts):
  759. from mmgen.tool.api import tool_api
  760. tool = tool_api()
  761. if opts:
  762. for o in opts:
  763. if o.startswith('--type='):
  764. tool.addrtype = o.split('=')[1]
  765. pargs,kwargs = main_tool.process_args(cmd_name,args,cls)
  766. return getattr(tool,cmd_name)(*pargs,**kwargs)
  767. def check_output(out,chk):
  768. if isinstance(chk,str):
  769. chk = chk.encode()
  770. if isinstance(out,int):
  771. out = str(out).encode()
  772. if isinstance(out,str):
  773. out = out.encode()
  774. err_fs = "Output ({!r}) doesn't match expected output ({!r})"
  775. try: outd = out.decode()
  776. except: outd = None
  777. if type(chk).__name__ == 'function':
  778. assert chk(outd), f'{chk.__name__}({outd}) failed!'
  779. elif type(chk) == dict:
  780. for k,v in chk.items():
  781. if k == 'boolfunc':
  782. assert v(outd), f'{v.__name__}({outd}) failed!'
  783. elif k == 'value':
  784. assert outd == v, err_fs.format(outd,v)
  785. else:
  786. outval = getattr(__builtins__,k)(out)
  787. if outval != v:
  788. die(1,f'{k}({out}) returned {outval}, not {v}!')
  789. elif chk is not None:
  790. assert out == chk, err_fs.format(out,chk)
  791. async def run_test(cls,gid,cmd_name):
  792. data = tests[gid][cmd_name]
  793. # behavior is like test.py: run coin-dependent tests only if proto.testnet or proto.coin != BTC
  794. if gid in coin_dependent_groups:
  795. k = '{}_{}'.format(
  796. ( g.token.lower() if proto.tokensym else proto.coin.lower() ),
  797. ('mainnet','testnet')[proto.testnet] )
  798. if k in data:
  799. data = data[k]
  800. m2 = f' ({k})'
  801. else:
  802. qmsg(f'-- no data for {cmd_name} ({k}) - skipping')
  803. return
  804. else:
  805. if proto.coin != 'BTC' or proto.testnet:
  806. return
  807. m2 = ''
  808. m = '{} {}{}'.format(
  809. purple('Testing'),
  810. cmd_name if opt.names else docstring_head(getattr(cls,cmd_name)),
  811. m2 )
  812. msg_r(green(m)+'\n' if opt.verbose else m)
  813. for d in data:
  814. args,out,opts,mmtype = d + tuple([None] * (4-len(d)))
  815. stdin_input = None
  816. if args and type(args[0]) == bytes:
  817. stdin_input = args[0]
  818. args[0] = '-'
  819. if opt.tool_api:
  820. if args and args[0 ]== '-':
  821. continue
  822. cmd_out = tool_api(cls,cmd_name,args,out,opts)
  823. elif opt.fork:
  824. cmd_out = fork_cmd(cmd_name,args,out,opts,stdin_input)
  825. else:
  826. if stdin_input and g.platform == 'win':
  827. msg('Skipping for MSWin - no os.fork()')
  828. continue
  829. method = getattr(cls(cmdname=cmd_name,proto=proto,mmtype=mmtype),cmd_name)
  830. cmd_out = await call_method(cls,method,cmd_name,args,out,opts,mmtype,stdin_input)
  831. try:
  832. vmsg(f'Output:\n{cmd_out}\n')
  833. except:
  834. vmsg(f'Output:\n{cmd_out!r}\n')
  835. if type(out) == tuple and type(out[0]).__name__ == 'function':
  836. func_out = out[0](cmd_out)
  837. assert func_out == out[1],(
  838. '{}({}) == {} failed!\nOutput: {}'.format(
  839. out[0].__name__,
  840. cmd_out,
  841. out[1],
  842. func_out ))
  843. elif isinstance(out,(list,tuple)):
  844. for co,o in zip(cmd_out.split(NL) if opt.fork else cmd_out,out):
  845. check_output(co,o)
  846. else:
  847. check_output(cmd_out,out)
  848. if not opt.verbose:
  849. msg_r('.')
  850. if not opt.verbose:
  851. msg('OK')
  852. def docstring_head(obj):
  853. return obj.__doc__.strip().split('\n')[0] if obj.__doc__ else None
  854. async def do_group(gid):
  855. desc = f'command group {gid!r}'
  856. cls = main_tool.get_mod_cls(gid.lower())
  857. qmsg(blue('Testing ' +
  858. desc if opt.names else
  859. ( docstring_head(cls) or desc )
  860. ))
  861. for cmdname in cls().user_commands:
  862. if cmdname in skipped_tests:
  863. continue
  864. if cmdname not in tests[gid]:
  865. m = f'No test for command {cmdname!r} in group {gid!r}!'
  866. if opt.die_on_missing:
  867. die(1,m+' Aborting')
  868. else:
  869. msg(m)
  870. continue
  871. await run_test(cls,gid,cmdname)
  872. async def do_cmd_in_group(cmdname):
  873. cls = main_tool.get_cmd_cls(cmdname)
  874. for gid,cmds in tests.items():
  875. for cmd in cmds:
  876. if cmd == cmdname:
  877. await run_test(cls,gid,cmdname)
  878. return True
  879. return False
  880. def list_tested_cmds():
  881. for gid in tests:
  882. Msg('\n'.join(tests[gid]))
  883. sys.argv = [sys.argv[0]] + ['--skip-cfg-file'] + sys.argv[1:]
  884. cmd_args = opts.init(
  885. opts_data,
  886. init_opts = {
  887. 'usr_randchars': 0,
  888. 'hash_preset': '1',
  889. 'passwd_file': 'test/ref/keyaddrfile_password',
  890. })
  891. from mmgen.protocol import init_proto_from_opts
  892. proto = init_proto_from_opts(need_amt=True)
  893. if opt.tool_api:
  894. del tests['Wallet']
  895. del tests['File']
  896. import mmgen.main_tool as main_tool
  897. if opt.list_tests:
  898. Msg('Available tests:')
  899. for modname,cmdlist in main_tool.mods.items():
  900. cls = getattr(importlib.import_module(f'mmgen.tool.{modname}'),'tool_cmd')
  901. Msg(' {:6} - {}'.format( modname, docstring_head(cls) ))
  902. sys.exit(0)
  903. if opt.list_tested_cmds:
  904. list_tested_cmds()
  905. sys.exit(0)
  906. if opt.system:
  907. tool_exec = 'mmgen-tool'
  908. sys.path.pop(0)
  909. else:
  910. os.environ['PYTHONPATH'] = repo_root
  911. tool_exec = os.path.relpath(os.path.join('cmds','mmgen-tool'))
  912. if opt.fork:
  913. passthru_args = ['coin','type','testnet','token']
  914. tool_cmd = [ tool_exec, '--skip-cfg-file' ] + [
  915. '--{}{}'.format(
  916. k.replace('_','-'),
  917. '='+getattr(opt,k) if getattr(opt,k) != True else '')
  918. for k in passthru_args if getattr(opt,k) ]
  919. if opt.coverage:
  920. d,f = init_coverage()
  921. tool_cmd_preargs = ['python3','-m','trace','--count','--coverdir='+d,'--file='+f]
  922. else:
  923. tool_cmd_preargs = ['python3','scripts/exec_wrapper.py']
  924. start_time = int(time.time())
  925. async def main():
  926. try:
  927. if cmd_args:
  928. for cmd in cmd_args:
  929. if cmd in tests:
  930. await do_group(cmd)
  931. else:
  932. if not await do_cmd_in_group(cmd):
  933. die(1,f'{cmd!r}: not a recognized test or test group')
  934. else:
  935. for garg in tests:
  936. await do_group(garg)
  937. except KeyboardInterrupt:
  938. die(1,green('\nExiting at user request'))
  939. run_session(main())
  940. end_msg(int(time.time()) - start_time)