cfg.sh 10 KB

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