3894: Fix backward empty/nonempty logic.
[arvados-dev.git] / jenkins / run-tests.sh
1 #!/bin/bash
2
3 # Install and test Arvados components.
4 #
5 # Exit non-zero if any tests fail.
6 #
7 # Arguments:
8 # --skip FOO     Do not test the FOO component.
9 # --only FOO     Do not test anything except the FOO component.
10 # WORKSPACE=path Arvados source tree to test.
11 # CONFIGSRC=path Dir with api server config files to copy into source tree.
12 # envvar=value   Set $envvar to value
13 #
14 # Regardless of which components are tested, install all components in
15 # the usual sequence. (Many test suites depend on other components
16 # being installed.)
17 #
18 # To run a specific Ruby test, set $workbench_test, $apiserver_test or
19 # $cli_test on the command line:
20 #
21 # $ run-tests.sh --only workbench workbench_test=TEST=test/integration/pipeline_instances_test.rb
22 #
23 #
24 # To run a specific Python test set $python_sdk_test or $fuse_test.
25 #
26 # $ run-tests.sh --only python_sdk python_sdk_test="--test-suite tests.test_keep_locator"
27 #
28 #
29 # You can also pass "export ARVADOS_DEBUG=1" to enable additional debugging output:
30 #
31 # $ run-tests.sh "export ARVADOS_DEBUG=1"
32 #
33 #
34 # Finally, you can skip the installation steps on subsequent runs this way:
35 #
36 ## First run
37 # $ run-tests.sh --leave-temp
38 #
39 ## Subsequent runs: record the values of VENVDIR and GOPATH from the first run, and
40 # provide them on the command line in subsequent runs:
41 #
42 # $ run-tests.sh --skip-install VENVDIR="/tmp/tmp.y3tsTmigio" GOPATH="/tmp/tmp.3r4sSA9F3l"
43
44
45 # First make sure to remove any ARVADOS_ variables from the calling environment
46 # that could interfer with the tests.
47 unset $(env | cut -d= -f1 | grep \^ARVADOS_)
48
49 COLUMNS=80
50
51 GOPATH=
52 VENVDIR=
53 cli_test=
54 workbench_test=
55 apiserver_test=
56 python_sdk_test=
57 ruby_sdk_test=
58 fuse_test=
59 leave_temp=
60 skip_install=
61
62 if [[ -f /etc/profile.d/rvm.sh ]]
63 then
64     source /etc/profile.d/rvm.sh
65 fi
66
67 declare -A leave_temp
68 clear_temp() {
69     leaving=""
70     for var in VENVDIR GOPATH
71     do
72         if [[ -z "${leave_temp[$var]}" ]]
73         then
74             if [[ -n "${!var}" ]]
75             then
76                 rm -rf "${!var}"
77             fi
78         else
79             leaving+=" $var=\"${!var}\""
80         fi
81     done
82     if [[ -z "$leaving" ]]; then
83         echo "Leaving behind temp dirs: $leaving"
84     fi
85 }
86
87 fatal() {
88     clear_temp
89     echo >&2 "Fatal: $* in ${FUNCNAME[1]} at ${BASH_SOURCE[1]} line ${BASH_LINENO[0]}"
90     exit 1
91 }
92
93 declare -a failures
94 declare -A skip
95
96 # Always skip CLI tests. They don't know how to use run_test_server.py.
97 skip[cli]=1
98
99 while [[ -n "$1" ]]
100 do
101     arg="$1"; shift
102     case "$arg" in
103         --skip)
104             skipwhat="$1"; shift
105             skip[$skipwhat]=1
106             ;;
107         --only)
108             only="$1"; shift
109             ;;
110         --skip-install)
111             skip_install=1
112             ;;
113         --leave-temp)
114             leave_temp[VENVDIR]=1
115             leave_temp[GOPATH]=1
116             ;;
117         *=*)
118             eval $(echo $arg | cut -d= -f1)=\"$(echo $arg | cut -d= -f2-)\"
119             ;;
120         *)
121             echo >&2 "$0: Unrecognized option: '$arg'"
122             exit 1
123             ;;
124     esac
125 done
126
127 # Sanity check
128 echo "WORKSPACE=$WORKSPACE"
129 [[ -n "$WORKSPACE" ]] || fatal "WORKSPACE not set"
130
131 if [[ -n "$CONFIGSRC" ]]; then
132     if [[ -d "$HOME/arvados-api-server" ]]; then
133         # Jenkins expects us to use this by default.
134         CONFIGSRC="$HOME/arvados-api-server"
135     fi
136 fi
137
138 # Set up temporary install dirs (unless existing dirs were supplied)
139 if [[ -n "$VENVDIR" ]]; then
140     leave_temp[VENVDIR]=1
141 else
142     VENVDIR=$(mktemp -d)
143 fi
144 if [[ -n "$GOPATH" ]]; then
145     leave_temp[GOPATH]=1
146 else
147     GOPATH=$(mktemp -d)
148 fi
149 export GOPATH
150 mkdir -p "$GOPATH/src/git.curoverse.com"
151 ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git" \
152     || fatal "symlink failed"
153
154 virtualenv --setuptools "$VENVDIR" || fatal "virtualenv $VENVDIR failed"
155 PATH="$VENVDIR/bin:$PATH"
156
157 checkexit() {
158     if [[ "$?" != "0" ]]; then
159         title "!!!!!! $1 FAILED !!!!!!"
160         failures+=("$1 (`timer`)")
161     else
162         successes+=("$1 (`timer`)")
163     fi
164 }
165
166 timer_reset() {
167     t0=$SECONDS
168 }
169
170 timer() {
171     echo -n "$(($SECONDS - $t0))s"
172 }
173
174 do_test() {
175     if [[ -z "${skip[$1]}" ]] && ( [[ -z "$only" ]] || [[ "$only" == "$1" ]] )
176     then
177         title "Running $1 tests"
178         timer_reset
179         if [[ "$2" == "go" ]]
180         then
181             go test "git.curoverse.com/arvados.git/$1"
182         else
183             "test_$1"
184         fi
185         checkexit "$1 tests"
186         title "End of $1 tests (`timer`)"
187     else
188         title "Skipping $1 tests"
189     fi
190 }
191
192 do_install() {
193     if [[ -z "$skip_install" ]]
194     then
195         title "Running $1 install"
196         timer_reset
197         if [[ "$2" == "go" ]]
198         then
199             go get -t "git.curoverse.com/arvados.git/$1"
200         else
201             "install_$1"
202         fi
203         checkexit "$1 install"
204         title "End of $1 install (`timer`)"
205     else
206         title "Skipping $1 install"
207     fi
208 }
209
210 title () {
211     txt="********** $1 **********"
212     printf "\n%*s%s\n\n" $((($COLUMNS-${#txt})/2)) "" "$txt"
213 }
214
215 test_docs() {
216     cd "$WORKSPACE/doc"
217     bundle install --no-deployment
218     rm -rf .site
219     # Make sure python-epydoc is installed or the next line won't do much good!
220     ARVADOS_API_HOST=qr1hi.arvadosapi.com
221     PYTHONPATH=$WORKSPACE/sdk/python/ bundle exec rake generate baseurl=file://$WORKSPACE/doc/.site/ arvados_workbench_host=workbench.$ARVADOS_API_HOST arvados_api_host=$ARVADOS_API_HOST
222     unset ARVADOS_API_HOST
223 }
224 do_test docs
225
226 test_doclinkchecker() {
227     cd "$WORKSPACE/doc"
228     bundle exec rake linkchecker baseurl=file://$WORKSPACE/doc/.site/
229 }
230 do_test doclinkchecker
231
232 test_ruby_sdk() {
233     cd "$WORKSPACE/sdk/ruby" \
234         && bundle install --no-deployment \
235         && bundle exec rake test
236 }
237 do_test ruby_sdk
238
239 install_ruby_sdk() {
240     cd "$WORKSPACE/sdk/ruby" \
241         && gem build arvados.gemspec \
242         && gem install --no-ri --no-rdoc `ls -t arvados-*.gem|head -n1`
243 }
244 do_install ruby_sdk
245
246 install_cli() {
247     cd "$WORKSPACE/sdk/cli" \
248         && gem build arvados-cli.gemspec \
249         && gem install --no-ri --no-rdoc `ls -t arvados-cli-*.gem|head -n1`
250 }
251 do_install cli
252
253 test_cli() {
254     title "Starting SDK CLI tests"
255     cd "$WORKSPACE/sdk/cli" \
256         && bundle install --no-deployment \
257         && mkdir -p /tmp/keep \
258         && KEEP_LOCAL_STORE=/tmp/keep bundle exec rake test $cli_test
259 }
260 do_test cli
261
262 install_apiserver() {
263     cd "$WORKSPACE/services/api"
264     bundle install --no-deployment
265
266     rm -f config/environments/test.rb
267     cp config/environments/test.rb.example config/environments/test.rb
268
269     if [ -n "$CONFIGSRC" ]
270     then
271         for f in database.yml application.yml
272         do
273             cp "$CONFIGSRC/$f" config/ || fatal "$f"
274         done
275     fi
276
277     # Fill in a random secret_token and blob_signing_key for testing
278     SECRET_TOKEN=`echo 'puts rand(2**512).to_s(36)' |ruby`
279     BLOB_SIGNING_KEY=`echo 'puts rand(2**512).to_s(36)' |ruby`
280
281     sed -i'' -e "s:SECRET_TOKEN:$SECRET_TOKEN:" config/application.yml
282     sed -i'' -e "s:BLOB_SIGNING_KEY:$BLOB_SIGNING_KEY:" config/application.yml
283
284     export RAILS_ENV=test
285
286     # Set up empty git repo (for git tests)
287     GITDIR="$WORKSPACE/tmpgit"
288     sed -i'' -e "s:/var/cache/git:$GITDIR:" config/application.default.yml
289
290     rm -rf $GITDIR
291     mkdir -p $GITDIR/test
292     cd $GITDIR/test \
293         && git init \
294         && git config user.email "jenkins@ci.curoverse.com" \
295         && git config user.name "Jenkins, CI" \
296         && touch tmp \
297         && git add tmp \
298         && git commit -m 'initial commit'
299
300     # Clear out any lingering postgresql connections to arvados_test, so that we can drop it
301     # This assumes the current user is a postgresql superuser
302     psql arvados_test -c "SELECT pg_terminate_backend (pg_stat_activity.procpid::int) FROM pg_stat_activity WHERE pg_stat_activity.datname = 'arvados_test';" 2>/dev/null
303
304     cd "$WORKSPACE/services/api" \
305         && bundle exec rake db:drop \
306         && bundle exec rake db:create \
307         && bundle exec rake db:setup
308 }
309 do_install apiserver
310
311 test_apiserver() {
312     cd "$WORKSPACE/services/api"
313     bundle exec rake test $apiserver_test
314 }
315 do_test apiserver
316
317 declare -a gostuff
318 gostuff=(
319     services/keepstore
320     services/keepproxy
321     sdk/go/arvadosclient
322     sdk/go/keepclient
323     sdk/go/streamer
324     )
325 for g in "${gostuff[@]}"
326 do
327     do_install "$g" go
328 done
329
330 install_python_sdk() {
331     # Install the Python SDK early. Various other test suites (like
332     # keepproxy) bring up run_test_server.py, which imports the arvados
333     # module. We can't actually *test* the Python SDK yet though, because
334     # its own test suite brings up some of those other programs (like
335     # keepproxy).
336
337     cd "$WORKSPACE/sdk/python" \
338         && python setup.py egg_info -b ".$(git log --format=format:%ct.%h -n1 .)" sdist rotate --keep=1 --match .tar.gz \
339         && pip install dist/arvados-python-client-0.1.*.tar.gz
340 }
341 do_install python_sdk
342
343 install_fuse() {
344     cd "$WORKSPACE/services/fuse" \
345         && python setup.py egg_info -b ".$(git log --format=format:%ct.%h -n1 .)" sdist rotate --keep=1 --match .tar.gz \
346         && pip install dist/arvados_fuse-0.1.*.tar.gz
347 }
348 do_install fuse
349
350 test_python_sdk() {
351     # Python SDK. We test this before testing keepproxy: keepproxy runs
352     # run_test_server.py, which depends on the yaml package, which is in
353     # tests_require but not install_requires, and therefore does not get
354     # installed by setuptools until we run "setup.py test" *and* install
355     # the .egg files that setup.py downloads.
356
357     cd "$WORKSPACE/sdk/python" \
358         && python setup.py test $python_sdk_test
359     r=$?
360     easy_install *.egg
361     return $r
362 }
363 do_test python_sdk
364
365 test_fuse() {
366     # Install test dependencies here too, in case run_test_server needs them.
367     cd "$WORKSPACE/services/fuse" \
368         && python setup.py test $fuse_test
369     r=$?
370     easy_install *.egg
371     return $r
372 }
373 do_test fuse
374
375 for g in "${gostuff[@]}"
376 do
377     do_test "$g" go
378 done
379
380 test_workbench() {
381     cd "$WORKSPACE/apps/workbench" \
382         && bundle install --no-deployment \
383         && bundle exec rake test $workbench_test
384 }
385 do_test workbench
386
387 clear_temp
388
389 for x in "${successes[@]}"
390 do
391     echo "Pass: $x"
392 done
393
394 if [[ ${#failures[@]} == 0 ]]
395 then
396     echo "All test suites passed."
397 else
398     echo "Failures (${#failures[@]}):"
399     for x in "${failures[@]}"
400     do
401         echo "Fail: $x"
402     done
403 fi
404 exit ${#failures}