Merge "Prepare integration of ovno"
[functest.git] / docker / run_tests.sh
1 #!/bin/bash
2
3 #
4 # Author: Jose Lausuch (jose.lausuch@ericsson.com)
5 #
6 # Installs the Functest framework within the Docker container
7 # and run the tests automatically
8 #
9
10 usage="Script to trigger the tests automatically.
11
12 usage:
13     bash $(basename "$0") [--offline] [-h|--help] [-t <test_name>]
14
15 where:
16     -o|--offline      optional offline mode (experimental)
17     -h|--help         show this help text
18     -r|--report       push results to database (false by default)
19     -t|--test         run specific set of tests
20       <test_name>     one or more of the following: vping,odl,rally,tempest,vims,onos,promise,ovno. Separated by comma.
21
22
23 examples:
24     $(basename "$0")
25     $(basename "$0") --test vping,odl
26     $(basename "$0") --offline -t tempest,rally"
27
28
29 # Support for Functest offline
30 # NOTE: Still not 100% working when running the tests
31 offline=false
32 report=""
33 # Get the list of runnable tests
34 # Check if we are in CI mode
35 if [[ -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" ]]; then
36      testcase=`cat /home/opnfv/functest/conf/testcase-list.txt`
37      arr_test=("$testcase")
38 else
39     arr_test=(vping tempest vims rally)
40 fi
41
42 function clean_openstack(){
43     echo -e "\n\nCleaning Openstack environment..."
44     python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/clean_openstack.py \
45         --debug
46     echo -e "\n\n"
47 }
48
49 function run_test(){
50     test_name=$1
51     echo ""
52     echo "----------------------------------------------"
53     echo "  Running test cases: $i"
54     echo "----------------------------------------------"
55     echo ""
56     case $test_name in
57         "vping")
58             info "Running vPing test..."
59             python ${FUNCTEST_REPO_DIR}/testcases/vPing/CI/libraries/vPing.py \
60                 --debug ${report}
61         ;;
62         "odl")
63             info "Running ODL test..."
64             neutron_ip=$(keystone catalog --service identity | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
65             odl_ip=$(keystone catalog --service network | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
66             usr_name=$(env | grep OS | grep OS_USERNAME | cut -f2 -d'=')
67             password=$(env | grep OS | grep OS_PASSWORD | cut -f2 -d'=')
68             odl_port=8181
69             if [ $INSTALLER_TYPE == "fuel" ]; then
70                 odl_port=8282
71             elif [ $INSTALLER_TYPE == "apex" ]; then
72                 :
73             elif [ $INSTALLER_TYPE == "joid" ]; then
74                 :
75             elif [ $INSTALLER_TYPE == "compass" ]; then
76                 :
77             else
78                 error "INSTALLER_TYPE not valid."
79                 exit 1
80             fi
81             ODL_PORT=$odl_port ODL_IP=$odl_ip NEUTRON_IP=$neutron_ip USR_NAME=$usr_name PASS=$password \
82                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
83
84             # save ODL results
85             odl_logs="${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/logs"
86             if [ -d ${odl_logs} ]; then
87                 cp -Rf  ${odl_logs} ${FUNCTEST_CONF_DIR}/ODL/
88             fi
89         ;;
90         "tempest")
91             info "Running Tempest tests..."
92             python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_tempest.py \
93                 --debug -m custom ${report}
94             # save tempest.conf for further troubleshooting
95             tempest_conf="${RALLY_VENV_DIR}/tempest/for-deployment-*/tempest.conf"
96             if [ -f ${tempest_conf} ]; then
97                 cp $tempest_conf ${FUNCTEST_CONF_DIR}
98             fi
99             clean_openstack
100         ;;
101         "vims")
102             info "Running vIMS test..."
103             python ${FUNCTEST_REPO_DIR}/testcases/vIMS/CI/vIMS.py \
104                 --debug ${report}
105             clean_openstack
106         ;;
107         "rally")
108             info "Running Rally benchmark suite..."
109             cinder type-create volume-test #provisional
110             python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_rally.py \
111                 --debug all ${report}
112             cinder type-delete $(cinder type-list|grep test|awk '{print $2}')
113             clean_openstack
114
115         ;;
116         "bgpvpn_template")
117             info "Running BGPVPN Tempest test case..."
118             tempest_dir=$(find /root/.rally -type d -name for-deploy*)
119             # TODO:
120             # do the call of your test case here.
121             # the bgpvpn repo is cloned in $BGPVPN_REPO_DIR
122             # tempest is installed in $tempest_dir
123             # Suggestion:
124             #   mkdir ${tempest_dir}/tempest/api/bgpvpn/
125             #   cp ${BGPVPN_REPO_DIR}/networking_bgpvpn_tempest/<whatever you need> \
126             #       ${tempest_dir}/tempest/api/bgpvpn/
127             #   ${tempest_dir}/run_tempest.sh tempest.api.bgpvpn.<test_case_name>
128        ;;
129         "onos")
130             info "Running ONOS test case..."
131             python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py
132       ;;
133         "promise")
134             info "Running PROMISE test case..."
135             # TODO
136         ;;
137         "doctor")
138             info "Running Doctor test..."
139             python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py
140         ;;
141         "ovno")
142             info "Running OpenContrail test..."
143             # TODO
144         ;;
145     esac
146 }
147
148
149 # Parse parameters
150 while [[ $# > 0 ]]
151     do
152     key="$1"
153     case $key in
154         -h|--help)
155             echo "$usage"
156             exit 0
157             shift
158         ;;
159         -o|--offline)
160             offline=true
161         ;;
162         -r|--report)
163             report="-r"
164         ;;
165         -t|--test|--tests)
166             TEST="$2"
167             shift
168         ;;
169         *)
170             echo "unknown option $1 $2"
171             exit 1
172         ;;
173     esac
174     shift # past argument or value
175 done
176
177 BASEDIR=`dirname $0`
178 source ${BASEDIR}/common.sh
179
180
181 # Check that the given tests are correct
182 if [ "${TEST}" != "" ]; then
183     arr_test_exec=(${TEST//,/ })
184     for i in "${arr_test_exec[@]}"; do
185         if [[ " ${arr_test[*]} " != *" $i "* ]]; then
186             error "Unknown test: $i. Available tests are: ${arr_test[@]}"
187         fi
188     done
189     info "Tests to execute: ${TEST}."
190 fi
191
192 if [ $offline == false ]; then
193     info "MODE: online"
194 else
195     info "MODE: offline"
196 fi
197
198 # Check that the functest environment has been installed
199 if [ ! -f ${FUNCTEST_CONF_DIR}/env_active ]; then
200     error "The Functest environment is not installed. \
201         Please run prepare_env.sh before running this script...."
202 fi
203
204
205 # Source credentials
206 info "Sourcing Credentials ${FUNCTEST_CONF_DIR}/openstack.creds to run the tests.."
207 source ${FUNCTEST_CONF_DIR}/openstack.creds
208
209 # Run tests
210 if [ "${TEST}" != "" ]; then
211     for i in "${arr_test_exec[@]}"; do
212         run_test $i
213     done
214 else
215     info "Executing all the tests"
216     for i in "${arr_test[@]}"; do
217         run_test $i
218     done
219 fi