Merge "Change novaclient usage"
[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. 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 odl tempest vims rally onos)
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 case: $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                 pass
73             elif [ $INSTALLER_TYPE == "joid" ]; then
74                 pass
75             elif [ $INSTALLER_TYPE == "compass" ]; then
76                 pass
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     esac
142 }
143
144
145 # Parse parameters
146 while [[ $# > 0 ]]
147     do
148     key="$1"
149     case $key in
150         -h|--help)
151             echo "$usage"
152             exit 0
153             shift
154         ;;
155         -o|--offline)
156             offline=true
157         ;;
158         -r|--report)
159             report="-r"
160         ;;
161         -t|--test|--tests)
162             TEST="$2"
163             shift
164         ;;
165         *)
166             echo "unknown option $1 $2"
167             exit 1
168         ;;
169     esac
170     shift # past argument or value
171 done
172
173 BASEDIR=`dirname $0`
174 source ${BASEDIR}/common.sh
175
176
177 # Check that the given tests are correct
178 if [ "${TEST}" != "" ]; then
179     arr_test_exec=(${TEST//,/ })
180     for i in "${arr_test_exec[@]}"; do
181         if [[ " ${arr_test[*]} " != *" $i "* ]]; then
182             error "Unknown test: $i. Available tests are: ${arr_test[@]}"
183         fi
184     done
185     info "Tests to execute: ${TEST}."
186 fi
187
188 if [ $offline == false ]; then
189     info "MODE: online"
190 else
191     info "MODE: offline"
192 fi
193
194 # Check that the functest environment has been installed
195 if [ ! -f ${FUNCTEST_CONF_DIR}/env_active ]; then
196     error "The Functest environment is not installed. \
197         Please run prepare_env.sh before running this script...."
198 fi
199
200
201 # Source credentials
202 info "Sourcing Credentials ${FUNCTEST_CONF_DIR}/openstack.creds to run the tests.."
203 source ${FUNCTEST_CONF_DIR}/openstack.creds
204
205 # Run tests
206 if [ "${TEST}" != "" ]; then
207     for i in "${arr_test_exec[@]}"; do
208         run_test $i
209     done
210 else
211     info "Executing all the tests"
212     for i in "${arr_test[@]}"; do
213         run_test $i
214     done
215 fi