Suspend Doctor execution on Master for apex scenario
[functest.git] / ci / exec_test.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     -s|--serial       run Tempest tests in one thread
25     -t|--test         run specific test case
26       <test_name>"
27
28
29 report=""
30 serial=false
31
32 # Get the list of runnable tests
33 # Check if we are in CI mode
34 debug=""
35 if [[ "${CI_DEBUG,,}" == "true" ]];then
36     debug="--debug"
37 fi
38
39 FUNCTEST_REPO_DIR=${repos_dir}/functest/
40 FUNCTEST_CONF_DIR=/home/opnfv/functest/conf/
41
42
43 function odl_tests(){
44     keystone_ip=$(openstack catalog show identity |grep publicURL| cut -f3 -d"/" | cut -f1 -d":")
45     neutron_ip=$(openstack catalog show network | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
46     odl_ip=${neutron_ip}
47     odl_port=8181
48     if [ "$INSTALLER_TYPE" == "fuel" ]; then
49         odl_port=8282
50     elif [ "$INSTALLER_TYPE" == "apex" ]; then
51         :
52     elif [ "$INSTALLER_TYPE" == "joid" ]; then
53         odl_ip=$SDN_CONTROLLER
54         odl_port=8080
55         :
56     elif [ "$INSTALLER_TYPE" == "compass" ]; then
57         :
58     else
59         odl_ip=$SDN_CONTROLLER
60     fi
61 }
62
63 function run_test(){
64     test_name=$1
65     serial_flag=""
66     if [ $serial == "true" ]; then
67         serial_flag="-s"
68     fi
69
70     case $test_name in
71         "healthcheck")
72             ${FUNCTEST_REPO_DIR}/testcases/OpenStack/healthcheck/healthcheck.sh
73         ;;
74         "vping_ssh")
75             python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/vPing/vPing_ssh.py $report
76         ;;
77         "vping_userdata")
78             python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/vPing/vPing_userdata.py $report
79         ;;
80         "odl")
81             odl_tests
82             ODL_PORT=$odl_port ODL_IP=$odl_ip KEYSTONE_IP=$keystone_ip NEUTRON_IP=$neutron_ip USR_NAME=${OS_USERNAME} PASS=${OS_PASSWORD} \
83                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/start_tests.sh
84
85             # push results to the DB in case of CI
86             if [[ "$report" == "-r" &&
87                   -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" &&
88                   -n "$INSTALLER_TYPE" && "$INSTALLER_TYPE" != "none" ]] &&
89                env | grep NODE_NAME > /dev/null; then
90                 odl_logs="/home/opnfv/functest/results/odl/logs/2"
91                 odl_path="${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/"
92                 node_name=$(env | grep NODE_NAME | cut -f2 -d'=')
93                 python ${odl_path}/odlreport2db.py -x ${odl_logs}/output.xml -i ${INSTALLER_TYPE} -p ${node_name} -s ${DEPLOY_SCENARIO}
94             fi
95         ;;
96         "tempest_smoke_serial")
97             python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/run_tempest.py \
98                 $clean_flag -s -m smoke $report
99         ;;
100         "tempest_full_parallel")
101             python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/run_tempest.py \
102                 $serial_flag $clean_flag -m full $report
103         ;;
104         "vims")
105             python ${FUNCTEST_REPO_DIR}/testcases/vIMS/vIMS.py $clean_flag $report
106         ;;
107         "rally_full")
108             python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/rally/run_rally-cert.py $clean_flag all $report
109         ;;
110         "rally_sanity")
111             python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/rally/run_rally-cert.py \
112                 $clean_flag --sanity all $report
113         ;;
114         "bgpvpn")
115             python ${FUNCTEST_REPO_DIR}/testcases/features/bgpvpn.py
116         ;;
117         "onos")
118             if [ "$INSTALLER_TYPE" == "joid" ]; then
119                 python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/onosfunctest.py -i joid
120             else
121                 python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/onosfunctest.py
122             fi
123       ;;
124         "promise")
125             python ${FUNCTEST_REPO_DIR}/testcases/features/promise.py $report
126             sleep 10 # to let the instances terminate
127         ;;
128         "doctor")
129             # Comment Doctor until Green light from Doctor team
130             # python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py
131         ;;
132         "ovno")
133             # suite under rewritting for colorado
134             # no need to run anything until refactoring done
135             # ${repos_dir}/ovno/Testcases/RunTests.sh
136         ;;
137         "security_scan")
138             echo "Sourcing Credentials ${FUNCTEST_CONF_DIR}/stackrc for undercloud .."
139             source ${FUNCTEST_CONF_DIR}/stackrc
140             python ${FUNCTEST_REPO_DIR}/testcases/security_scan/security_scan.py --config ${FUNCTEST_REPO_DIR}/testcases/security_scan/config.ini
141         ;;
142         *)
143             echo "The test case '${test_name}' does not exist."
144             exit 1
145     esac
146
147     if [[ $? != 0 ]]; then exit 1
148     else exit 0
149     fi
150 }
151
152
153 # Parse parameters
154 while [[ $# > 0 ]]
155     do
156     key="$1"
157     case $key in
158         -h|--help)
159             echo "$usage"
160             exit 0
161             shift
162         ;;
163         -r|--report)
164             report="-r"
165         ;;
166         -s|--serial)
167             serial=true
168         ;;
169         -t|--test|--tests)
170             TEST="$2"
171             shift
172         ;;
173         *)
174             echo "unknown option $1 $2"
175             exit 1
176         ;;
177     esac
178     shift # past argument or value
179 done
180
181
182 # Source credentials
183 echo "Sourcing Credentials ${FUNCTEST_CONF_DIR}/openstack.creds to run the test.."
184 source ${FUNCTEST_CONF_DIR}/openstack.creds
185
186
187 # Run test
188 run_test $TEST