Fixed documentation for ApexLake
[yardstick.git] / ci / yardstick-verify
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2015 Ericsson AB and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 #
12 # Set up the environment and run yardstick test suites.
13 #
14 # Example invocation: yardstick-verify -r 10.4.4.4 suite1.yaml suite2.yaml
15 #
16 # Openstack credentials must be set and the script must be run from its
17 # original location in the yardstick repo.
18 #
19 # This script is intended to be used by the CI pipeline but it may also
20 # be invoked manually.
21 #
22
23 SCRIPT=$0
24 SCRIPT_ARGS=$@
25
26 usage()
27 {
28     cat << EOF
29 usage: $0 options [TEST_SUITE ...]
30
31 If no test suites are given ping.yaml is run.
32
33 OPTIONS:
34    -h      Show this message
35    -r      Http target (example: -r 213.77.62.197/results)
36    -i      Influxdb target (example: -i 127.0.0.1:8086)
37
38            Default target is dump to file ($DISPATCHER_FILE_NAME)
39
40 EOF
41 }
42
43 DISPATCHER_TYPE=file
44 DISPATCHER_FILE_NAME="/tmp/yardstick.out"
45 DISPATCHER_HTTP_TARGET=
46 DISPATCHER_INFLUXDB_TARGET=
47
48 while getopts "r:i:h" OPTION; do
49     case $OPTION in
50         h)
51             usage
52             exit 0
53             ;;
54         r)
55             DISPATCHER_TYPE=http
56             DISPATCHER_HTTP_TARGET=http://${OPTARG}
57             ;;
58         i)
59             DISPATCHER_TYPE=influxdb
60             DISPATCHER_INFLUXDB_TARGET=http://${OPTARG}
61             ;;
62         *)
63             echo "${OPTION} is not a valid argument"
64             exit 1
65             ;;
66     esac
67 done
68
69 shift $[OPTIND - 1]
70 TEST_SUITES=$@
71
72 cleanup()
73 {
74     echo
75     echo "========== Cleanup =========="
76
77     if ! glance image-list; then
78         return
79     fi
80
81     for image in $(glance image-list | grep -e cirros-0.3.3 -e yardstick-trusty-server | awk '{print $2}'); do
82         echo "Deleting image $image..."
83         glance image-delete $image || true
84     done
85
86     nova flavor-delete yardstick-flavor &> /dev/null || true
87 }
88
89 exitcode=""
90
91 error_exit()
92 {
93     local rc=$?
94
95     if [ -z "$exitcode" ]; then
96         # In case of recursive traps (!?)
97         exitcode=$rc
98     fi
99
100     cleanup
101
102     echo "Exiting with RC=$exitcode"
103
104     exit $exitcode
105 }
106
107 set -o errexit
108 set -o pipefail
109
110 install_yardstick()
111 {
112     echo
113     echo "========== Installing yardstick =========="
114
115     if ! sudo python setup.py install; then
116         echo 'Yardstick installation failed!'
117         exit 1
118     fi
119 }
120
121 build_yardstick_image()
122 {
123     echo
124     echo "========== Build yardstick cloud image =========="
125
126     sudo $(which yardstick-img-modify) $(pwd)/tools/ubuntu-server-cloudimg-modify.sh
127     if [ ! -f $QCOW_IMAGE ]; then
128         echo "Failed building QCOW image"
129         exit 1
130     fi
131 }
132
133 create_nova_flavor()
134 {
135     if ! nova flavor-list | grep -q yardstick-flavor; then
136         echo
137         echo "========== Create nova flavor =========="
138         # Create the nova flavor used by some sample test cases
139         nova flavor-create yardstick-flavor 100 512 3 1
140     fi
141 }
142
143 load_cirros_image()
144 {
145     echo
146     echo "========== Loading cirros cloud image =========="
147
148     local image_file=/home/opnfv/images/cirros-0.3.3-x86_64-disk.img
149
150     output=$(glance image-create \
151         --name  cirros-0.3.3 \
152         --disk-format qcow2 \
153         --container-format bare \
154         --file $image_file)
155     echo "$output"
156
157     CIRROS_IMAGE_ID=$(echo "$output" | grep " id " | awk '{print $(NF-1)}')
158     if [ -z "$CIRROS_IMAGE_ID" ]; then
159         echo 'Failed uploading cirros image to cloud'.
160         exit 1
161     fi
162
163     echo "Cirros image id: $CIRROS_IMAGE_ID"
164 }
165
166 load_yardstick_image()
167 {
168     echo
169     echo "========== Loading yardstick cloud image =========="
170
171     output=$(glance --os-image-api-version 1 image-create \
172         --name yardstick-trusty-server \
173         --is-public true --disk-format qcow2 \
174         --container-format bare \
175         --file $QCOW_IMAGE)
176     echo "$output"
177
178     GLANCE_IMAGE_ID=$(echo "$output" | grep " id " | awk '{print $(NF-1)}')
179
180     if [ -z "$GLANCE_IMAGE_ID" ]; then
181         echo 'Failed uploading image to cloud'.
182         exit 1
183     fi
184
185     sudo rm -f $QCOW_IMAGE
186
187     echo "Glance image id: $GLANCE_IMAGE_ID"
188 }
189
190 run_test()
191 {
192     echo
193     echo "========== Running yardstick test suites =========="
194
195     mkdir -p /etc/yardstick
196
197     cat << EOF >> /etc/yardstick/yardstick.conf
198 [DEFAULT]
199 debug = True
200 dispatcher = ${DISPATCHER_TYPE}
201
202 [dispatcher_file]
203 file_name = ${DISPATCHER_FILE_NAME}
204
205 [dispatcher_http]
206 timeout = 5
207 target = ${DISPATCHER_HTTP_TARGET}
208
209 [dispatcher_influxdb]
210 timeout = 5
211 target = ${DISPATCHER_INFLUXDB_TARGET}
212 db_name = yardstick
213 EOF
214
215     local failed=0
216
217     if [ ${#SUITE_FILES[@]} -gt 0 ]; then
218
219         for suite in ${SUITE_FILES[*]}; do
220
221             echo "---------------------------"
222             echo "Running test suite: $suite"
223             echo "---------------------------"
224
225             if ! yardstick task start --suite $suite; then
226                  echo "test suite $suite FAILED";
227
228                 # Mark the test suite failed but continue
229                 # running the remaining test suites.
230                 (( failed++ ))
231             fi
232             if [ ${DISPATCHER_TYPE} = file ]; then
233                 echo "---------------------------"
234                 echo "Dump test suite $suite result"
235                 echo "---------------------------"
236                 if [ -f ${DISPATCHER_FILE_NAME} ]; then
237                     cat ${DISPATCHER_FILE_NAME}
238                 else
239                     echo "Test result file ${DISPATCHER_FILE_NAME} is not exist"
240                 fi
241             fi
242
243         done
244
245         if [ $failed -gt 0 ]; then
246
247             echo "---------------------------"
248             echo "$failed out of ${SUITE_FILES[*]} test suites FAILED"
249             echo "---------------------------"
250             exit 1
251          fi
252
253     else
254
255         echo "---------------------------"
256         echo "Running samples/ping.yaml  "
257         echo "---------------------------"
258
259         if ! yardstick task start samples/ping.yaml; then
260             echo "Yardstick test FAILED"
261             exit 1
262         fi
263
264         if [ ${DISPATCHER_TYPE} = file ]; then
265             echo "---------------------------"
266             echo "Dump samples/ping.yaml test result"
267             echo "---------------------------"
268             if [ -f ${DISPATCHER_FILE_NAME} ]; then
269                 cat ${DISPATCHER_FILE_NAME}
270             else
271                 echo "Test result file ${DISPATCHER_FILE_NAME} is not exist"
272             fi
273         fi
274
275     fi
276
277 }
278
279 main()
280 {
281     GITROOT=$(cd $(dirname $0) && git rev-parse --show-toplevel)
282
283     cd $GITROOT
284
285     export YARDSTICK_VERSION=$(git rev-parse HEAD)
286
287     SUITE_FILES=()
288
289     # find the test suite files
290     for suite in $TEST_SUITES; do
291         if [ -f $suite ]; then
292             SUITE_FILES+=($suite)
293         else
294             tsdir=$GITROOT/tests/opnfv/test_suites
295             if [ ! -f $tsdir/$suite ]; then
296                 echo "Test suite \"$suite\" does not exist"
297                 exit 1
298             fi
299             SUITE_FILES+=($tsdir/$suite)
300         fi
301     done
302
303     echo
304     echo "========== Running Yardstick CI with following parameters =========="
305     echo "Script options: ${SCRIPT} $SCRIPT_ARGS"
306     echo "Result API: ${DISPATCHER_HTTP_TARGET:-$DISPATCHER_FILE_NAME}"
307     echo "YARDSTICK_VERSION: ${YARDSTICK_VERSION}"
308     echo "Number of test suites: ${#SUITE_FILES[@]}"
309     for suite in ${SUITE_FILES[*]}; do
310         echo "     $suite"
311     done
312
313     # install yardstick
314     install_yardstick
315
316     # check if some necessary variables is set
317     if [ -z "$OS_AUTH_URL" ]; then
318         echo "OS_AUTH_URL is unset or empty"
319         exit 1
320     fi
321
322     # check if the api is up
323     echo "Checking if OS API is working..."
324     if ! glance image-list > /dev/null; then
325         echo "OS API is down"
326         exit 1
327     fi
328
329     cleanup
330
331     trap "error_exit" EXIT SIGTERM
332
333     QCOW_IMAGE="/tmp/workspace/yardstick/yardstick-trusty-server.img"
334
335     build_yardstick_image
336     load_yardstick_image
337     load_cirros_image
338     create_nova_flavor
339
340     run_test
341 }
342
343 main