Bugfix: fix the wrong path for security scan
[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
65
66 function run_test(){
67     test_name=$1
68     serial_flag=""
69     if [ $serial == "true" ]; then
70         serial_flag="-s"
71     fi
72
73     case $test_name in
74         "healthcheck")
75             ${FUNCTEST_TEST_DIR}/openstack/healthcheck/healthcheck.sh
76         ;;
77         "odl")
78             odl_tests
79             [[ "$report" == "-r" ]] && args=-p
80             ${FUNCTEST_TEST_DIR}/sdn/odl/odl.py \
81                 --keystoneip $keystone_ip --neutronip $neutron_ip \
82                 --osusername ${OS_USERNAME} --ostenantname ${OS_TENANT_NAME} \
83                 --ospassword ${OS_PASSWORD} \
84                 --odlip $odl_ip --odlwebport $odl_port ${args}
85         ;;
86         "vims")
87             python ${FUNCTEST_TEST_DIR}/vnf/ims/vims.py $clean_flag $report
88         ;;
89         "rally_full")
90             python ${FUNCTEST_TEST_DIR}/openstack/rally/run_rally-cert.py $clean_flag all $report
91         ;;
92         "rally_sanity")
93             python ${FUNCTEST_TEST_DIR}/openstack/rally/run_rally-cert.py \
94                 $clean_flag --sanity all $report
95         ;;
96         "onos")
97             python ${FUNCTEST_TEST_DIR}/sdn/onos/teston/onos.py
98         ;;
99         "onos_sfc")
100             python ${FUNCTEST_TEST_DIR}/sdn/onos/teston/onos.py -t sfc
101         ;;
102         "promise")
103             python ${FUNCTEST_TEST_DIR}/features/promise.py $report
104             sleep 10 # to let the instances terminate
105         ;;
106         "doctor")
107             python ${FUNCTEST_TEST_DIR}/features/doctor.py $report
108         ;;
109         "ovno")
110             # suite under rewritting for colorado
111             # no need to run anything until refactoring done
112             # ${REPOS_DIR}/ovno/Testcases/RunTests.sh
113         ;;
114         "security_scan")
115             echo "Sourcing Credentials ${FUNCTEST_CONF_DIR}/stackrc for undercloud .."
116             source ${FUNCTEST_CONF_DIR}/stackrc
117             python ${FUNCTEST_TEST_DIR}/security_scan/security_scan.py --config ${FUNCTEST_TEST_DIR}/security_scan/config.ini
118         ;;
119         "copper")
120             python ${FUNCTEST_TEST_DIR}/features/copper.py $report
121         ;;
122         "moon")
123             python ${REPOS_DIR}/moon/tests/run_tests.py $report
124         ;;
125         *)
126             echo "The test case '${test_name}' does not exist."
127             exit 1
128     esac
129
130     if [[ $? != 0 ]]; then exit 1
131     else exit 0
132     fi
133 }
134
135
136 # Parse parameters
137 while [[ $# > 0 ]]
138     do
139     key="$1"
140     case $key in
141         -h|--help)
142             echo "$usage"
143             exit 0
144             shift
145         ;;
146         -r|--report)
147             report="-r"
148         ;;
149         -s|--serial)
150             serial=true
151         ;;
152         -t|--test|--tests)
153             TEST="$2"
154             shift
155         ;;
156         *)
157             echo "unknown option $1 $2"
158             exit 1
159         ;;
160     esac
161     shift # past argument or value
162 done
163
164
165 # Source credentials
166 echo "Sourcing Credentials ${creds} to run the test.."
167 source ${creds}
168
169
170 # Run test
171 run_test $TEST