Merge "Adapt vping testcases to the new template"
[functest.git] / functest / 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_TEST_DIR=${repos_dir}/functest/functest/opnfv_tests
41 FUNCTEST_CONF_DIR=/home/opnfv/functest/conf
42
43 export PYTHONUNBUFFERED=1
44
45 function odl_tests(){
46     keystone_ip=$(openstack catalog show identity |grep publicURL| cut -f3 -d"/" | cut -f1 -d":")
47     neutron_ip=$(openstack catalog show network | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
48     odl_ip=${neutron_ip}
49     odl_port=8080
50     if [ "$INSTALLER_TYPE" == "fuel" ]; then
51         odl_port=8282
52     elif [ "$INSTALLER_TYPE" == "apex" ]; then
53         odl_ip=$SDN_CONTROLLER_IP
54         odl_port=8181
55     elif [ "$INSTALLER_TYPE" == "joid" ]; then
56         odl_ip=$SDN_CONTROLLER
57     elif [ "$INSTALLER_TYPE" == "compass" ]; then
58         odl_port=8181
59     else
60         odl_ip=$SDN_CONTROLLER_IP
61     fi
62 }
63
64 function sfc_prepare(){
65     ids=($(neutron security-group-list|grep default|awk '{print $2}'))
66     for id in ${ids[@]}; do
67         if ! neutron security-group-show $id|grep "22/tcp" &>/dev/null; then
68             neutron security-group-rule-create --protocol tcp \
69                 --port-range-min 22 --port-range-max 22 --direction ingress $id
70             neutron security-group-rule-create --protocol tcp \
71                 --port-range-min 22 --port-range-max 22 --direction egress $id
72         fi
73     done
74 }
75
76 function run_test(){
77     test_name=$1
78     serial_flag=""
79     if [ $serial == "true" ]; then
80         serial_flag="-s"
81     fi
82
83     case $test_name in
84         "healthcheck")
85             ${FUNCTEST_TEST_DIR}/OpenStack/healthcheck/healthcheck.sh
86         ;;
87         "odl")
88             odl_tests
89             [[ "$report" == "-r" ]] && args=-p
90             ${FUNCTEST_TEST_DIR}/Controllers/ODL/OpenDaylightTesting.py \
91                 --keystoneip $keystone_ip --neutronip $neutron_ip \
92                 --osusername ${OS_USERNAME} --ostenantname ${OS_TENANT_NAME} \
93                 --ospassword ${OS_PASSWORD} \
94                 --odlip $odl_ip --odlwebport $odl_port ${args}
95         ;;
96         "tempest_smoke_serial")
97             python ${FUNCTEST_TEST_DIR}/OpenStack/tempest/run_tempest.py \
98                 $clean_flag -s -m smoke $report
99         ;;
100         "tempest_full_parallel")
101             python ${FUNCTEST_TEST_DIR}/OpenStack/tempest/run_tempest.py \
102                 $serial_flag $clean_flag -m full $report
103         ;;
104         "vims")
105             python ${FUNCTEST_TEST_DIR}/vnf/vIMS/vIMS.py $clean_flag $report
106         ;;
107         "rally_full")
108             python ${FUNCTEST_TEST_DIR}/OpenStack/rally/run_rally-cert.py $clean_flag all $report
109         ;;
110         "rally_sanity")
111             python ${FUNCTEST_TEST_DIR}/OpenStack/rally/run_rally-cert.py \
112                 $clean_flag --sanity all $report
113         ;;
114         "bgpvpn")
115             sdnvpn_repo_dir=${repos_dir}/sdnvpn/test/functest/
116             python ${sdnvpn_repo_dir}/run_tests.py $report
117         ;;
118         "onos")
119             python ${FUNCTEST_TEST_DIR}/Controllers/ONOS/Teston/onosfunctest.py
120         ;;
121         "onos_sfc")
122             python ${FUNCTEST_TEST_DIR}/Controllers/ONOS/Teston/onosfunctest.py -t sfc
123         ;;
124         "promise")
125             python ${FUNCTEST_TEST_DIR}/features/promise.py $report
126             sleep 10 # to let the instances terminate
127         ;;
128         "doctor")
129             python ${FUNCTEST_TEST_DIR}/features/doctor.py $report
130         ;;
131         "ovno")
132             # suite under rewritting for colorado
133             # no need to run anything until refactoring done
134             # ${repos_dir}/ovno/Testcases/RunTests.sh
135         ;;
136         "security_scan")
137             echo "Sourcing Credentials ${FUNCTEST_CONF_DIR}/stackrc for undercloud .."
138             source ${FUNCTEST_CONF_DIR}/stackrc
139             python ${repos_dir}/securityscanning/security_scan.py --config ${repos_dir}/securityscanning/config.ini
140         ;;
141         "copper")
142             python ${FUNCTEST_TEST_DIR}/features/copper.py $report
143         ;;
144         "moon")
145             python ${repos_dir}/moon/tests/run_tests.py $report
146         ;;
147         "multisite")
148             python ${FUNCTEST_TEST_DIR}/OpenStack/tempest/gen_tempest_conf.py
149             python ${FUNCTEST_TEST_DIR}/OpenStack/tempest/run_tempest.py \
150                 $clean_flag -s -m feature_multisite $report \
151                 -c ${FUNCTEST_TEST_DIR}/OpenStack/tempest/tempest_multisite.conf
152         ;;
153         "odl-sfc")
154             ODL_SFC_DIR=${repos_dir}/sfc/tests/functest/odl-sfc
155             FUNCTEST_REPO_DIR=${FUNCTEST_REPO_DIR} python ${ODL_SFC_DIR}/prepare_odl_sfc.py || exit $?
156             source ${ODL_SFC_DIR}/tackerc
157             python ${ODL_SFC_DIR}/sfc.py $report
158         ;;
159         "parser")
160             python ${FUNCTEST_TEST_DIR}/vnf/vRNC/parser.py $report
161         ;;
162         *)
163             echo "The test case '${test_name}' does not exist."
164             exit 1
165     esac
166
167     if [[ $? != 0 ]]; then exit 1
168     else exit 0
169     fi
170 }
171
172
173 # Parse parameters
174 while [[ $# > 0 ]]
175     do
176     key="$1"
177     case $key in
178         -h|--help)
179             echo "$usage"
180             exit 0
181             shift
182         ;;
183         -r|--report)
184             report="-r"
185         ;;
186         -s|--serial)
187             serial=true
188         ;;
189         -t|--test|--tests)
190             TEST="$2"
191             shift
192         ;;
193         *)
194             echo "unknown option $1 $2"
195             exit 1
196         ;;
197     esac
198     shift # past argument or value
199 done
200
201
202 # Source credentials
203 echo "Sourcing Credentials ${FUNCTEST_CONF_DIR}/openstack.creds to run the test.."
204 source ${FUNCTEST_CONF_DIR}/openstack.creds
205
206 # ODL Boron workaround to create additional flow rules to allow port 22 TCP
207 if [[ $DEPLOY_SCENARIO == *"odl_l2-sfc"* ]]; then
208     sfc_prepare
209 fi
210
211 # Run test
212 run_test $TEST