blob: 52ec2186305390e3e4aa2649be80f6c351fa95b3 [file] [log] [blame]
Ruslan Kashapovaad22402021-02-23 10:08:00 +02001#!/bin/bash -x
2#
3# Copyright 2016-2017 Huawei Technologies Co., Ltd.
4# Modification Copyright 2019-2021 © Samsung Electronics Co., Ltd.
5#
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
20
Ruslan Kashapovd44fcee2021-02-26 11:42:29 +020021# Branched from ccsdk/distribution to this repository Feb 23, 2021
Ruslan Kashapovaad22402021-02-23 10:08:00 +020022
23#
24# functions
25#
26
27function on_exit(){
28 rc=$?
29 if [[ ${WORKSPACE} ]]; then
30 if [[ ${WORKDIR} ]]; then
31 rsync -av "$WORKDIR/" "$WORKSPACE/archives/$TESTPLAN"
32 fi
33 # Record list of active docker containers
34 docker ps --format "{{.Image}}" > "$WORKSPACE/archives/$TESTPLAN/_docker-images.log"
35
36 # show memory consumption after all docker instances initialized
37 docker_stats | tee "$WORKSPACE/archives/$TESTPLAN/_sysinfo-2-after-robot.txt"
38 fi
39 # Run teardown script plan if it exists
40 cd "${TESTPLANDIR}"
41 TEARDOWN="${TESTPLANDIR}/teardown.sh"
42 if [ -f "${TEARDOWN}" ]; then
43 echo "Running teardown script ${TEARDOWN}"
44 source_safely "${TEARDOWN}"
45 fi
46 # TODO: do something with the output
47 exit $rc
48}
49# ensure that teardown and other finalizing steps are always executed
50trap on_exit EXIT
51
52function docker_stats(){
53 #General memory details
54 echo "> top -bn1 | head -3"
55 top -bn1 | head -3
56 echo
57
58 echo "> free -h"
59 free -h
60 echo
61
62 #Memory details per Docker
63 echo "> docker ps"
64 docker ps
65 echo
66
67 echo "> docker stats --no-stream"
68 docker stats --no-stream
69 echo
70}
71
72# save current set options
73function save_set() {
74 RUN_CSIT_SAVE_SET="$-"
75 RUN_CSIT_SHELLOPTS="$SHELLOPTS"
76}
77
78# load the saved set options
79function load_set() {
80 _setopts="$-"
81
82 # bash shellopts
83 for i in $(echo "$SHELLOPTS" | tr ':' ' ') ; do
84 set +o ${i}
85 done
86 for i in $(echo "$RUN_CSIT_SHELLOPTS" | tr ':' ' ') ; do
87 set -o ${i}
88 done
89
90 # other options
91 for i in $(echo "$_setopts" | sed 's/./& /g') ; do
92 set +${i}
93 done
94 set -${RUN_CSIT_SAVE_SET}
95}
96
97# set options for quick bailout when error
98function harden_set() {
99 set -xeo pipefail
100 set +u # enabled it would probably fail too many often
101}
102
103# relax set options so the sourced file will not fail
104# the responsibility is shifted to the sourced file...
105function relax_set() {
106 set +e
107 set +o pipefail
108}
109
110# wrapper for sourcing a file
111function source_safely() {
112 [ -z "$1" ] && return 1
113 relax_set
114 . "$1"
115 load_set
116}
117
118#
119# main
120#
121
122# set and save options for quick failure
123harden_set && save_set
124
125if [ $# -eq 0 ]
126then
127 echo
128 echo "Usage: $0 plans/<project>/<functionality> [<robot-options>]"
129 echo
130 echo " <project>, <functionality>, <robot-options>: "
131 echo " The same values as for the '{project}-csit-{functionality}' JJB job template."
132 echo
133 exit 1
134fi
135
136if [ -z "$WORKSPACE" ]; then
137 export WORKSPACE=$(git rev-parse --show-toplevel)
138fi
139
140if [ -f "${WORKSPACE}/${1}/testplan.txt" ]; then
141 export TESTPLAN="${1}"
142else
143 echo "testplan not found: ${WORKSPACE}/${TESTPLAN}/testplan.txt"
144 exit 2
145fi
146
147export TESTOPTIONS="${2}"
148
149rm -rf "$WORKSPACE/archives/$TESTPLAN"
150mkdir -p "$WORKSPACE/archives/$TESTPLAN"
151
152TESTPLANDIR="${WORKSPACE}/${TESTPLAN}"
153
154# Run installation of prerequired libraries
155source_safely "${WORKSPACE}/prepare-csit.sh"
156
157# Activate the virtualenv containing all the required libraries installed by prepare-csit.sh
158source_safely "${ROBOT_VENV}/bin/activate"
159
160WORKDIR=$(mktemp -d --suffix=-robot-workdir)
161cd "${WORKDIR}"
162
163# Add csit scripts to PATH
164export PATH="${PATH}:${WORKSPACE}/docker/scripts:${WORKSPACE}/scripts:${ROBOT_VENV}/bin"
165export SCRIPTS="${WORKSPACE}/scripts"
166export ROBOT_VARIABLES=
167
168# Sign in to nexus3 docker repo
169docker login -u docker -p docker nexus3.onap.org:10001
170
171# Run setup script plan if it exists
172cd "${TESTPLANDIR}"
173SETUP="${TESTPLANDIR}/setup.sh"
174if [ -f "${SETUP}" ]; then
175 echo "Running setup script ${SETUP}"
176 source_safely "${SETUP}"
177fi
178
179# show memory consumption after all docker instances initialized
180docker_stats | tee "$WORKSPACE/archives/$TESTPLAN/_sysinfo-1-after-setup.txt"
181
182# Run test plan
183cd "$WORKDIR"
184echo "Reading the testplan:"
185cat "${TESTPLANDIR}/testplan.txt" | egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' | sed "s|^|${WORKSPACE}/tests/|" > testplan.txt
186cat testplan.txt
187SUITES=$( xargs -a testplan.txt )
188
189echo ROBOT_VARIABLES="${ROBOT_VARIABLES}"
190echo "Starting Robot test suites ${SUITES} ..."
191relax_set
emaclee02a89e42022-02-03 15:45:26 +0000192python3 -m robot.run -N ${TESTPLAN} -v WORKSPACE:/tmp ${ROBOT_VARIABLES} ${TESTOPTIONS} ${SUITES}
Ruslan Kashapovaad22402021-02-23 10:08:00 +0200193RESULT=$?
194load_set
195echo "RESULT: $RESULT"
196# Note that the final steps are done in on_exit function after this exit!
197exit $RESULT