blob: 0d808851eccb5a841d0f82d165930a93c5c1ff8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
#!/bin/bash
#
# Author: Jose Lausuch (jose.lausuch@ericsson.com)
#
# Installs the Functest framework within the Docker container
# and run the tests automatically
#
usage="Script to trigger the tests automatically.
usage:
bash $(basename "$0") [--offline] [-h|--help] [-t <test_name>]
where:
-o|--offline optional offline mode (experimental)
-h|--help show this help text
-t|--test run specific set of tests
<test_name> one or more of the following: vping,odl,rally,tempest. Separated by comma.
examples:
$(basename "$0")
$(basename "$0") --test vping,odl
$(basename "$0") --offline -t tempest,rally"
# Support for Functest offline
# NOTE: Still not 100% working when running the tests
offline=false
arr_test=(vping odl tempest vims rally)
function run_test(){
test_name=$1
echo "----------------------------------------------"
echo "------------- Running $i test case "
echo "----------------------------------------------"
case $test_name in
"vping")
info "Running vPing test..."
python ${FUNCTEST_REPO_DIR}/testcases/vPing/CI/libraries/vPing.py --debug ${FUNCTEST_REPO_DIR}/ -r
;;
"odl")
info "Running ODL test..."
if [ $INSTALLER_TYPE == "fuel" ]; then
odl_ip=$(keystone catalog --service network | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
neutron_ip=$(keystone catalog --service identity | grep publicURL | cut -f3 -d"/" | cut -f1 -d":")
usr_name=$(env | grep OS | grep OS_USERNAME | cut -f2 -d'=')
pass=$(env | grep OS | grep OS_PASSWORD | cut -f2 -d'=')
odl_port=8181
ODL_PORT=$odl_port ODL_IP=$odl_ip NEUTRON_IP=$neutron_ip USR_NAME=$usr_name PASS=$pass \
${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
elif [ $INSTALLER_TYPE == "foreman" ]; then
#odl_port=8081
${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
elif [ $INSTALLER_TYPE == "apex" ]; then
# TODO
${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
elif [ $INSTALLER_TYPE == "joid" ]; then
# TODO
${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
elif [ $INSTALLER_TYPE == "compass" ]; then
# TODO
${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/start_tests.sh
else
error "INSTALLER_TYPE not valid."
exit 1
fi
# save ODL results
odl_logs="${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/CI/logs"
if [ -d ${odl_logs} ]; then
cp -Rf ${odl_logs} ${FUNCTEST_CONF_DIR}/ODL/
fi
;;
"tempest")
info "Running Tempest smoke tests..."
rally verify start smoke
rally verify list
# save tempest.conf for further troubleshooting
tempest_conf="${RALLY_VENV_DIR}/tempest/for-deployment-*/tempest.conf"
if [ -f ${tempest_conf} ]; then
cp $tempest_conf ${FUNCTEST_CONF_DIR}
fi
;;
"vims")
info "Running vIMS test..."
python ${FUNCTEST_REPO_DIR}/testcases/vIMS/CI/vIMS.py --debug ${FUNCTEST_REPO_DIR}/
;;
"rally")
info "Running Rally benchmark suite..."
python ${FUNCTEST_REPO_DIR}/testcases/VIM/OpenStack/CI/libraries/run_rally.py --debug ${FUNCTEST_REPO_DIR}/ all
;;
esac
}
# Parse parameters
while [[ $# > 0 ]]
do
key="$1"
case $key in
-h|--help)
echo "$usage"
exit 0
shift
;;
-o|--offline)
offline=true
;;
-t|--test|--tests)
TEST="$2"
shift
;;
*)
echo "unknown option $1 $2"
exit 1
;;
esac
shift # past argument or value
done
BASEDIR=`dirname $0`
source ${BASEDIR}/common.sh
# Check that the given tests are correct
if [ "${TEST}" != "" ]; then
arr_test_exec=(${TEST//,/ })
for i in "${arr_test_exec[@]}"; do
if [[ " ${arr_test[*]} " != *" $i "* ]]; then
error "Unknown test: $i. Available tests are: ${arr_test[@]}"
fi
done
info "Tests to execute: ${TEST}."
fi
if [ $offline == false ]; then
info "MODE: online"
else
info "MODE: offline"
fi
# Check that the functest environment has been installed
if [ ! -f ${FUNCTEST_CONF_DIR}/env_active ]; then
error "The Functest environment is not installed. \
Please run prepare_env.sh before running this script...."
fi
# Source credentials
info "Sourcing Credentials ${FUNCTEST_CONF_DIR}/openstack.creds to run the tests.."
source ${FUNCTEST_CONF_DIR}/openstack.creds
# Run tests
if [ "${TEST}" != "" ]; then
for i in "${arr_test_exec[@]}"; do
run_test $i
done
else
info "Executing all the tests"
for i in "${arr_test[@]}"; do
run_test $i
done
fi
|