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
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
16 usage="Script to trigger the tests automatically.
19 bash $(basename "$0") [-h|--help] [-t <test_name>]
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
32 # Get the list of runnable tests
33 # Check if we are in CI mode
35 if [[ "${CI_DEBUG,,}" == "true" ]];then
39 FUNCTEST_REPO_DIR=${repos_dir}/functest
40 FUNCTEST_CONF_DIR=/home/opnfv/functest/conf
44 keystone_ip=$(openstack catalog show identity |grep publicURL| cut -f3 -d"/" | cut -f1 -d":")
45 neutron_ip=$(openstack catalog show network | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
48 if [ "$INSTALLER_TYPE" == "fuel" ]; then
50 elif [ "$INSTALLER_TYPE" == "apex" ]; then
51 odl_ip=$SDN_CONTROLLER_IP
52 elif [ "$INSTALLER_TYPE" == "joid" ]; then
53 odl_ip=$SDN_CONTROLLER
56 elif [ "$INSTALLER_TYPE" == "compass" ]; then
59 odl_ip=$SDN_CONTROLLER_IP
67 if [ $serial == "true" ]; then
73 ${FUNCTEST_REPO_DIR}/testcases/OpenStack/healthcheck/healthcheck.sh
76 python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/vPing/vPing_ssh.py $report
79 python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/vPing/vPing_userdata.py $report
83 if [[ "$report" == "-r" &&
84 -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" &&
85 -n "$INSTALLER_TYPE" && "$INSTALLER_TYPE" != "none" ]] &&
86 env | grep NODE_NAME > /dev/null; then
89 ${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/OpenDaylightTesting.py \
90 --keystoneip $keystone_ip --neutronip $neutron_ip \
91 --osusername ${OS_USERNAME} --ostenantname ${OS_TENANT_NAME} \
92 --ospassword ${OS_PASSWORD} \
93 --odlip $odl_ip --odlwebport $odl_port ${args}
95 "tempest_smoke_serial")
96 python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/run_tempest.py \
97 $clean_flag -s -m smoke $report
99 "tempest_full_parallel")
100 python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/run_tempest.py \
101 $serial_flag $clean_flag -m full $report
104 python ${FUNCTEST_REPO_DIR}/testcases/vnf/vIMS/vIMS.py $clean_flag $report
107 python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/rally/run_rally-cert.py $clean_flag all $report
110 python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/rally/run_rally-cert.py \
111 $clean_flag --sanity all $report
114 sdnvpn_repo_dir=${repos_dir}/sdnvpn/test/functest/
115 python ${sdnvpn_repo_dir}/run_tests.py $report
118 python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/onosfunctest.py
121 python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/onosfunctest.py -t sfc
124 python ${FUNCTEST_REPO_DIR}/testcases/features/promise.py $report
125 sleep 10 # to let the instances terminate
128 python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py $report
131 # suite under rewritting for colorado
132 # no need to run anything until refactoring done
133 # ${repos_dir}/ovno/Testcases/RunTests.sh
136 echo "Sourcing Credentials ${FUNCTEST_CONF_DIR}/stackrc for undercloud .."
137 source ${FUNCTEST_CONF_DIR}/stackrc
138 python ${repos_dir}/securityscanning/security_scan.py --config ${repos_dir}/securityscanning/config.ini
141 python ${FUNCTEST_REPO_DIR}/testcases/features/copper.py $report
144 python ${repos_dir}/moon/tests/run_tests.py $report
147 python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/gen_tempest_conf.py
148 python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/run_tempest.py \
149 $clean_flag -s -m feature_multisite $report \
150 -c ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/tempest_multisite.conf
153 python ${FUNCTEST_REPO_DIR}/testcases/features/domino.py $report
156 bash ${FUNCTEST_REPO_DIR}/testcases/features/sfc/server_presetup_CI.bash
158 if [ $ret_val != 0 ]; then
161 bash ${FUNCTEST_REPO_DIR}/testcases/features/sfc/compute_presetup_CI.bash
163 if [ $ret_val != 0 ]; then
166 source ${FUNCTEST_REPO_DIR}/testcases/features/sfc/tackerc
167 python ${FUNCTEST_REPO_DIR}/testcases/features/sfc/sfc.py $report
170 python ${FUNCTEST_REPO_DIR}/testcases/vnf/vRNC/parser.py $report
173 echo "The test case '${test_name}' does not exist."
177 if [[ $? != 0 ]]; then exit 1
204 echo "unknown option $1 $2"
208 shift # past argument or value
213 echo "Sourcing Credentials ${FUNCTEST_CONF_DIR}/openstack.creds to run the test.."
214 source ${FUNCTEST_CONF_DIR}/openstack.creds