Adding BGPVPN and VPNSERVICE testcases
[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     neutron_ip=$(keystone catalog --service identity | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
55     odl_ip=$(keystone catalog --service network | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
56     usr_name=$(env | grep OS | grep OS_USERNAME | cut -f2 -d'=')
57     password=$(env | grep OS | grep OS_PASSWORD | cut -f2 -d'=')
58     odl_port=8181
59     if [ $INSTALLER_TYPE == "fuel" ]; then
60         odl_port=8282
61     elif [ $INSTALLER_TYPE == "apex" ]; then
62         :
63     elif [ $INSTALLER_TYPE == "joid" ]; then
64         :
65     elif [ $INSTALLER_TYPE == "compass" ]; then
66         :
67     else
68         error "INSTALLER_TYPE not valid."
69         exit 1
70     fi
71 }
72 function run_test(){
73     test_name=$1
74     echo ""
75     echo "----------------------------------------------"
76     echo "  Running test cases: $i"
77     echo "----------------------------------------------"
78     echo ""
79     case $test_name in
80         "vping")
81             info "Running vPing test..."
82             python ${FUNCTEST_REPO_DIR}/testcases/vPing/CI/libraries/vPing2.py \
83                 --debug ${report}
84         ;;
85         "vping_userdata")
86             info "Running vPing test using userdata/cloudinit.... "
87             python ${FUNCTEST_REPO_DIR}/testcases/vPing/CI/libraries/vPing.py \
88                 --debug ${report}
89         ;;
90         "odl")
91             info "Running ODL test..."
92             odl_tests
93             ODL_PORT=$odl_port ODL_IP=$odl_ip NEUTRON_IP=$neutron_ip USR_NAME=$usr_name PASS=$password \
94                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
95
96             # push results to the DB in case of CI
97             if [[ -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" ]]; then
98                 odl_logs="/home/opnfv/functest/results/odl/logs/2"
99                 odl_path="${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI"
100                 node_name=$(env | grep NODE_NAME | cut -f2 -d'=')
101                 python ${odl_path}/odlreport2db.py -x ${odl_logs}/output.xml -i ${INSTALLER_TYPE} -p ${node_name} -s ${DEPLOY_SCENARIO}
102             fi
103         ;;
104         "tempest")
105             info "Running Tempest tests..."
106             python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_tempest.py \
107                 --debug -m custom ${report}
108             # save tempest.conf for further troubleshooting
109             tempest_conf="${RALLY_VENV_DIR}/tempest/for-deployment-*/tempest.conf"
110             if [ -f ${tempest_conf} ]; then
111                 cp $tempest_conf ${FUNCTEST_CONF_DIR}
112             fi
113             clean_openstack
114         ;;
115         "vims")
116             info "Running vIMS test..."
117             python ${FUNCTEST_REPO_DIR}/testcases/vIMS/CI/vIMS.py \
118                 --debug ${report}
119             clean_openstack
120         ;;
121         "rally")
122             info "Running Rally benchmark suite..."
123             cinder type-create volume-test #provisional
124             python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_rally.py \
125                 --debug all ${report}
126             cinder type-delete $(cinder type-list|grep test|awk '{print $2}')
127             clean_openstack
128
129         ;;
130         "bgpvpn")
131             info "Running BGPVPN Tempest test case..."
132             tempest_dir=$(ls -t /home/opnfv/.rally/tempest/ |grep for-deploy |tail -1)
133             if [[ $tempest_dir == "" ]];
134                 echo "Make sure tempest was running before"
135                 exit 1
136             fi
137             tempest_dir=/home/opnfv/.rally/tempest/$tempest_dir
138             pushd $tempest_dir
139               . .venv/bin/activate
140               pip install --no-deps -e ~/repos/bgpvpn/.
141               cp tempest.conf /etc/tempest/
142               echo "[service_available]
143 bgpvpn = True" >> /etc/tempest/tempest.conf
144               ./run_tempest.sh -- networking_bgpvpn_tempest
145               rm -rf /etc/tempest/tempest.conf
146             popd
147         "odl-vpnservice")
148             info "Running VPNSERVICE Robot test case..."
149             odl_tests
150             cp ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt \
151                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt.bak
152             echo "
153 test/csit/suites/vpnservice
154 " > ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt
155             ODL_PORT=$odl_port ODL_IP=$odl_ip NEUTRON_IP=$neutron_ip USR_NAME=$usr_name PASS=$password \
156                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
157             cp ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt.bak \
158                 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/test_list.txt
159             # TODO: copy logs
160        ;;
161         "onos")
162             info "Running ONOS test case..."
163             python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/CI/onosfunctest.py
164       ;;
165         "promise")
166             info "Running PROMISE test case..."
167             python ${FUNCTEST_REPO_DIR}/testcases/features/promise.py --debug all ${report}
168             clean_openstack
169         ;;
170         "doctor")
171             info "Running Doctor test..."
172             python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py
173         ;;
174         "ovno")
175             info "Running OpenContrail test..."
176             # TODO
177         ;;
178     esac
179 }
180
181
182 # Parse parameters
183 while [[ $# > 0 ]]
184     do
185     key="$1"
186     case $key in
187         -h|--help)
188             echo "$usage"
189             exit 0
190             shift
191         ;;
192         -o|--offline)
193             offline=true
194         ;;
195         -r|--report)
196             report="-r"
197         ;;
198         -n|--no-clean)
199             clean=false
200         ;;
201         -t|--test|--tests)
202             TEST="$2"
203             shift
204         ;;
205         *)
206             echo "unknown option $1 $2"
207             exit 1
208         ;;
209     esac
210     shift # past argument or value
211 done
212
213
214 tests_file="/home/opnfv/functest/conf/testcase-list.txt"
215 if [[ -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" ]] &&\
216    [[ -f $tests_file ]]; then
217     arr_test=($(cat $tests_file))
218 else
219     arr_test=(vping tempest vims rally)
220 fi
221 echo "arr_test: "${arr_test[@]}
222
223 BASEDIR=`dirname $0`
224 source ${BASEDIR}/common.sh
225
226
227 # Check that the given tests are correct
228 if [ "${TEST}" != "" ]; then
229     arr_test_exec=(${TEST//,/ })
230     for i in "${arr_test_exec[@]}"; do
231         if [[ " ${arr_test[*]} " != *" $i "* ]]; then
232             error "Unknown test: $i. Available tests are: ${arr_test[@]}"
233         fi
234     done
235     info "Tests to execute: ${TEST}."
236 fi
237
238 if [ $offline == false ]; then
239     info "MODE: online"
240 else
241     info "MODE: offline"
242 fi
243
244 # Check that the functest environment has been installed
245 if [ ! -f ${FUNCTEST_CONF_DIR}/env_active ]; then
246     error "The Functest environment is not installed. \
247         Please run prepare_env.sh before running this script...."
248 fi
249
250
251 # Source credentials
252 info "Sourcing Credentials ${FUNCTEST_CONF_DIR}/openstack.creds to run the tests.."
253 source ${FUNCTEST_CONF_DIR}/openstack.creds
254
255 # Run tests
256 if [ "${TEST}" != "" ]; then
257     for i in "${arr_test_exec[@]}"; do
258         run_test $i
259     done
260 else
261     info "Executing tests..."
262     for i in "${arr_test[@]}"; do
263         run_test $i
264     done
265 fi