d24a009484139713fbb92ba4deb93695387a3494
[functest.git] / docker / run_tests.sh
1 #!/bin/bash
2
3 #
4 # Author: Jose Lausuch (jose.lausuch@ericsson.com)
5 #         Morgan Richomme (morgan.richomme@orange.com)
6 # Installs the Functest framework within the Docker container
7 # and run the tests automatically
8 #
9 #
10 # All rights reserved. This program and the accompanying materials
11 # are made available under the terms of the Apache License, Version 2.0
12 # which accompanies this distribution, and is available at
13 # http://www.apache.org/licenses/LICENSE-2.0
14 #
15
16 usage="Script to trigger the tests automatically.
17
18 usage:
19     bash $(basename "$0") [-h|--help] [-t <test_name>]
20
21 where:
22     -h|--help         show this help text
23     -r|--report       push results to database (false by default)
24     -n|--no-clean     do not clean OpenStack resources after test run
25     -t|--test         run specific set of tests
26       <test_name>     one or more of the following: vping,odl,rally,tempest,vims,onos,promise,ovno. Separated by comma.
27
28
29 examples:
30     $(basename "$0")
31     $(basename "$0") --test vping,odl
32     $(basename "$0") -t tempest,rally"
33
34
35 # Support for Functest offline
36 # NOTE: Still not 100% working when running the tests
37 offline=false
38 report=""
39 clean=true
40 # Get the list of runnable tests
41 # Check if we are in CI mode
42
43
44 function clean_openstack(){
45     if [ $clean == true ]; then
46         echo -e "\n\nCleaning Openstack environment..."
47         python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py \
48             --debug
49         echo -e "\n\n"
50     fi
51 }
52
53 function odl_tests(){
54     keystone_ip=$(keystone catalog --service identity | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
55     # historically most of the installers use the same IP for neutron and keystone API
56     neutron_ip=$keystone_ip
57     odl_ip=$(keystone catalog --service network | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
58     usr_name=$(env | grep OS | grep OS_USERNAME | cut -f2 -d'=')
59     password=$(env | grep OS | grep OS_PASSWORD | cut -f2 -d'=')
60     odl_port=8181
61     if [ $INSTALLER_TYPE == "fuel" ]; then
62         odl_port=8282
63     elif [ $INSTALLER_TYPE == "apex" ]; then
64         :
65     elif [ $INSTALLER_TYPE == "joid" ]; then
66         odl_ip=$(env | grep ODL_CONTROLLER | cut -f2 -d'=')
67         neutron_ip=$(keystone catalog --service network | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
68         odl_port=8080
69         :
70     elif [ $INSTALLER_TYPE == "compass" ]; then
71         :
72     else
73         error "INSTALLER_TYPE not valid."
74         exit 1
75     fi
76 }
77 function run_test(){
78     test_name=$1
79     echo ""
80     echo "----------------------------------------------"
81     echo "  Running test cases: $i"
82     echo "----------------------------------------------"
83     echo ""
84     case $test_name in
85         "vping")
86             info "Running vPing test..."
87             python ${FUNCTEST_REPO_DIR}/testcases/vPing/CI/libraries/vPing2.py \
88                 --debug ${report}
89         ;;
90         "vping_userdata")
91             info "Running vPing test using userdata/cloudinit.... "
92             python ${FUNCTEST_REPO_DIR}/testcases/vPing/CI/libraries/vPing.py \
93                 --debug ${report}
94         ;;
95         "odl")
96             info "Running ODL test..."
97             odl_tests
98             ODL_PORT=$odl_port ODL_IP=$odl_ip KEYSTONE_IP=$keystone_ip NEUTRON_IP=$neutron_ip USR_NAME=$usr_name PASS=$password \
99                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
100
101             # push results to the DB in case of CI
102             if [[ -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" ]]; then
103                 odl_logs="/home/opnfv/functest/results/odl/logs/2"
104                 odl_path="${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI"
105                 node_name=$(env | grep NODE_NAME | cut -f2 -d'=')
106                 python ${odl_path}/odlreport2db.py -x ${odl_logs}/output.xml -i ${INSTALLER_TYPE} -p ${node_name} -s ${DEPLOY_SCENARIO}
107             fi
108         ;;
109         "tempest")
110             info "Running Tempest tests..."
111             python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_tempest.py \
112                 --debug -m custom ${report}
113             # save tempest.conf for further troubleshooting
114             tempest_conf="${RALLY_VENV_DIR}/tempest/for-deployment-*/tempest.conf"
115             if [ -f ${tempest_conf} ]; then
116                 cp $tempest_conf ${FUNCTEST_CONF_DIR}
117             fi
118             clean_openstack
119         ;;
120         "vims")
121             info "Running vIMS test..."
122             python ${FUNCTEST_REPO_DIR}/testcases/vIMS/CI/vIMS.py \
123                 --debug ${report}
124             clean_openstack
125         ;;
126         "rally")
127             info "Running Rally benchmark suite..."
128             python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py \
129                 --debug all ${report}
130             clean_openstack
131
132         ;;
133         "bgpvpn")
134             info "Running BGPVPN Tempest test case..."
135             tempest_dir=$(ls -t /home/opnfv/.rally/tempest/ |grep for-deploy |tail -1)
136             if [[ $tempest_dir == "" ]]; then
137                 echo "Make sure tempest was running before"
138                 exit 1
139             fi
140             tempest_dir=/home/opnfv/.rally/tempest/$tempest_dir
141             pushd $tempest_dir
142               . .venv/bin/activate
143               pip install --no-deps -e ~/repos/bgpvpn/.
144               cp tempest.conf /etc/tempest/
145               echo "[service_available]
146 bgpvpn = True" >> /etc/tempest/tempest.conf
147               ./run_tempest.sh -- networking_bgpvpn_tempest
148               rm -rf /etc/tempest/tempest.conf
149             popd
150         ;;
151         "odl-vpnservice")
152             info "Running VPNSERVICE Robot test case..."
153             odl_tests
154             cp ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt \
155                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt.bak
156             echo "
157 test/csit/suites/vpnservice
158 " > ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt
159             ODL_PORT=$odl_port ODL_IP=$odl_ip NEUTRON_IP=$neutron_ip USR_NAME=$usr_name PASS=$password \
160                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
161             cp ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt.bak \
162                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt
163             # TODO: copy logs
164        ;;
165         "onos")
166             info "Running ONOS test case..."
167             python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py
168       ;;
169         "promise")
170             info "Running PROMISE test case..."
171             python ${FUNCTEST_REPO_DIR}/testcases/features/promise.py --debug ${report}
172             clean_openstack
173         ;;
174         "doctor")
175             info "Running Doctor test..."
176             python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py
177         ;;
178         "ovno")
179             info "Running OpenContrail test..."
180             # TODO
181         ;;
182     esac
183 }
184
185
186 # Parse parameters
187 while [[ $# > 0 ]]
188     do
189     key="$1"
190     case $key in
191         -h|--help)
192             echo "$usage"
193             exit 0
194             shift
195         ;;
196         -o|--offline)
197             offline=true
198         ;;
199         -r|--report)
200             report="-r"
201         ;;
202         -n|--no-clean)
203             clean=false
204         ;;
205         -t|--test|--tests)
206             TEST="$2"
207             shift
208         ;;
209         *)
210             echo "unknown option $1 $2"
211             exit 1
212         ;;
213     esac
214     shift # past argument or value
215 done
216
217
218 tests_file="/home/opnfv/functest/conf/testcase-list.txt"
219 if [[ -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" ]] &&\
220    [[ -f $tests_file ]]; then
221     arr_test=($(cat $tests_file))
222 else
223     arr_test=(vping tempest vims rally)
224 fi
225 echo "arr_test: "${arr_test[@]}
226
227 BASEDIR=`dirname $0`
228 source ${BASEDIR}/common.sh
229
230
231 # Check that the given tests are correct
232 if [ "${TEST}" != "" ]; then
233     arr_test_exec=(${TEST//,/ })
234     for i in "${arr_test_exec[@]}"; do
235         if [[ " ${arr_test[*]} " != *" $i "* ]]; then
236             error "Unknown test: $i. Available tests are: ${arr_test[@]}"
237         fi
238     done
239     info "Tests to execute: ${TEST}."
240 fi
241
242 if [ $offline == false ]; then
243     info "MODE: online"
244 else
245     info "MODE: offline"
246 fi
247
248 # Check that the functest environment has been installed
249 if [ ! -f ${FUNCTEST_CONF_DIR}/env_active ]; then
250     error "The Functest environment is not installed. \
251         Please run prepare_env.sh before running this script...."
252 fi
253
254
255 # Source credentials
256 info "Sourcing Credentials ${FUNCTEST_CONF_DIR}/openstack.creds to run the tests.."
257 source ${FUNCTEST_CONF_DIR}/openstack.creds
258
259 # Run tests
260 if [ "${TEST}" != "" ]; then
261     for i in "${arr_test_exec[@]}"; do
262         run_test $i
263     done
264 else
265     info "Executing tests..."
266     for i in "${arr_test[@]}"; do
267         run_test $i
268     done
269 fi