cfg.sh 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. #!/bin/bash
  2. #
  3. # mmgen = Multi-Mode GENerator, a command-line cryptocurrency wallet
  4. # Copyright (C)2013-2024 The MMGen Project <mmgen@tuta.io>
  5. # Licensed under the GNU General Public License, Version 3:
  6. # https://www.gnu.org/licenses
  7. # Public project repositories:
  8. # https://github.com/mmgen/mmgen-wallet
  9. # https://gitlab.com/mmgen/mmgen-wallet
  10. all_tests="dep dev lint obj color unit hash ref altref altgen xmr eth autosign btc btc_tn btc_rt bch bch_tn bch_rt ltc ltc_tn ltc_rt tool tool2 gen alt"
  11. groups_desc="
  12. default - All tests minus the extra tests
  13. extra - All tests minus the default tests
  14. noalt - BTC-only tests
  15. quick - Default tests minus btc_tn, bch, bch_rt, ltc and ltc_rt
  16. qskip - The tests skipped in the 'quick' test group
  17. "
  18. init_groups() {
  19. dfl_tests='dep alt obj color unit hash ref tool tool2 gen autosign btc btc_tn btc_rt altref altgen bch bch_rt ltc ltc_rt eth xmr'
  20. extra_tests='dep dev lint autosign_btc autosign_live ltc_tn bch_tn'
  21. noalt_tests='dep alt obj color unit hash ref tool tool2 gen autosign_btc btc btc_tn btc_rt'
  22. quick_tests='dep alt obj color unit hash ref tool tool2 gen autosign btc btc_rt altref altgen eth xmr'
  23. qskip_tests='lint btc_tn bch bch_rt ltc ltc_rt'
  24. [ "$MSYS2" ] && SKIP_LIST='autosign autosign_btc autosign_live'
  25. true
  26. }
  27. init_tests() {
  28. REFDIR='test/ref'
  29. d_alt="altcoin module"
  30. t_alt="
  31. - python3 -m test.altcointest $altcoin_mod_opts
  32. "
  33. d_obj="data objects"
  34. t_obj="
  35. - $objtest_py --coin=btc
  36. - $objtest_py --getobj --coin=btc
  37. - $objtest_py --coin=btc --testnet=1
  38. a $objtest_py --coin=ltc
  39. a $objtest_py --coin=ltc --testnet=1
  40. a $objtest_py --coin=eth
  41. - $objattrtest_py
  42. "
  43. [ "$SKIP_ALT_DEP" ] && t_obj_skip='a'
  44. [ "$PYTHONOPTIMIZE" ] && {
  45. echo -e "${YELLOW}PYTHONOPTIMIZE set, skipping object tests$RESET"
  46. t_obj_skip='-'
  47. }
  48. d_color="color handling"
  49. t_color='- test/colortest.py'
  50. d_dep="system and testing dependencies"
  51. t_dep="- $unit_tests_py testdep dep daemon.exec"
  52. d_dev="developer scripts ${YELLOW}(additional dependencies required)$RESET"
  53. t_dev="
  54. - $cmdtest_py dev
  55. "
  56. d_lint="code errors with static code analyzer"
  57. t_lint="
  58. - $pylint --errors-only mmgen
  59. - $pylint --errors-only test
  60. - $pylint --errors-only examples
  61. - $pylint --errors-only --disable=relative-beyond-top-level test/cmdtest_py_d
  62. "
  63. d_unit="low-level subsystems"
  64. t_unit="- $unit_tests_py --exclude testdep,dep,daemon"
  65. d_hash="internal hash function implementations"
  66. t_hash="
  67. 256 $python test/hashfunc.py sha256 $rounds5x
  68. 512 $python test/hashfunc.py sha512 $rounds5x # native SHA512 - not used by the MMGen wallet
  69. keccak $python test/hashfunc.py keccak $rounds5x
  70. ripemd160 $python mmgen/contrib/ripemd160.py $VERBOSE $fast_opt
  71. "
  72. [ "$ARM32" ] && t_hash_skip='512' # gmpy produces invalid init constants
  73. [ "$MSYS2" ] && t_hash_skip='512' # 2:py_long_long issues
  74. [ "$SKIP_ALT_DEP" ] && t_hash_skip+=' keccak'
  75. d_ref="generated values against reference data"
  76. t_ref="
  77. - $scrambletest_py
  78. "
  79. d_altref="altcoin reference file checks"
  80. t_altref="
  81. - $cmdtest_py ref_altcoin # generated addrfiles verified against checksums
  82. "
  83. d_altgen="altcoin address generation"
  84. t_altgen="
  85. - # speed tests, no verification:
  86. - $gentest_py --coin=etc 1 $rounds10x
  87. - $gentest_py --coin=etc --use-internal-keccak-module 1 $rounds10x
  88. - $gentest_py --coin=eth 1 $rounds10x
  89. - $gentest_py --coin=eth --use-internal-keccak-module 1 $rounds10x
  90. - $gentest_py --coin=xmr 1 $rounds10x
  91. - $gentest_py --coin=xmr --use-internal-keccak-module 1 $rounds10x
  92. - $gentest_py --coin=zec 1 $rounds10x
  93. - $gentest_py --coin=zec --type=zcash_z 1 $rounds10x
  94. - # verification against external libraries and tools:
  95. - # pycoin
  96. - $gentest_py --all-coins --type=legacy 1:pycoin $rounds
  97. - $gentest_py --all-coins --type=compressed 1:pycoin $rounds
  98. - $gentest_py --all-coins --type=segwit 1:pycoin $rounds
  99. - $gentest_py --all-coins --type=bech32 1:pycoin $rounds
  100. - $gentest_py --all-coins --type=legacy --testnet=1 1:pycoin $rounds
  101. - $gentest_py --all-coins --type=compressed --testnet=1 1:pycoin $rounds
  102. - $gentest_py --all-coins --type=segwit --testnet=1 1:pycoin $rounds
  103. - $gentest_py --all-coins --type=bech32 --testnet=1 1:pycoin $rounds
  104. - # keyconv
  105. - $gentest_py --all-coins --type=legacy 1:keyconv $rounds_min
  106. - $gentest_py --all-coins --type=compressed 1:keyconv $rounds_min
  107. e # ethkey
  108. e $gentest_py --coin=eth 1:ethkey $rounds10x
  109. e $gentest_py --coin=eth --use-internal-keccak-module 2:ethkey $rounds5x
  110. m # monero-python
  111. m $gentest_py --coin=xmr 1:monero-python $rounds100x
  112. M $gentest_py --coin=xmr all:monero-python $rounds_min # very slow, please be patient!
  113. z # zcash-mini
  114. z $gentest_py --coin=zec --type=zcash_z all:zcash-mini $rounds50x
  115. "
  116. [ "$MSYS2" ] && t_altgen_skip='z' # no zcash-mini (golang)
  117. [ "$ARM32" ] && t_altgen_skip='z e'
  118. [ "$FAST" ] && t_altgen_skip+=' M'
  119. # ARM ethkey available only on Arch Linux:
  120. [ \( "$ARM32" -o "$ARM64" \) -a "$DISTRO" != 'archarm' ] && t_altgen_skip+=' e'
  121. d_xmr="Monero xmrwallet operations"
  122. t_xmr="
  123. - $cmdtest_py --coin=xmr
  124. "
  125. d_eth="operations for Ethereum and Ethereum Classic using devnet"
  126. t_eth="
  127. geth $cmdtest_py --coin=eth ethdev
  128. parity $cmdtest_py --coin=etc ethdev
  129. "
  130. [ "$ARM32" -o "$ARM64" ] && t_eth_skip+=' parity'
  131. d_autosign="transaction and message autosigning"
  132. t_autosign="- $cmdtest_py autosign"
  133. d_autosign_btc="transaction and message autosigning (Bitcoin only)"
  134. t_autosign_btc="- $cmdtest_py autosign_btc"
  135. d_autosign_btc="transaction and message autosigning (interactive)"
  136. t_autosign_live="- $cmdtest_py autosign_live"
  137. d_btc="overall operations with emulated RPC data (Bitcoin)"
  138. t_btc="
  139. - $cmdtest_py --exclude regtest,autosign,ref_altcoin
  140. - $cmdtest_py --segwit
  141. - $cmdtest_py --segwit-random
  142. - $cmdtest_py --bech32
  143. "
  144. d_btc_tn="overall operations with emulated RPC data (Bitcoin testnet)"
  145. t_btc_tn="
  146. - $cmdtest_py --testnet=1
  147. - $cmdtest_py --testnet=1 --segwit
  148. - $cmdtest_py --testnet=1 --segwit-random
  149. - $cmdtest_py --testnet=1 --bech32
  150. "
  151. d_btc_rt="overall operations using the regtest network (Bitcoin)"
  152. t_btc_rt="- $cmdtest_py regtest"
  153. d_bch="overall operations with emulated RPC data (Bitcoin Cash Node)"
  154. t_bch="- $cmdtest_py --coin=bch --exclude regtest"
  155. d_bch_tn="overall operations with emulated RPC data (Bitcoin Cash Node testnet)"
  156. t_bch_tn="- $cmdtest_py --coin=bch --testnet=1 --exclude regtest"
  157. d_bch_rt="overall operations using the regtest network (Bitcoin Cash Node)"
  158. t_bch_rt="- $cmdtest_py --coin=bch regtest"
  159. d_ltc="overall operations with emulated RPC data (Litecoin)"
  160. t_ltc="
  161. - $cmdtest_py --coin=ltc --exclude regtest
  162. - $cmdtest_py --coin=ltc --segwit
  163. - $cmdtest_py --coin=ltc --segwit-random
  164. - $cmdtest_py --coin=ltc --bech32
  165. "
  166. d_ltc_tn="overall operations with emulated RPC data (Litecoin testnet)"
  167. t_ltc_tn="
  168. - $cmdtest_py --coin=ltc --testnet=1 --exclude regtest
  169. - $cmdtest_py --coin=ltc --testnet=1 --segwit
  170. - $cmdtest_py --coin=ltc --testnet=1 --segwit-random
  171. - $cmdtest_py --coin=ltc --testnet=1 --bech32
  172. "
  173. d_ltc_rt="overall operations using the regtest network (Litecoin)"
  174. t_ltc_rt="- $cmdtest_py --coin=ltc regtest"
  175. d_tool2="'mmgen-tool' utility with data check"
  176. t_tool2="
  177. - $tooltest2_py --tool-api # test the tool_api subsystem
  178. - $tooltest2_py --tool-api --testnet=1
  179. e $tooltest2_py --tool-api --coin=eth
  180. a $tooltest2_py --tool-api --coin=xmr
  181. a $tooltest2_py --tool-api --coin=zec
  182. - $tooltest2_py
  183. - $tooltest2_py --testnet=1
  184. a $tooltest2_py --coin=ltc
  185. a $tooltest2_py --coin=ltc --testnet=1
  186. a $tooltest2_py --coin=bch
  187. a $tooltest2_py --coin=bch --testnet=1
  188. a $tooltest2_py --coin=zec
  189. a $tooltest2_py --coin=xmr
  190. a $tooltest2_py --coin=dash
  191. e $tooltest2_py --coin=eth
  192. e $tooltest2_py --coin=eth --testnet=1
  193. e $tooltest2_py --coin=eth --token=mm1
  194. e $tooltest2_py --coin=eth --token=mm1 --testnet=1
  195. e $tooltest2_py --coin=etc
  196. - $tooltest2_py --fork # run once with --fork so commands are actually executed
  197. "
  198. [ "$SKIP_ALT_DEP" ] && t_tool2_skip='a e' # skip ETH,ETC: txview requires py_ecc
  199. d_tool="'mmgen-tool' utility (all supported coins)"
  200. t_tool="
  201. - $tooltest_py --coin=btc cryptocoin
  202. - $tooltest_py --coin=btc mnemonic
  203. a $tooltest_py --coin=ltc cryptocoin
  204. a $tooltest_py --coin=eth cryptocoin
  205. a $tooltest_py --coin=etc cryptocoin
  206. a $tooltest_py --coin=dash cryptocoin
  207. a $tooltest_py --coin=doge cryptocoin
  208. a $tooltest_py --coin=emc cryptocoin
  209. a $tooltest_py --coin=xmr cryptocoin
  210. a $tooltest_py --coin=zec cryptocoin
  211. z $tooltest_py --coin=zec --type=zcash_z cryptocoin
  212. "
  213. [ "$MSYS2" -o "$ARM32" ] && t_tool_skip='z'
  214. [ "$SKIP_ALT_DEP" ] && t_tool_skip='a z'
  215. d_gen="Bitcoin and Litecoin address generation"
  216. t_gen="
  217. - # speed tests, no verification:
  218. - $gentest_py --coin=btc 1 $rounds10x
  219. - $gentest_py --coin=btc --type=compressed 1 $rounds10x
  220. - $gentest_py --coin=btc --type=segwit 1 $rounds10x
  221. - $gentest_py --coin=btc --type=bech32 1 $rounds10x
  222. a $gentest_py --coin=ltc 1 $rounds10x
  223. a $gentest_py --coin=ltc --type=compressed 1 $rounds10x
  224. a $gentest_py --coin=ltc --type=segwit 1 $rounds10x
  225. a $gentest_py --coin=ltc --type=bech32 1 $rounds10x
  226. - # wallet dumps:
  227. - $gentest_py --type=compressed 1 $REFDIR/btcwallet.dump
  228. - $gentest_py --type=segwit 1 $REFDIR/btcwallet-segwit.dump
  229. - $gentest_py --type=bech32 1 $REFDIR/btcwallet-bech32.dump
  230. - $gentest_py --type=compressed --testnet=1 1 $REFDIR/btcwallet-testnet.dump
  231. a $gentest_py --coin=ltc --type=compressed 1 $REFDIR/litecoin/ltcwallet.dump
  232. a $gentest_py --coin=ltc --type=segwit 1 $REFDIR/litecoin/ltcwallet-segwit.dump
  233. a $gentest_py --coin=ltc --type=bech32 1 $REFDIR/litecoin/ltcwallet-bech32.dump
  234. a $gentest_py --coin=ltc --type=compressed --testnet=1 1 $REFDIR/litecoin/ltcwallet-testnet.dump
  235. - # libsecp256k1 vs python-ecdsa:
  236. - $gentest_py --type=legacy 1:2 $rounds100x
  237. - $gentest_py --type=compressed 1:2 $rounds100x
  238. - $gentest_py --type=segwit 1:2 $rounds100x
  239. - $gentest_py --type=bech32 1:2 $rounds100x
  240. - $gentest_py --testnet=1 1:2 $rounds100x
  241. - $gentest_py --testnet=1 --type=segwit 1:2 $rounds100x
  242. a $gentest_py --coin=ltc 1:2 $rounds100x
  243. a $gentest_py --coin=ltc --type=segwit 1:2 $rounds100x
  244. a $gentest_py --coin=ltc --testnet=1 1:2 $rounds100x
  245. a $gentest_py --coin=ltc --testnet=1 --type=segwit 1:2 $rounds100x
  246. - # all backends vs pycoin:
  247. - $gentest_py all:pycoin $rounds100x
  248. "
  249. [ "$SKIP_ALT_DEP" ] && t_gen_skip='a'
  250. true
  251. }