bdb91003d223414e8f2a7e4b207985978e48563c
[yardstick.git] / tests / 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="http://testresults.opnfv.org/test/api/v1/results"
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             DISPATCHER_FILE_NAME=
58             ;;
59         i)
60             DISPATCHER_TYPE=influxdb
61             DISPATCHER_INFLUXDB_TARGET=http://${OPTARG}
62             DISPATCHER_FILE_NAME=
63             ;;
64         *)
65             echo "${OPTION} is not a valid argument"
66             exit 1
67             ;;
68     esac
69 done
70
71 shift $[OPTIND - 1]
72 TEST_SUITES=$@
73
74 cleanup()
75 {
76     echo
77     echo "========== Cleanup =========="
78
79     if ! glance image-list; then
80         return
81     fi
82
83     for image in $(glance image-list | grep -e cirros-0.3.3 -e yardstick-trusty-server -e Ubuntu-14.04 | awk '{print $2}'); do
84         echo "Deleting image $image..."
85         glance image-delete $image || true
86     done
87
88     nova flavor-delete yardstick-flavor &> /dev/null || true
89 }
90
91 exitcode=""
92
93 error_exit()
94 {
95     local rc=$?
96
97     if [ -z "$exitcode" ]; then
98         # In case of recursive traps (!?)
99         exitcode=$rc
100     fi
101
102     cleanup
103
104     echo "Exiting with RC=$exitcode"
105
106     exit $exitcode
107 }
108
109 set -o errexit
110 set -o pipefail
111
112 install_yardstick()
113 {
114     echo
115     echo "========== Installing yardstick =========="
116
117     # uninstall previous version
118     pip uninstall -y yardstick || true
119
120     # Install yardstick
121     pip install .
122 }
123
124 install_storperf()
125 {
126     # Install Storper on huawei-pod1
127     if [ "$NODE_NAME" == "huawei-pod1" ]; then
128         echo
129         echo "========== Installing storperf =========="
130
131         if ! yardstick -d plugin install plugin/CI/storperf.yaml; then
132             echo "Install storperf plugin FAILED";
133             exit 1
134         fi
135
136         echo
137         echo "========== Installed storperf container =========="
138     fi
139 }
140
141 build_yardstick_image()
142 {
143     echo
144     echo "========== Build yardstick cloud image =========="
145
146     local cmd="sudo $(which yardstick-img-modify) $(pwd)/tools/ubuntu-server-cloudimg-modify.sh"
147
148     # Build the image. Retry once if the build fails.
149     $cmd || $cmd
150
151     if [ ! -f $QCOW_IMAGE ]; then
152         echo "Failed building QCOW image"
153         exit 1
154     fi
155 }
156
157 create_nova_flavor()
158 {
159     if ! nova flavor-list | grep -q yardstick-flavor; then
160         echo
161         echo "========== Create nova flavor =========="
162         # Create the nova flavor used by some sample test cases
163         nova flavor-create yardstick-flavor 100 512 3 1
164         # DPDK-enabled OVS requires guest memory to be backed by large pages
165         if [[ "$DEPLOY_SCENARIO" == *"-ovs-"* ]]; then
166             nova flavor-key yardstick-flavor set hw:mem_page_size=large
167         fi
168     fi
169 }
170
171 load_cirros_image()
172 {
173     echo
174     echo "========== Loading cirros cloud image =========="
175
176     local image_file=/home/opnfv/images/cirros-0.3.3-x86_64-disk.img
177
178     output=$(glance image-create \
179         --name  cirros-0.3.3 \
180         --disk-format qcow2 \
181         --container-format bare \
182         --file $image_file)
183     echo "$output"
184
185     CIRROS_IMAGE_ID=$(echo "$output" | grep " id " | awk '{print $(NF-1)}')
186     if [ -z "$CIRROS_IMAGE_ID" ]; then
187         echo 'Failed uploading cirros image to cloud'.
188         exit 1
189     fi
190
191     echo "Cirros image id: $CIRROS_IMAGE_ID"
192 }
193
194 load_ubuntu_image()
195 {
196     echo
197     echo "========== Loading ubuntu cloud image =========="
198
199     local ubuntu_image_file=/home/opnfv/images/trusty-server-cloudimg-amd64-disk1.img
200
201     output=$(glance image-create \
202         --name Ubuntu-14.04 \
203         --disk-format qcow2 \
204         --container-format bare \
205         --file $ubuntu_image_file)
206     echo "$output"
207
208     UBUNTU_IMAGE_ID=$(echo "$output" | grep " id " | awk '{print $(NF-1)}')
209
210     if [ -z "$UBUNTU_IMAGE_ID" ]; then
211         echo 'Failed uploading UBUNTU image to cloud'.
212         exit 1
213     fi
214
215     echo "Ubuntu image id: $UBUNTU_IMAGE_ID"
216 }
217
218 load_yardstick_image()
219 {
220     echo
221     echo "========== Loading yardstick cloud image =========="
222
223     output=$(glance --os-image-api-version 1 image-create \
224         --name yardstick-trusty-server \
225         --is-public true --disk-format qcow2 \
226         --container-format bare \
227         --file $QCOW_IMAGE)
228     echo "$output"
229
230     GLANCE_IMAGE_ID=$(echo "$output" | grep " id " | awk '{print $(NF-1)}')
231
232     if [ -z "$GLANCE_IMAGE_ID" ]; then
233         echo 'Failed uploading image to cloud'.
234         exit 1
235     fi
236
237     sudo rm -f $QCOW_IMAGE
238
239     echo "Glance image id: $GLANCE_IMAGE_ID"
240 }
241
242 run_test()
243 {
244     echo
245     echo "========== Running yardstick test suites =========="
246
247     mkdir -p /etc/yardstick
248
249     cat << EOF >> /etc/yardstick/yardstick.conf
250 [DEFAULT]
251 debug = True
252 dispatcher = ${DISPATCHER_TYPE}
253
254 [dispatcher_file]
255 file_name = ${DISPATCHER_FILE_NAME}
256
257 [dispatcher_http]
258 timeout = 5
259 target = ${DISPATCHER_HTTP_TARGET}
260
261 [dispatcher_influxdb]
262 timeout = 5
263 target = ${DISPATCHER_INFLUXDB_TARGET}
264 db_name = yardstick
265 username = opnfv
266 password = 0pnfv2015
267 EOF
268
269     local failed=0
270
271     if [ ${#SUITE_FILES[@]} -gt 0 ]; then
272
273         for suite in ${SUITE_FILES[*]}; do
274
275             echo "---------------------------"
276             echo "Running test suite: $suite"
277             echo "---------------------------"
278
279             if ! yardstick task start --suite $suite; then
280                  echo "test suite $suite FAILED";
281
282                 # Mark the test suite failed but continue
283                 # running the remaining test suites.
284                 (( failed++ ))
285             fi
286             if [ ${DISPATCHER_TYPE} = file ]; then
287                 echo "---------------------------"
288                 echo "Dump test suite $suite result"
289                 echo "---------------------------"
290                 if [ -f ${DISPATCHER_FILE_NAME} ]; then
291                     cat ${DISPATCHER_FILE_NAME}
292                 else
293                     echo "Test result file ${DISPATCHER_FILE_NAME} is not exist"
294                 fi
295             fi
296
297         done
298
299         local sceanrio_status="SUCCESS"
300
301         if [ $failed -gt 0 ]; then
302             scenario_status="FAILED"
303         fi
304         curl -i -H 'content-type: application/json' -X POST -d \
305             "{\"project_name\": \"yardstick\",
306               \"pod_name\":\"${NODE_NAME}\",
307               \"installer\":\"${INSTALLER_TYPE}\",
308               \"description\": \"yardstick ci scenario status\",
309               \"case_name\": \"scenario_status\",
310               \"version\":\"${YARDSTICK_BRANCH}\",
311               \"scenario\":\"${DEPLOY_SCENARIO}\",
312               \"details\":\"${sceanrio_status}\"}" \
313               ${DISPATCHER_HTTP_TARGET}
314
315         if [ $failed -gt 0 ]; then
316             echo "---------------------------"
317             echo "$failed out of ${SUITE_FILES[*]} test suites FAILED"
318             echo "---------------------------"
319             exit 1
320         fi
321
322     else
323
324         echo "---------------------------"
325         echo "Running samples/ping.yaml  "
326         echo "---------------------------"
327
328         if ! yardstick task start samples/ping.yaml; then
329             echo "Yardstick test FAILED"
330             exit 1
331         fi
332
333         if [ ${DISPATCHER_TYPE} = file ]; then
334             echo "---------------------------"
335             echo "Dump samples/ping.yaml test result"
336             echo "---------------------------"
337             if [ -f ${DISPATCHER_FILE_NAME} ]; then
338                 cat ${DISPATCHER_FILE_NAME}
339             else
340                 echo "Test result file ${DISPATCHER_FILE_NAME} is not exist"
341             fi
342         fi
343
344     fi
345
346 }
347
348 main()
349 {
350     GITROOT=$(cd $(dirname $0) && git rev-parse --show-toplevel)
351
352     cd $GITROOT
353
354     export YARDSTICK_VERSION=$(git rev-parse HEAD)
355
356     SUITE_FILES=()
357
358     # find the test suite files
359     for suite in $TEST_SUITES; do
360         if [ -f $suite ]; then
361             SUITE_FILES+=($suite)
362         else
363             tsdir=$GITROOT/tests/opnfv/test_suites
364             if [ ! -f $tsdir/$suite ]; then
365                 echo "Test suite \"$suite\" does not exist"
366                 exit 1
367             fi
368             SUITE_FILES+=($tsdir/$suite)
369         fi
370     done
371
372     echo
373     echo "========== Running Yardstick CI with following parameters =========="
374     echo "Script options: ${SCRIPT} $SCRIPT_ARGS"
375     echo "Dispatcher: ${DISPATCHER_TYPE} ${DISPATCHER_FILE_NAME}"
376     echo "YARDSTICK_VERSION: ${YARDSTICK_VERSION}"
377     echo "Number of test suites: ${#SUITE_FILES[@]}"
378     for suite in ${SUITE_FILES[*]}; do
379         echo "     $suite"
380     done
381     echo
382
383     # check if some necessary variables is set
384     if [ -z "$OS_AUTH_URL" ]; then
385         echo "OS_AUTH_URL is unset or empty"
386         exit 1
387     fi
388
389     echo "OS_AUTH_URL is $OS_AUTH_URL"
390     echo
391
392     # check OpenStack services
393     echo "Checking OpenStack services:"
394     for cmd in "glance image-list" "nova list" "heat stack-list"; do
395         echo "  checking ${cmd/%\ */} ..."
396         if ! $cmd >/dev/null; then
397             echo "error: command \"$cmd\" failed"
398             exit 1
399         fi
400     done
401
402     echo
403     echo "Checking for External network:"
404     for net in $(neutron net-list --router:external True -c name -f value); do
405         echo "  external network: $net"
406     done
407
408     # install yardstick
409     install_yardstick
410
411     cleanup
412
413     trap "error_exit" EXIT SIGTERM
414
415     QCOW_IMAGE="/tmp/workspace/yardstick/yardstick-trusty-server.img"
416
417     build_yardstick_image
418     load_yardstick_image
419     load_cirros_image
420     load_ubuntu_image
421     create_nova_flavor
422
423     install_storperf
424     run_test
425 }
426
427 main