blob: 634b0c7c8000a94efca37b39266ba03d8c1329e3 [file] [log] [blame]
Gary Wu13111e92018-09-27 11:31:33 -07001#!/bin/bash -x
Gary Wu9abb61c2018-09-27 10:38:50 -07002#
3# Copyright 2016-2017 Huawei Technologies Co., Ltd.
kaihlavi203e43a2019-08-16 16:02:38 +03004# Modification Copyright 2019 © Samsung Electronics Co., Ltd.
Gary Wu9abb61c2018-09-27 10:38:50 -07005#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18# $1 project/functionality
19# $2 robot options
Gary Wu9abb61c2018-09-27 10:38:50 -070020
Petr Ospalý5cf13912019-09-09 18:00:05 +020021#
22# functions
23#
24
Lasse Kaihlavirtaff18aa22020-03-19 17:01:24 +020025function on_exit(){
26 rc=$?
27 rsync -av "$WORKDIR/" "$WORKSPACE/archives"
28
29 # Record list of active docker containers
30 docker ps --format "{{.Image}}" > "$WORKSPACE/archives/_docker-images.log"
31
32 # show memory consumption after all docker instances initialized
33 docker_stats | tee "$WORKSPACE/archives/_sysinfo-2-after-robot.txt"
34
35 # Run teardown script plan if it exists
36 cd "${TESTPLANDIR}"
37 TEARDOWN="${TESTPLANDIR}/teardown.sh"
38 if [ -f "${TEARDOWN}" ]; then
39 echo "Running teardown script ${TEARDOWN}"
40 source_safely "${TEARDOWN}"
41 fi
42 # TODO: do something with the output
43 exit $rc
44}
45# ensure that teardown and other finalizing steps are always executed
46trap on_exit EXIT
47
Gary Wu9abb61c2018-09-27 10:38:50 -070048function docker_stats(){
49 #General memory details
50 echo "> top -bn1 | head -3"
51 top -bn1 | head -3
52 echo
53
54 echo "> free -h"
55 free -h
56 echo
57
58 #Memory details per Docker
59 echo "> docker ps"
60 docker ps
61 echo
62
63 echo "> docker stats --no-stream"
64 docker stats --no-stream
65 echo
66}
67
Petr Ospalý5cf13912019-09-09 18:00:05 +020068# save current set options
69function save_set() {
70 RUN_CSIT_SAVE_SET="$-"
71 RUN_CSIT_SHELLOPTS="$SHELLOPTS"
72}
73
74# load the saved set options
75function load_set() {
76 _setopts="$-"
77
78 # bash shellopts
79 for i in $(echo "$SHELLOPTS" | tr ':' ' ') ; do
80 set +o ${i}
81 done
82 for i in $(echo "$RUN_CSIT_SHELLOPTS" | tr ':' ' ') ; do
83 set -o ${i}
84 done
85
86 # other options
87 for i in $(echo "$_setopts" | sed 's/./& /g') ; do
88 set +${i}
89 done
90 set -${RUN_CSIT_SAVE_SET}
91}
92
93# set options for quick bailout when error
94function harden_set() {
95 set -xeo pipefail
96 set +u # enabled it would probably fail too many often
97}
98
99# relax set options so the sourced file will not fail
100# the responsibility is shifted to the sourced file...
101function relax_set() {
102 set +e
103 set +o pipefail
104}
105
106# wrapper for sourcing a file
107function source_safely() {
108 [ -z "$1" ] && return 1
109 relax_set
110 . "$1"
111 load_set
112}
113
114#
115# main
116#
117
118# set and save options for quick failure
119harden_set && save_set
120
Gary Wu9abb61c2018-09-27 10:38:50 -0700121if [ $# -eq 0 ]
122then
kaihlavi203e43a2019-08-16 16:02:38 +0300123 echo
124 echo "Usage: $0 plans/<project>/<functionality> [<robot-options>]"
Gary Wu9abb61c2018-09-27 10:38:50 -0700125 echo
126 echo " <project>, <functionality>, <robot-options>: "
127 echo " The same values as for the '{project}-csit-{functionality}' JJB job template."
128 echo
Gary Wu9abb61c2018-09-27 10:38:50 -0700129 exit 1
130fi
131
132if [ -z "$WORKSPACE" ]; then
Petr Ospalý5cf13912019-09-09 18:00:05 +0200133 export WORKSPACE=$(git rev-parse --show-toplevel)
Gary Wu9abb61c2018-09-27 10:38:50 -0700134fi
kaihlavi203e43a2019-08-16 16:02:38 +0300135
Petr Ospalý5cf13912019-09-09 18:00:05 +0200136rm -rf "$WORKSPACE/archives"
137mkdir -p "$WORKSPACE/archives"
Gary Wu9abb61c2018-09-27 10:38:50 -0700138
Petr Ospalý5cf13912019-09-09 18:00:05 +0200139if [ -f "${WORKSPACE}/${1}/testplan.txt" ]; then
Gary Wu9abb61c2018-09-27 10:38:50 -0700140 export TESTPLAN="${1}"
141else
Gary Wu13111e92018-09-27 11:31:33 -0700142 echo "testplan not found: ${WORKSPACE}/${TESTPLAN}/testplan.txt"
Gary Wu9abb61c2018-09-27 10:38:50 -0700143 exit 2
144fi
145
Gary Wu9abb61c2018-09-27 10:38:50 -0700146export TESTOPTIONS="${2}"
147
Petr Ospalý5cf13912019-09-09 18:00:05 +0200148TESTPLANDIR="${WORKSPACE}/${TESTPLAN}"
Gary Wu9abb61c2018-09-27 10:38:50 -0700149
kaihlavi9f5700f2019-08-27 11:30:51 +0300150# Run installation of prerequired libraries
Petr Ospalý5cf13912019-09-09 18:00:05 +0200151source_safely "${WORKSPACE}/prepare-csit.sh"
Gary Wu9abb61c2018-09-27 10:38:50 -0700152
kaihlavi203e43a2019-08-16 16:02:38 +0300153# Activate the virtualenv containing all the required libraries installed by prepare-csit.sh
Petr Ospalý5cf13912019-09-09 18:00:05 +0200154source_safely "${ROBOT_VENV}/bin/activate"
Gary Wu9abb61c2018-09-27 10:38:50 -0700155
Petr Ospalý5cf13912019-09-09 18:00:05 +0200156WORKDIR=$(mktemp -d --suffix=-robot-workdir)
157cd "${WORKDIR}"
Gary Wu9abb61c2018-09-27 10:38:50 -0700158
Gary Wu9abb61c2018-09-27 10:38:50 -0700159# Add csit scripts to PATH
Petr Ospalý5cf13912019-09-09 18:00:05 +0200160export PATH="${PATH}:${WORKSPACE}/docker/scripts:${WORKSPACE}/scripts:${ROBOT_VENV}/bin"
161export SCRIPTS="${WORKSPACE}/scripts"
Gary Wu9abb61c2018-09-27 10:38:50 -0700162export ROBOT_VARIABLES=
163
164# Sign in to nexus3 docker repo
Bogumil Zebekf1903ee2020-03-19 18:26:54 +0100165docker login -u docker -p docker nexus3.onap.org:10001
Gary Wu9abb61c2018-09-27 10:38:50 -0700166
167# Run setup script plan if it exists
Petr Ospalý5cf13912019-09-09 18:00:05 +0200168cd "${TESTPLANDIR}"
169SETUP="${TESTPLANDIR}/setup.sh"
170if [ -f "${SETUP}" ]; then
Gary Wu9abb61c2018-09-27 10:38:50 -0700171 echo "Running setup script ${SETUP}"
Petr Ospalý5cf13912019-09-09 18:00:05 +0200172 source_safely "${SETUP}"
Gary Wu9abb61c2018-09-27 10:38:50 -0700173fi
174
175# show memory consumption after all docker instances initialized
Petr Ospalý5cf13912019-09-09 18:00:05 +0200176docker_stats | tee "$WORKSPACE/archives/_sysinfo-1-after-setup.txt"
Gary Wu9abb61c2018-09-27 10:38:50 -0700177
178# Run test plan
Petr Ospalý5cf13912019-09-09 18:00:05 +0200179cd "$WORKDIR"
Gary Wu9abb61c2018-09-27 10:38:50 -0700180echo "Reading the testplan:"
Petr Ospalý5cf13912019-09-09 18:00:05 +0200181cat "${TESTPLANDIR}/testplan.txt" | egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' | sed "s|^|${WORKSPACE}/tests/|" > testplan.txt
Gary Wu9abb61c2018-09-27 10:38:50 -0700182cat testplan.txt
183SUITES=$( xargs -a testplan.txt )
184
Petr Ospalý5cf13912019-09-09 18:00:05 +0200185echo ROBOT_VARIABLES="${ROBOT_VARIABLES}"
Gary Wu9abb61c2018-09-27 10:38:50 -0700186echo "Starting Robot test suites ${SUITES} ..."
Petr Ospalý5cf13912019-09-09 18:00:05 +0200187relax_set
Gary Wu9abb61c2018-09-27 10:38:50 -0700188python -m robot.run -N ${TESTPLAN} -v WORKSPACE:/tmp ${ROBOT_VARIABLES} ${TESTOPTIONS} ${SUITES}
189RESULT=$?
Petr Ospalý5cf13912019-09-09 18:00:05 +0200190load_set
191echo "RESULT: $RESULT"
Lasse Kaihlavirtaff18aa22020-03-19 17:01:24 +0200192# Note that the final steps are done in on_exit function after this exit!
Gary Wu9abb61c2018-09-27 10:38:50 -0700193exit $RESULT