test-release.sh 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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
  9. # https://gitlab.com/mmgen/mmgen
  10. # Tested on Linux, Armbian, Raspbian, MSYS2
  11. # data.sh must implement:
  12. # list_avail_tests()
  13. # init_groups()
  14. # init_tests()
  15. . 'test/test-release.d/cfg.sh'
  16. do_test() {
  17. set +x
  18. tests="t_$1"
  19. skips="t_$1_skip"
  20. while read skip test; do
  21. [ "$test" ] || continue
  22. echo "${!skips}" | grep -q $skip && continue
  23. if [ "$LIST_CMDS" ]; then
  24. echo $test
  25. else
  26. test_disp=$YELLOW${test/\#/$RESET$MAGENTA\#}$RESET
  27. if [ "${test:0:1}" == '#' ]; then
  28. echo -e "$test_disp"
  29. else
  30. echo -e "${GREEN}Running:$RESET $test_disp"
  31. eval "$test" || {
  32. echo -e $RED"test-release.sh: test '$CUR_TEST' failed at command '$test'"$RESET
  33. exit 1
  34. }
  35. fi
  36. fi
  37. done <<<${!tests}
  38. }
  39. prompt_skip() {
  40. echo -n "Enter 's' to skip, or ENTER to continue: "; read -n1; echo
  41. [ "$REPLY" == 's' ] && return 0
  42. return 1
  43. }
  44. list_avail_tests() {
  45. echo "AVAILABLE TESTS:"
  46. init_tests
  47. for i in $all_tests; do
  48. z="d_$i"
  49. printf " %-8s - %s\n" $i "${!z}"
  50. done
  51. echo
  52. echo "AVAILABLE TEST GROUPS:"
  53. while read a b c; do
  54. [ "$a" ] && printf " %-8s - %s\n" $a "$c"
  55. done <<<$groups_desc
  56. echo
  57. echo "By default, all tests are run"
  58. }
  59. run_tests() {
  60. [ "$LIST_CMDS" ] || echo "Running tests: $1"
  61. for t in $1; do
  62. desc_id="d_$t" desc=${!desc_id}
  63. if [ "$SKIP_ALT_DEP" ]; then
  64. ok=$(for a in $noalt_tests; do if [ $t == $a ]; then echo 'ok'; fi; done)
  65. if [ ! "$ok" ]; then
  66. echo -e "${BLUE}Skipping altcoin test '$t'$RESET"
  67. continue
  68. fi
  69. fi
  70. if [ "$LIST_CMDS" ]; then
  71. echo -e "\n### $t: $desc"
  72. else
  73. echo -e "\n${BLUE}Testing:$RESET $GREEN$desc$RESET"
  74. fi
  75. [ "$PAUSE" ] && prompt_skip && continue
  76. CUR_TEST=$t
  77. do_test $t
  78. [ "$LIST_CMDS" ] || echo -e "${BLUE}Finished testing:$RESET $GREEN$desc$RESET"
  79. done
  80. }
  81. check_tests() {
  82. for i in $tests; do
  83. echo "$dfl_tests $extra_tests" | grep -q "\<$i\>" || {
  84. echo "$i: unrecognized argument"
  85. exit 1
  86. }
  87. done
  88. }
  89. remove_skipped_tests() {
  90. tests=$(for t in $tests; do
  91. [ "$(for s in $SKIP_LIST; do [ $t == $s ] && echo y; done)" ] && continue
  92. echo $t
  93. done)
  94. tests=$(echo $tests)
  95. }
  96. list_group_symbols() {
  97. echo -e "Default tests:\n $dfl_tests"
  98. echo -e "Extra tests:\n $extra_tests"
  99. echo -e "'noalt' test group:\n $noalt_tests"
  100. echo -e "'quick' test group:\n $quick_tests"
  101. echo -e "'qskip' test group:\n $qskip_tests"
  102. }
  103. if [ "$(uname -m)" == 'armv7l' ]; then
  104. ARM32=1
  105. elif [ "$(uname -m)" == 'aarch64' ]; then
  106. ARM64=1
  107. elif [ "$MSYSTEM" ] && uname -a | grep -qi 'msys'; then
  108. MSYS2=1;
  109. fi
  110. if [ "$MSYS2" ]; then
  111. DISTRO='MSYS2'
  112. else
  113. DISTRO=$(grep '^ID=' '/etc/os-release' | cut -c 4-)
  114. [ "$DISTRO" ] || { echo 'Unable to determine distro. Aborting'; exit 1; }
  115. fi
  116. trap 'echo -e "${GREEN}Exiting at user request$RESET"; exit' INT
  117. umask 0022
  118. cmdtest_py='test/cmdtest.py -n'
  119. objtest_py='test/objtest.py'
  120. objattrtest_py='test/objattrtest.py'
  121. unit_tests_py='test/unit_tests.py --names --quiet'
  122. tooltest_py='test/tooltest.py'
  123. tooltest2_py='test/tooltest2.py --names --quiet'
  124. gentest_py='test/gentest.py --quiet'
  125. scrambletest_py='test/scrambletest.py'
  126. altcoin_mod_opts='--quiet'
  127. mmgen_tool='cmds/mmgen-tool'
  128. pylint='PYTHONPATH=. pylint' # PYTHONPATH required by older Pythons (e.g. v3.9)
  129. python='python3'
  130. rounds=10
  131. ORIG_ARGS=$@
  132. PROGNAME=$(basename $0)
  133. init_groups
  134. while getopts hAbCdDfFLlNOps:StvV OPT
  135. do
  136. case "$OPT" in
  137. h) printf " %-16s Test MMGen release\n" "${PROGNAME}:"
  138. echo " USAGE: $PROGNAME [options] [tests or test group]"
  139. echo " OPTIONS: -h Print this help message"
  140. echo " -A Skip tests requiring altcoin modules or daemons"
  141. echo " -b Buffer keypresses for all invocations of 'test/cmdtest.py'"
  142. echo " -C Run tests in coverage mode"
  143. echo " -d Enable Python Development Mode"
  144. echo " -D Run tests in deterministic mode"
  145. echo " -f Speed up the tests by using fewer rounds"
  146. echo " -F Reduce rounds even further"
  147. echo " -L List available tests and test groups with description"
  148. echo " -l List the test name symbols"
  149. echo " -N Pass the --no-timings switch to test/cmdtest.py"
  150. echo " -O Use pexpect.spawn rather than popen_spawn where applicable"
  151. echo " -p Pause between tests"
  152. echo " -s LIST Skip tests in LIST (space-separated)"
  153. echo " -S Build SDIST distribution, unpack, and run test"
  154. echo " -t Print the tests without running them"
  155. echo " -v Run test/cmdtest.py with '--exact-output' and other commands"
  156. echo " with '--verbose' switch"
  157. echo " -V Run test/cmdtest.py and other commands with '--verbose' switch"
  158. echo
  159. echo " For traceback output and error file support, set the EXEC_WRAPPER_TRACEBACK"
  160. echo " environment var"
  161. exit ;;
  162. A) SKIP_ALT_DEP=1
  163. cmdtest_py+=" --no-altcoin"
  164. unit_tests_py+=" --no-altcoin-deps"
  165. scrambletest_py+=" --no-altcoin" ;;
  166. b) cmdtest_py+=" --buf-keypress" ;;
  167. C) mkdir -p 'test/trace'
  168. touch 'test/trace.acc'
  169. cmdtest_py+=" --coverage"
  170. tooltest_py+=" --coverage"
  171. tooltest2_py+=" --fork --coverage"
  172. scrambletest_py+=" --coverage"
  173. python="python3 -m trace --count --file=test/trace.acc --coverdir=test/trace"
  174. unit_tests_py="$python $unit_tests_py"
  175. objtest_py="$python $objtest_py"
  176. objattrtest_py="$python $objattrtest_py"
  177. gentest_py="$python $gentest_py"
  178. mmgen_tool="$python $mmgen_tool" ;&
  179. d) export PYTHONDEVMODE=1
  180. export PYTHONWARNINGS='error' ;;
  181. D) export MMGEN_TEST_SUITE_DETERMINISTIC=1
  182. export MMGEN_DISABLE_COLOR=1 ;;
  183. f) rounds=6 FAST=1 fast_opt='--fast' unit_tests_py+=" --fast" ;;
  184. F) rounds=3 FAST=1 fast_opt='--fast' unit_tests_py+=" --fast" ;;
  185. L) list_avail_tests; exit ;;
  186. l) list_group_symbols; exit ;;
  187. N) cmdtest_py+=" --no-timings" ;;
  188. O) cmdtest_py+=" --pexpect-spawn" ;;
  189. p) PAUSE=1 ;;
  190. s) SKIP_LIST+=" $OPTARG" ;;
  191. S) SDIST_TEST=1 ;;
  192. t) LIST_CMDS=1 ;;
  193. v) EXACT_OUTPUT=1 cmdtest_py+=" --exact-output" ;&
  194. V) VERBOSE='--verbose'
  195. [ "$EXACT_OUTPUT" ] || cmdtest_py+=" --verbose"
  196. unit_tests_py="${unit_tests_py/--quiet/--verbose}"
  197. altcoin_mod_opts="${altcoin_mod_opts/--quiet/--verbose}"
  198. tooltest2_py="${tooltest2_py/--quiet/--verbose}"
  199. gentest_py="${gentest_py/--quiet/--verbose}"
  200. tooltest_py+=" --verbose"
  201. mmgen_tool+=" --verbose"
  202. objattrtest_py+=" --verbose"
  203. scrambletest_py+=" --verbose"
  204. pylint+=" --verbose" ;;
  205. *) exit ;;
  206. esac
  207. done
  208. [ "$MMGEN_DISABLE_COLOR" ] || {
  209. RED="\e[31;1m" GREEN="\e[32;1m" YELLOW="\e[33;1m" BLUE="\e[34;1m" MAGENTA="\e[35;1m" CYAN="\e[36;1m"
  210. RESET="\e[0m"
  211. }
  212. [ "$MSYS2" -a ! "$FAST" ] && tooltest2_py+=' --fork'
  213. [ "$EXACT_OUTPUT" -o "$VERBOSE" ] || objtest_py+=" -S"
  214. shift $((OPTIND-1))
  215. [ "$SDIST_TEST" -a -z "$MMGEN_TEST_RELEASE_IN_SDIST" ] && {
  216. test_dir='.sdist-test'
  217. rm -rf build dist MMGen.egg-info $test_dir
  218. python3 -m build --no-isolation --sdist
  219. mkdir $test_dir
  220. tar -C $test_dir -axf dist/*.tar.gz
  221. cd $test_dir/MMGen-*
  222. python3 setup.py build_ext --inplace
  223. echo -e "\n${BLUE}Running 'test/test-release $ORIG_ARGS'$RESET $YELLOW[PWD=$PWD]$RESET\n"
  224. export MMGEN_TEST_RELEASE_IN_SDIST=1
  225. test/test-release.sh $ORIG_ARGS
  226. exit
  227. }
  228. case $1 in
  229. '') tests=$dfl_tests ;;
  230. 'default') tests=$dfl_tests ;;
  231. 'extra') tests=$extra_tests ;;
  232. 'noalt') tests=$noalt_tests
  233. SKIP_ALT_DEP=1
  234. cmdtest_py+=" --no-altcoin"
  235. unit_tests_py+=" --no-altcoin-deps"
  236. scrambletest_py+=" --no-altcoin" ;;
  237. 'quick') tests=$quick_tests ;;
  238. 'qskip') tests=$qskip_tests ;;
  239. *) tests="$*" ;;
  240. esac
  241. set -e
  242. rounds_min=$((rounds / 2))
  243. for n in 2 5 10 20 50 100 200 500 1000; do
  244. eval "rounds${n}x=$((rounds*n))"
  245. done
  246. init_tests
  247. remove_skipped_tests
  248. check_tests
  249. test/cmdtest.py clean
  250. start_time=$(date +%s)
  251. run_tests "$tests"
  252. elapsed=$(($(date +%s)-start_time))
  253. elapsed_fmt=$(printf %02d:%02d $((elapsed/60)) $((elapsed%60)))
  254. [ "$LIST_CMDS" ] || {
  255. if [ "$MMGEN_TEST_SUITE_DETERMINISTIC" ]; then
  256. echo -e "\n${GREEN}All OK"
  257. else
  258. echo -e "\n${GREEN}All OK. Total elapsed time: $elapsed_fmt$RESET"
  259. fi
  260. }