2 # Copyright (C) The Arvados Authors. All rights reserved.
4 # SPDX-License-Identifier: AGPL-3.0
6 . `dirname "$(readlink -f "$0")"`/libcloud-pin.sh
9 . `dirname "$(readlink -f "$0")"`/run-library.sh
11 read -rd "\000" helpmessage <<EOF
12 $(basename $0): Install and test Arvados components.
14 Exit non-zero if any tests fail.
17 $(basename $0) WORKSPACE=/path/to/arvados [options]
21 --skip FOO Do not test the FOO component.
22 --skip sanity Skip initial dev environment sanity checks.
23 --skip install Do not run any install steps. Just run tests.
24 You should provide GOPATH, GEMHOME, and VENVDIR options
25 from a previous invocation if you use this option.
26 --only FOO Do not test anything except the FOO component.
27 --temp DIR Install components and dependencies under DIR instead of
28 making a new temporary directory. Implies --leave-temp.
29 --leave-temp Do not remove GOPATH, virtualenv, and other temp dirs at exit.
30 Instead, show the path to give as --temp to reuse them in
31 subsequent invocations.
32 --repeat N Repeat each install/test step until it succeeds N times.
33 --retry Prompt to retry if an install or test suite fails.
34 --only-install Run specific install step
35 --short Skip (or scale down) some slow tests.
36 --interactive Set up, then prompt for test/install steps to perform.
37 WORKSPACE=path Arvados source tree to test.
38 CONFIGSRC=path Dir with api server config files to copy into source tree.
39 (If none given, leave config files alone in source tree.)
40 services/api_test="TEST=test/functional/arvados/v1/collections_controller_test.rb"
41 Restrict apiserver tests to the given file
42 sdk/python_test="--test-suite tests.test_keep_locator"
43 Restrict Python SDK tests to the given class
44 apps/workbench_test="TEST=test/integration/pipeline_instances_test.rb"
45 Restrict Workbench tests to the given file
46 services/arv-git-httpd_test="-check.vv"
47 Show all log messages, even when tests pass (also works
48 with services/keepstore_test etc.)
50 Print more debug messages
51 envvar=value Set \$envvar to value. Primarily useful for WORKSPACE,
52 *_test, and other examples shown above.
54 Assuming "--skip install" is not given, all components are installed
55 into \$GOPATH, \$VENDIR, and \$GEMHOME before running any tests. Many
56 test suites depend on other components being installed, and installing
57 everything tends to be quicker than debugging dependencies.
59 As a special concession to the current CI server config, CONFIGSRC
60 defaults to $HOME/arvados-api-server if that directory exists.
62 More information and background:
64 https://arvados.org/projects/arvados/wiki/Running_tests
69 apps/workbench_units (*)
70 apps/workbench_functionals (*)
71 apps/workbench_integration (*)
72 apps/workbench_benchmark
73 apps/workbench_profile
84 lib/dispatchcloud/container
85 lib/dispatchcloud/scheduler
86 lib/dispatchcloud/ssh_executor
87 lib/dispatchcloud/worker
90 services/arv-git-httpd
92 services/dockercleaner
101 services/nodemanager_integration
103 services/crunch-dispatch-local
104 services/crunch-dispatch-slurm
128 tools/crunchstat-summary
129 tools/crunchstat-summary:py3
132 tools/keep-block-check
134 (*) apps/workbench is shorthand for apps/workbench_units +
135 apps/workbench_functionals + apps/workbench_integration
139 # First make sure to remove any ARVADOS_ variables from the calling
140 # environment that could interfere with the tests.
141 unset $(env | cut -d= -f1 | grep \^ARVADOS_)
143 # Reset other variables that could affect our [tests'] behavior by
153 export LANG=en_US.UTF-8
161 if [[ -z "$temp" ]]; then
162 # we didn't even get as far as making a temp dir
164 elif [[ -z "$temp_preserve" ]]; then
167 echo "Leaving behind temp dirs in $temp"
173 echo >&2 "Fatal: $* (encountered in ${FUNCNAME[1]} at ${BASH_SOURCE[1]} line ${BASH_LINENO[0]})"
179 if which create-plot-data-from-log.sh >/dev/null; then
180 create-plot-data-from-log.sh $BUILD_NUMBER "$WORKSPACE/apps/workbench/log/test.log" "$WORKSPACE/apps/workbench/log/"
182 rotate_logfile "$WORKSPACE/apps/workbench/log/" "test.log"
184 rotate_logfile "$WORKSPACE/services/api/log/" "test.log"
191 [[ -n "${skip[sanity]}" ]] && return 0
192 ( [[ -n "$WORKSPACE" ]] && [[ -d "$WORKSPACE/services" ]] ) \
193 || fatal "WORKSPACE environment variable not set to a source directory (see: $0 --help)"
194 echo Checking dependencies:
195 echo "locale: ${LANG}"
196 [[ "$(locale charmap)" = "UTF-8" ]] \
197 || fatal "Locale '${LANG}' is broken/missing. Try: echo ${LANG} | sudo tee -a /etc/locale.gen && sudo locale-gen"
198 echo -n 'virtualenv: '
199 virtualenv --version \
200 || fatal "No virtualenv. Try: apt-get install virtualenv (on ubuntu: python-virtualenv)"
203 || fatal "No ruby. Install >=2.1.9 (using rbenv, rvm, or source)"
206 || fatal "No go binary. See http://golang.org/doc/install"
207 [[ $(go version) =~ go1.([0-9]+) ]] && [[ ${BASH_REMATCH[1]} -ge 10 ]] \
208 || fatal "Go >= 1.10 required. See http://golang.org/doc/install"
210 gcc --version | egrep ^gcc \
211 || fatal "No gcc. Try: apt-get install build-essential"
213 find /usr/include -path '*fuse/fuse.h' | egrep --max-count=1 . \
214 || fatal "No fuse/fuse.h. Try: apt-get install libfuse-dev"
216 find /usr/include -path '*gnutls/gnutls.h' | egrep --max-count=1 . \
217 || fatal "No gnutls/gnutls.h. Try: apt-get install libgnutls28-dev"
218 echo -n 'Python2 pyconfig.h: '
219 find /usr/include -path '*/python2*/pyconfig.h' | egrep --max-count=1 . \
220 || fatal "No Python2 pyconfig.h. Try: apt-get install python2.7-dev"
221 echo -n 'Python3 pyconfig.h: '
222 find /usr/include -path '*/python3*/pyconfig.h' | egrep --max-count=1 . \
223 || fatal "No Python3 pyconfig.h. Try: apt-get install python3-dev"
225 PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin" nginx -v \
226 || fatal "No nginx. Try: apt-get install nginx"
228 perl -v | grep version \
229 || fatal "No perl. Try: apt-get install perl"
230 for mod in ExtUtils::MakeMaker JSON LWP Net::SSL; do
231 echo -n "perl $mod: "
232 perl -e "use $mod; print \"\$$mod::VERSION\\n\"" \
233 || fatal "No $mod. Try: apt-get install perl-modules libcrypt-ssleay-perl libjson-perl libwww-perl"
237 || fatal "No gitolite. Try: apt-get install gitolite3"
240 || fatal "No npm. Try: wget -O- https://nodejs.org/dist/v6.11.2/node-v6.11.2-linux-x64.tar.xz | sudo tar -C /usr/local -xJf - && sudo ln -s ../node-v6.11.2-linux-x64/bin/{node,npm} /usr/local/bin/"
242 cadaver --version | grep -w cadaver \
243 || fatal "No cadaver. Try: apt-get install cadaver"
244 echo -n 'libattr1 xattr.h: '
245 find /usr/include -path '*/attr/xattr.h' | egrep --max-count=1 . \
246 || fatal "No libattr1 xattr.h. Try: apt-get install libattr1-dev"
247 echo -n 'libcurl curl.h: '
248 find /usr/include -path '*/curl/curl.h' | egrep --max-count=1 . \
249 || fatal "No libcurl curl.h. Try: apt-get install libcurl4-gnutls-dev"
250 echo -n 'libpq libpq-fe.h: '
251 find /usr/include -path '*/postgresql/libpq-fe.h' | egrep --max-count=1 . \
252 || fatal "No libpq libpq-fe.h. Try: apt-get install libpq-dev"
253 echo -n 'services/api/config/database.yml: '
254 if [[ ! -f "$WORKSPACE/services/api/config/database.yml" ]]; then
255 fatal "Please provide a database.yml file for the test suite"
259 echo -n 'postgresql: '
260 psql --version || fatal "No postgresql. Try: apt-get install postgresql postgresql-client-common"
261 echo -n 'phantomjs: '
262 phantomjs --version || fatal "No phantomjs. Try: apt-get install phantomjs"
264 which Xvfb || fatal "No xvfb. Try: apt-get install xvfb"
266 dot -V || fatal "No graphviz. Try: apt-get install graphviz"
267 echo -n 'geckodriver: '
268 geckodriver --version | grep ^geckodriver || echo "No geckodriver. Try: wget -O- https://github.com/mozilla/geckodriver/releases/download/v0.23.0/geckodriver-v0.23.0-linux64.tar.gz | sudo tar -C /usr/local/bin -xzf - geckodriver"
270 if [[ "$NEED_SDK_R" = true ]]; then
273 which Rscript || fatal "No Rscript. Try: apt-get install r-base"
275 Rscript -e "library('testthat')" || fatal "No testthat. Try: apt-get install r-cran-testthat"
276 # needed for roxygen2, needed for devtools, needed for R sdk
277 pkg-config --exists libxml-2.0 || fatal "No libxml2. Try: apt-get install libxml2-dev"
278 # needed for pkgdown, builds R SDK doc pages
279 which pandoc || fatal "No pandoc. Try: apt-get install pandoc"
284 # i.e. rotate_logfile "$WORKSPACE/apps/workbench/log/" "test.log"
285 # $BUILD_NUMBER is set by Jenkins if this script is being called as part of a Jenkins run
286 if [[ -f "$1/$2" ]]; then
287 THEDATE=`date +%Y%m%d%H%M%S`
288 mv "$1/$2" "$1/$THEDATE-$BUILD_NUMBER-$2"
289 gzip "$1/$THEDATE-$BUILD_NUMBER-$2"
297 skip[apps/workbench_profile]=1
298 # nodemanager_integration tests are not reliable, see #12061.
299 skip[services/nodemanager_integration]=1
306 echo >&2 "$helpmessage"
314 only[$1]=1; skip[$1]=""; shift
326 only_install="$1"; shift
336 repeat=$((${1}+0)); shift
342 suite="${arg%%_test=*}"
344 testargs["$suite"]="$args"
347 eval export $(echo $arg | cut -d= -f1)=\"$(echo $arg | cut -d= -f2-)\"
350 echo >&2 "$0: Unrecognized option: '$arg'. Try: $0 --help"
356 # R SDK installation is very slow (~360s in a clean environment) and only
357 # required when testing it. Skip that step if it is not needed.
360 if [[ ${#only[@]} -ne 0 ]] &&
361 [[ -z "${only['sdk/R']}" && -z "${only['doc']}" ]]; then
365 if [[ ${skip["sdk/R"]} == 1 && ${skip["doc"]} == 1 ]]; then
369 if [[ $NEED_SDK_R == false ]]; then
370 echo "R SDK not needed, it will not be installed."
375 pid="$(cat "$WORKSPACE/tmp/${svc}.pid")"
376 if [[ -z "$pid" ]] || ! kill -0 "$pid"; then
377 tail $WORKSPACE/tmp/${1}*.log
378 echo "${svc} pid ${pid} not running"
381 echo "${svc} pid ${pid} ok"
386 port="$(cat "$WORKSPACE/tmp/${svc}.port")"
388 if [[ ${svc} =~ -ssl$ || ${svc} = wss ]]; then
391 url="$scheme://localhost:${port}/_health/ping"
392 if ! curl -Ss -H "Authorization: Bearer e687950a23c3a9bceec28c6223a06c79" "${url}" | tee -a /dev/stderr | grep '"OK"'; then
398 checkdiscoverydoc() {
399 dd="https://${1}/discovery/v1/apis/arvados/v1/rest"
400 if ! (set -o pipefail; curl -fsk "$dd" | grep -q ^{ ); then
401 echo >&2 "ERROR: could not retrieve discovery doc from RailsAPI at $dd"
402 tail -v $WORKSPACE/services/api/log/test.log
409 if [[ -n "$ARVADOS_TEST_API_HOST" ]]; then
412 . "$VENVDIR/bin/activate"
413 echo 'Starting API, controller, keepproxy, keep-web, arv-git-httpd, ws, and nginx ssl proxy...'
414 if [[ ! -d "$WORKSPACE/services/api/log" ]]; then
415 mkdir -p "$WORKSPACE/services/api/log"
417 # Remove empty api.pid file if it exists
418 if [[ -f "$WORKSPACE/tmp/api.pid" && ! -s "$WORKSPACE/tmp/api.pid" ]]; then
419 rm -f "$WORKSPACE/tmp/api.pid"
421 all_services_stopped=
424 && eval $(python sdk/python/tests/run_test_server.py start --auth admin) \
425 && export ARVADOS_TEST_API_HOST="$ARVADOS_API_HOST" \
426 && export ARVADOS_TEST_API_INSTALLED="$$" \
427 && checkpidfile api \
428 && checkdiscoverydoc $ARVADOS_API_HOST \
429 && python sdk/python/tests/run_test_server.py start_controller \
430 && checkpidfile controller \
431 && checkhealth controller \
432 && python sdk/python/tests/run_test_server.py start_keep_proxy \
433 && checkpidfile keepproxy \
434 && python sdk/python/tests/run_test_server.py start_keep-web \
435 && checkpidfile keep-web \
436 && checkhealth keep-web \
437 && python sdk/python/tests/run_test_server.py start_arv-git-httpd \
438 && checkpidfile arv-git-httpd \
439 && checkhealth arv-git-httpd \
440 && python sdk/python/tests/run_test_server.py start_ws \
442 && eval $(python sdk/python/tests/run_test_server.py start_nginx) \
443 && checkdiscoverydoc $ARVADOS_API_HOST \
444 && checkpidfile nginx \
445 && export ARVADOS_TEST_PROXY_SERVICES=1 \
446 && (env | egrep ^ARVADOS) \
449 if [[ $fail != 0 ]]; then
450 unset ARVADOS_TEST_API_HOST
456 if [[ -n "$all_services_stopped" ]]; then
459 unset ARVADOS_TEST_API_HOST ARVADOS_TEST_PROXY_SERVICES
460 . "$VENVDIR/bin/activate" || return
462 && python sdk/python/tests/run_test_server.py stop_nginx \
463 && python sdk/python/tests/run_test_server.py stop_arv-git-httpd \
464 && python sdk/python/tests/run_test_server.py stop_ws \
465 && python sdk/python/tests/run_test_server.py stop_keep-web \
466 && python sdk/python/tests/run_test_server.py stop_keep_proxy \
467 && python sdk/python/tests/run_test_server.py stop_controller \
468 && python sdk/python/tests/run_test_server.py stop \
469 && all_services_stopped=1
474 failures+=("($(basename $0) interrupted)")
479 setup_ruby_environment() {
480 if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then
481 source "$HOME/.rvm/scripts/rvm"
483 elif [[ -s "/usr/local/rvm/scripts/rvm" ]] ; then
484 source "/usr/local/rvm/scripts/rvm"
490 if [[ "$using_rvm" == true ]]; then
491 # If rvm is in use, we can't just put separate "dependencies"
492 # and "gems-under-test" paths to GEM_PATH: passenger resets
493 # the environment to the "current gemset", which would lose
494 # our GEM_PATH and prevent our test suites from running ruby
495 # programs (for example, the Workbench test suite could not
496 # boot an API server or run arv). Instead, we have to make an
497 # rvm gemset and use it for everything.
499 [[ `type rvm | head -n1` == "rvm is a function" ]] \
502 # Put rvm's favorite path back in first place (overriding
503 # virtualenv, which just put itself there). Ignore rvm's
504 # complaint about not being in first place already.
505 rvm use @default 2>/dev/null
507 # Create (if needed) and switch to an @arvados-tests-* gemset,
508 # salting the gemset name so it doesn't interfere with
509 # concurrent builds in other workspaces. Leave the choice of
510 # ruby to the caller.
511 gemset="arvados-tests-$(echo -n "${WORKSPACE}" | md5sum | head -c16)"
512 rvm use "@${gemset}" --create \
513 || fatal 'rvm gemset setup'
517 # When our "bundle install"s need to install new gems to
518 # satisfy dependencies, we want them to go where "gem install
519 # --user-install" would put them. (However, if the caller has
520 # already set GEM_HOME, we assume that's where dependencies
521 # should be installed, and we should leave it alone.)
523 if [ -z "$GEM_HOME" ]; then
524 user_gempath="$(gem env gempath)"
525 export GEM_HOME="${user_gempath%%:*}"
527 PATH="$(gem env gemdir)/bin:$PATH"
529 # When we build and install our own gems, we install them in our
530 # $GEMHOME tmpdir, and we want them to be at the front of GEM_PATH and
531 # PATH so integration tests prefer them over other versions that
532 # happen to be installed in $user_gempath, system dirs, etc.
534 tmpdir_gem_home="$(env - PATH="$PATH" HOME="$GEMHOME" gem env gempath | cut -f1 -d:)"
535 PATH="$tmpdir_gem_home/bin:$PATH"
536 export GEM_PATH="$tmpdir_gem_home"
538 echo "Will install dependencies to $(gem env gemdir)"
539 echo "Will install arvados gems to $tmpdir_gem_home"
540 echo "Gem search path is GEM_PATH=$GEM_PATH"
542 bundle config || gem install bundler \
543 || fatal 'install bundler'
547 if [[ "$using_rvm" == true ]]; then
550 GEM_HOME="$tmpdir_gem_home" GEM_PATH="$tmpdir_gem_home" "$@"
554 gem_uninstall_if_exists() {
555 if gem list "$1\$" | egrep '^\w'; then
556 gem uninstall --force --all --executables "$1"
561 local venvdest="$1"; shift
562 if ! [[ -e "$venvdest/bin/activate" ]] || ! [[ -e "$venvdest/bin/pip" ]]; then
563 virtualenv --setuptools "$@" "$venvdest" || fatal "virtualenv $venvdest failed"
564 elif [[ -n "$short" ]]; then
567 if [[ $("$venvdest/bin/python" --version 2>&1) =~ \ 3\.[012]\. ]]; then
568 # pip 8.0.0 dropped support for python 3.2, e.g., debian wheezy
569 "$venvdest/bin/pip" install --no-cache-dir 'setuptools>=18.5' 'pip>=7,<8'
571 "$venvdest/bin/pip" install --no-cache-dir 'setuptools>=18.5' 'pip>=7'
573 # ubuntu1404 can't seem to install mock via tests_require, but it can do this.
574 "$venvdest/bin/pip" install --no-cache-dir 'mock>=1.0' 'pbr<1.7.0'
580 echo "WORKSPACE=$WORKSPACE"
582 if [[ -z "$CONFIGSRC" ]] && [[ -d "$HOME/arvados-api-server" ]]; then
583 # Jenkins expects us to use this by default.
584 CONFIGSRC="$HOME/arvados-api-server"
587 # Clean up .pyc files that may exist in the workspace
589 find -name '*.pyc' -delete
591 if [[ -z "$temp" ]]; then
595 # Set up temporary install dirs (unless existing dirs were supplied)
596 for tmpdir in VENVDIR VENV3DIR GOPATH GEMHOME PERLINSTALLBASE R_LIBS
598 if [[ -z "${!tmpdir}" ]]; then
599 eval "$tmpdir"="$temp/$tmpdir"
601 if ! [[ -d "${!tmpdir}" ]]; then
602 mkdir "${!tmpdir}" || fatal "can't create ${!tmpdir} (does $temp exist?)"
606 rm -vf "${WORKSPACE}/tmp/*.log"
608 export PERLINSTALLBASE
609 export PERL5LIB="$PERLINSTALLBASE/lib/perl5${PERL5LIB:+:$PERL5LIB}"
615 # Jenkins config requires that glob tmp/*.log match something. Ensure
616 # that happens even if we don't end up running services that set up
618 mkdir -p "${WORKSPACE}/tmp/" || fatal "could not mkdir ${WORKSPACE}/tmp"
619 touch "${WORKSPACE}/tmp/controller.log" || fatal "could not touch ${WORKSPACE}/tmp/controller.log"
621 unset http_proxy https_proxy no_proxy
624 # Note: this must be the last time we change PATH, otherwise rvm will
626 setup_ruby_environment
634 mkdir -p "$GOPATH/src/git.curoverse.com"
635 if [[ ! -h "$GOPATH/src/git.curoverse.com/arvados.git" ]]; then
637 "$GOPATH/src/git.curoverse.com/arvados.git/tmp/GOPATH" \
638 "$GOPATH/src/git.curoverse.com/arvados.git/tmp" \
639 "$GOPATH/src/git.curoverse.com/arvados.git"; do
640 [[ -d "$d" ]] && rmdir "$d"
644 "$GOPATH/src/git.curoverse.com/arvados.git/arvados" \
645 "$GOPATH/src/git.curoverse.com/arvados.git"; do
646 [[ -h "$d" ]] && rm "$d"
648 ln -vsfT "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git"
649 go get -v github.com/kardianos/govendor
650 cd "$GOPATH/src/git.curoverse.com/arvados.git"
651 if [[ -n "$short" ]]; then
653 "$GOPATH/bin/govendor" sync
655 # Remove cached source dirs in workdir. Otherwise, they will
656 # not qualify as +missing or +external below, and we won't be
657 # able to detect that they're missing from vendor/vendor.json.
660 "$GOPATH/bin/govendor" sync
661 [[ -z $("$GOPATH/bin/govendor" list +unused +missing +external | tee /dev/stderr) ]] \
662 || fatal "vendor/vendor.json has unused or missing dependencies -- try:
664 (export GOPATH=\"${GOPATH}\"; cd \$GOPATH/src/git.curoverse.com/arvados.git && \$GOPATH/bin/govendor add +missing +external && \$GOPATH/bin/govendor remove +unused)
668 ) || fatal "Go setup failed"
670 setup_virtualenv "$VENVDIR" --python python2.7
671 . "$VENVDIR/bin/activate"
673 # Needed for run_test_server.py which is used by certain (non-Python) tests.
674 pip install --no-cache-dir PyYAML \
675 || fatal "pip install PyYAML failed"
677 # Preinstall libcloud if using a fork; otherwise nodemanager "pip
678 # install" won't pick it up by default.
679 if [[ -n "$LIBCLOUD_PIN_SRC" ]]; then
680 pip freeze 2>/dev/null | egrep ^apache-libcloud==$LIBCLOUD_PIN \
681 || pip install --pre --ignore-installed --no-cache-dir "$LIBCLOUD_PIN_SRC" >/dev/null \
682 || fatal "pip install apache-libcloud failed"
685 # Deactivate Python 2 virtualenv
688 # If Python 3 is available, set up its virtualenv in $VENV3DIR.
689 # Otherwise, skip dependent tests.
690 PYTHON3=$(which python3)
691 if [[ ${?} = 0 ]]; then
692 setup_virtualenv "$VENV3DIR" --python python3
697 Warning: python3 could not be found. Python 3 tests will be skipped.
702 if ! which bundler >/dev/null
704 gem install --user-install bundler || fatal 'Could not install bundler'
713 if [[ "$remain" -gt 1 ]]; then
714 remain=$((${remain}-1))
715 title "(repeating ${remain} more times)"
719 elif [[ "$retry" == 1 ]]; then
720 read -p 'Try again? [Y/n] ' x
721 if [[ "$x" != "y" ]] && [[ "$x" != "" ]]
733 apps/workbench_units | apps/workbench_functionals | apps/workbench_integration)
736 services/nodemanager | services/nodemanager_integration)
737 suite=services/nodemanager_suite
743 if [[ -n "${skip[$suite]}" || \
744 -n "${skip[$1]}" || \
745 (${#only[@]} -ne 0 && ${only[$suite]} -eq 0 && ${only[$1]} -eq 0) ]]; then
752 gofmt | doc | lib/cli | lib/cloud/azure | lib/cloud/ec2 | lib/cmd | lib/dispatchcloud/ssh_executor | lib/dispatchcloud/worker)
753 # don't care whether services are running
756 if ! start_services; then
757 title "test $1 -- failed to start services"
762 retry do_test_once ${@}
772 if which deactivate >/dev/null; then deactivate; fi
773 if ! . "$VENVDIR/bin/activate"
776 elif [[ "$2" == "go" ]]
778 covername="coverage-$(echo "$1" | sed -e 's/\//_/g')"
779 coverflags=("-covermode=count" "-coverprofile=$WORKSPACE/tmp/.$covername.tmp")
780 # We do "go get -t" here to catch compilation errors
781 # before trying "go test". Otherwise, coverage-reporting
782 # mode makes Go show the wrong line numbers when reporting
783 # compilation errors.
784 go get -ldflags "-X main.version=${ARVADOS_VERSION:-$(git log -n1 --format=%H)-dev}" -t "git.curoverse.com/arvados.git/$1" && \
785 cd "$GOPATH/src/git.curoverse.com/arvados.git/$1" && \
786 if [[ -n "${testargs[$1]}" ]]
788 # "go test -check.vv giturl" doesn't work, but this
790 go test ${short:+-short} ${testargs[$1]}
792 # The above form gets verbose even when testargs is
793 # empty, so use this form in such cases:
794 go test ${short:+-short} ${coverflags[@]} "git.curoverse.com/arvados.git/$1"
797 if [[ -f "$WORKSPACE/tmp/.$covername.tmp" ]]
799 go tool cover -html="$WORKSPACE/tmp/.$covername.tmp" -o "$WORKSPACE/tmp/$covername.html"
800 rm "$WORKSPACE/tmp/.$covername.tmp"
802 [[ $result = 0 ]] && gofmt -e -d *.go
803 elif [[ "$2" == "pip" ]]
806 cd "$WORKSPACE/$1" && while :
808 tries=$((${tries}+1))
809 # $3 can name a path directory for us to use, including trailing
810 # slash; e.g., the bin/ subdirectory of a virtualenv.
811 "${3}python" setup.py ${short:+--short-tests-only} test ${testargs[$1]}
813 if [[ ${tries} < 3 && ${result} == 137 ]]
815 printf '\n*****\n%s tests killed -- retrying\n*****\n\n' "$1"
821 elif [[ "$2" != "" ]]
828 checkexit $result "$1 tests"
829 title "test $1 -- `timer`"
834 if [[ -n "${skip[install]}" || ( -n "${only_install}" && "${only_install}" != "${1}" && "${only_install}" != "${2}" ) ]]; then
837 retry do_install_once ${@}
845 if which deactivate >/dev/null; then deactivate; fi
846 if [[ "$1" != "env" ]] && ! . "$VENVDIR/bin/activate"; then
848 elif [[ "$2" == "go" ]]
850 go get -ldflags "-X main.version=${ARVADOS_VERSION:-$(git log -n1 --format=%H)-dev}" -t "git.curoverse.com/arvados.git/$1"
851 elif [[ "$2" == "pip" ]]
853 # $3 can name a path directory for us to use, including trailing
854 # slash; e.g., the bin/ subdirectory of a virtualenv.
856 # Need to change to a different directory after creating
857 # the source dist package to avoid a pip bug.
858 # see https://arvados.org/issues/5766 for details.
860 # Also need to install twice, because if it believes the package is
861 # already installed, pip it won't install it. So the first "pip
862 # install" ensures that the dependencies are met, the second "pip
863 # install" ensures that we've actually installed the local package
866 && "${3}python" setup.py sdist rotate --keep=1 --match .tar.gz \
868 && "${3}pip" install --no-cache-dir --quiet "$WORKSPACE/$1/dist"/*.tar.gz \
869 && "${3}pip" install --no-cache-dir --quiet --no-deps --ignore-installed "$WORKSPACE/$1/dist"/*.tar.gz
870 elif [[ "$2" != "" ]]
877 checkexit $result "$1 install"
878 title "install $1 -- `timer`"
882 bundle_install_trylocal() {
885 echo "(Running bundle install --local. 'could not find package' messages are OK.)"
886 if ! bundle install --local --no-deployment; then
887 echo "(Running bundle install again, without --local.)"
888 bundle install --no-deployment
895 cd "$WORKSPACE/doc" \
896 && bundle_install_trylocal \
903 with_test_gemset gem_uninstall_if_exists "$gemname" \
904 && cd "$WORKSPACE/$srcpath" \
905 && bundle_install_trylocal \
906 && gem build "$gemname.gemspec" \
907 && with_test_gemset gem install --no-ri --no-rdoc $(ls -t "$gemname"-*.gem|head -n1)
911 install_gem arvados sdk/ruby
915 if [[ "$NEED_SDK_R" = true ]]; then
916 cd "$WORKSPACE/sdk/R" \
917 && Rscript --vanilla install_deps.R
922 cd "$WORKSPACE/sdk/perl" \
923 && perl Makefile.PL INSTALL_BASE="$PERLINSTALLBASE" \
924 && make install INSTALLDIRS=perl
928 install_gem arvados-cli sdk/cli
931 install_services/login-sync() {
932 install_gem arvados-login-sync services/login-sync
935 install_services/api() {
936 cd "$WORKSPACE/services/api" \
937 && RAILS_ENV=test bundle_install_trylocal
939 rm -f config/environments/test.rb
940 cp config/environments/test.rb.example config/environments/test.rb
942 if [ -n "$CONFIGSRC" ]
944 for f in database.yml
946 cp "$CONFIGSRC/$f" config/ || fatal "$f"
950 # Clear out any lingering postgresql connections to the test
951 # database, so that we can drop it. This assumes the current user
952 # is a postgresql superuser.
953 cd "$WORKSPACE/services/api" \
954 && test_database=$(python -c "import yaml; print yaml.safe_load(file('config/database.yml'))['test']['database']") \
955 && psql "$test_database" -c "SELECT pg_terminate_backend (pg_stat_activity.pid::int) FROM pg_stat_activity WHERE pg_stat_activity.datname = '$test_database';" 2>/dev/null
957 mkdir -p "$WORKSPACE/services/api/tmp/pids"
959 cert="$WORKSPACE/services/api/tmp/self-signed"
960 if [[ ! -e "$cert.pem" || "$(date -r "$cert.pem" +%s)" -lt 1512659226 ]]; then
962 dir="$WORKSPACE/services/api/tmp"
964 openssl req -newkey rsa:2048 -nodes -subj '/C=US/ST=State/L=City/CN=localhost' -out "$cert.csr" -keyout "$cert.key" </dev/null
965 openssl x509 -req -in "$cert.csr" -signkey "$cert.key" -out "$cert.pem" -days 3650 -extfile <(printf 'subjectAltName=DNS:localhost,DNS:::1,DNS:0.0.0.0,DNS:127.0.0.1,IP:::1,IP:0.0.0.0,IP:127.0.0.1')
969 cd "$WORKSPACE/services/api" \
971 && mkdir -p tmp/git \
973 && tar xf ../../test/test.git.tar \
974 && mkdir -p internal.git \
975 && git --git-dir internal.git init \
978 cd "$WORKSPACE/services/api" \
979 && RAILS_ENV=test bundle exec rails db:environment:set \
980 && RAILS_ENV=test bundle exec rake db:drop \
981 && RAILS_ENV=test bundle exec rake db:setup \
982 && RAILS_ENV=test bundle exec rake db:fixtures:load
985 declare -a pythonstuff
992 services/dockercleaner:py3
995 tools/crunchstat-summary
996 tools/crunchstat-summary:py3
1012 lib/dispatchcloud/container
1013 lib/dispatchcloud/scheduler
1014 lib/dispatchcloud/ssh_executor
1015 lib/dispatchcloud/worker
1018 sdk/go/arvadosclient
1028 services/arv-git-httpd
1034 services/keep-balance
1036 services/crunch-dispatch-local
1037 services/crunch-dispatch-slurm
1040 tools/keep-block-check
1046 install_apps/workbench() {
1047 cd "$WORKSPACE/apps/workbench" \
1048 && mkdir -p tmp/cache \
1049 && RAILS_ENV=test bundle_install_trylocal \
1050 && RAILS_ENV=test RAILS_GROUPS=assets bundle exec rake npm:install
1057 ARVADOS_API_HOST=qr1hi.arvadosapi.com
1058 # Make sure python-epydoc is installed or the next line won't
1060 PYTHONPATH=$WORKSPACE/sdk/python/ bundle exec rake linkchecker baseurl=file://$WORKSPACE/doc/.site/ arvados_workbench_host=https://workbench.$ARVADOS_API_HOST arvados_api_host=$ARVADOS_API_HOST
1065 cd "$WORKSPACE" || return 1
1066 dirs=$(ls -d */ | egrep -v 'vendor|tmp')
1067 [[ -z "$(gofmt -e -d $dirs | tee -a /dev/stderr)" ]]
1070 test_services/api() {
1071 rm -f "$WORKSPACE/services/api/git-commit.version"
1072 cd "$WORKSPACE/services/api" \
1073 && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test TESTOPTS='-v -d' ${testargs[services/api]}
1077 cd "$WORKSPACE/sdk/ruby" \
1078 && bundle exec rake test TESTOPTS=-v ${testargs[sdk/ruby]}
1082 if [[ "$NEED_SDK_R" = true ]]; then
1083 cd "$WORKSPACE/sdk/R" \
1084 && Rscript --vanilla run_test.R
1089 cd "$WORKSPACE/sdk/cli" \
1090 && mkdir -p /tmp/keep \
1091 && KEEP_LOCAL_STORE=/tmp/keep bundle exec rake test TESTOPTS=-v ${testargs[sdk/cli]}
1094 test_sdk/java-v2() {
1095 cd "$WORKSPACE/sdk/java-v2" && gradle test
1098 test_services/login-sync() {
1099 cd "$WORKSPACE/services/login-sync" \
1100 && bundle exec rake test TESTOPTS=-v ${testargs[services/login-sync]}
1103 test_services/nodemanager_integration() {
1104 cd "$WORKSPACE/services/nodemanager" \
1105 && tests/integration_test.py ${testargs[services/nodemanager_integration]}
1108 test_apps/workbench_units() {
1109 cd "$WORKSPACE/apps/workbench" \
1110 && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:units TESTOPTS='-v -d' ${testargs[apps/workbench]} ${testargs[apps/workbench_units]}
1113 test_apps/workbench_functionals() {
1114 cd "$WORKSPACE/apps/workbench" \
1115 && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:functionals TESTOPTS='-v -d' ${testargs[apps/workbench]} ${testargs[apps/workbench_functionals]}
1118 test_apps/workbench_integration() {
1119 cd "$WORKSPACE/apps/workbench" \
1120 && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:integration TESTOPTS='-v -d' ${testargs[apps/workbench]} ${testargs[apps/workbench_integration]}
1123 test_apps/workbench_benchmark() {
1124 cd "$WORKSPACE/apps/workbench" \
1125 && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:benchmark ${testargs[apps/workbench_benchmark]}
1128 test_apps/workbench_profile() {
1129 cd "$WORKSPACE/apps/workbench" \
1130 && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:profile ${testargs[apps/workbench_profile]}
1134 # Install parts needed by test suites
1136 do_install cmd/arvados-server go
1139 do_install sdk/python pip
1141 do_install services/api
1142 do_install services/arv-git-httpd go
1143 do_install services/keepproxy go
1144 do_install services/keepstore go
1145 do_install services/keep-web go
1146 do_install services/ws go
1156 do_install services/login-sync
1157 for p in "${pythonstuff[@]}"
1160 if [[ ${dir} = ${p} ]]; then
1161 if [[ -z ${skip[python2]} ]]; then
1162 do_install ${dir} pip
1164 elif [[ -n ${PYTHON3} ]]; then
1165 if [[ -z ${skip[python3]} ]]; then
1166 do_install ${dir} pip "$VENV3DIR/bin/"
1170 do_install services/api
1171 for g in "${gostuff[@]}"
1175 do_install apps/workbench
1180 do_test services/api
1182 # Shortcut for when we're only running apiserver tests. This saves a bit of time,
1183 # because we don't need to start up the api server for subsequent tests.
1184 if [ ! -z "$only" ] && [ "$only" == "services/api" ]; then
1185 rotate_logfile "$WORKSPACE/services/api/log/" "test.log"
1194 do_test services/login-sync
1196 do_test services/nodemanager_integration
1197 for p in "${pythonstuff[@]}"
1200 if [[ ${dir} = ${p} ]]; then
1201 if [[ -z ${skip[python2]} ]]; then
1204 elif [[ -n ${PYTHON3} ]]; then
1205 if [[ -z ${skip[python3]} ]]; then
1206 do_test ${dir} pip "$VENV3DIR/bin/"
1211 for g in "${gostuff[@]}"
1215 do_test apps/workbench_units
1216 do_test apps/workbench_functionals
1217 do_test apps/workbench_integration
1218 do_test apps/workbench_benchmark
1219 do_test apps/workbench_profile
1222 help_interactive() {
1223 echo "== Interactive commands:"
1224 echo "TARGET (short for 'test DIR')"
1226 echo "test TARGET:py3 (test with python3)"
1227 echo "test TARGET -check.vv (pass arguments to test)"
1228 echo "install TARGET"
1229 echo "install env (go/python libs)"
1230 echo "install deps (go/python libs + arvados components needed for integration tests)"
1231 echo "reset (...services used by integration tests)"
1233 echo "== Test targets:"
1234 echo "${!testfuncargs[@]}" | tr ' ' '\n' | sort | column
1239 declare -A testfuncargs=()
1240 for g in "${gostuff[@]}"; do
1241 testfuncargs[$g]="$g go"
1243 for p in "${pythonstuff[@]}"; do
1245 testfuncargs[$dir]="$dir pip $VENVDIR/bin/"
1246 testfuncargs[$dir:py3]="$dir pip $VENV3DIR/bin/"
1249 testfuncargs["sdk/cli"]="sdk/cli"
1251 if [[ -z ${interactive} ]]; then
1258 if [[ -e "$VENVDIR/bin/activate" ]]; then stop_services; fi
1260 if [[ "$TERM" = dumb ]]; then
1261 # assume emacs, or something, is offering a history buffer
1262 # and pre-populating the command will only cause trouble
1264 elif [[ "$nextcmd" != "install deps" ]]; then
1266 elif [[ -e "$VENVDIR/bin/activate" ]]; then
1267 nextcmd="test lib/cmd"
1269 nextcmd="install deps"
1274 nextcmd="install deps"
1276 while read -p 'What next? ' -e -i "${nextcmd}" nextcmd; do
1277 read verb target opts <<<"${nextcmd}"
1278 target="${target%/}"
1279 target="${target/\/:/:}"
1296 testargs["$target"]="${opts}"
1297 tt="${testfuncargs[${target}]}"
1307 if [[ ${#successes[@]} -gt 0 || ${#failures[@]} -gt 0 ]]; then