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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
|
#!/bin/bash
#
# Copyright 2015-2016 Intel Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# VSPERF nightly build execution script
# Usage:
# build-vsperf.sh job_type
# where job_type is one of "verify", "merge", "daily"
#
# exit codes
#
EXIT=0
EXIT_TC_FAILED=1
EXIT_SANITY_TC_FAILED=2
EXIT_NO_RESULTS=10
EXIT_NO_TEST_REPORT_LOG_DIR=11
#
# configuration
#
VSPERF_BIN='./vsperf'
LOG_FILE_PREFIX="/tmp/vsperf_build"
DATE=$(date -u +"%Y-%m-%d_%H-%M-%S")
BRANCH=${GIT_BRANCH##*/}
VSPERFENV_DIR="$HOME/vsperfenv"
# CI job specific configuration
# VERIFY - run basic set of TCs with default settings
TESTCASES_VERIFY="vswitch_add_del_bridge vswitch_add_del_bridges vswitch_add_del_vport vswitch_add_del_vports vswitch_vports_add_del_flow"
TESTPARAM_VERIFY="--integration --test-params HUGEPAGE_RAM_ALLOCATION=2097152"
# MERGE - run selected TCs with default settings
TESTCASES_MERGE="vswitch_add_del_bridge vswitch_add_del_bridges vswitch_add_del_vport vswitch_add_del_vports vswitch_vports_add_del_flow"
TESTPARAM_MERGE="--integration --test-params HUGEPAGE_RAM_ALLOCATION=2097152"
# DAILY - run selected TCs for defined packet sizes
TESTCASES_DAILY='phy2phy_tput back2back phy2phy_tput_mod_vlan phy2phy_scalability pvp_tput pvp_back2back pvvp_tput pvvp_back2back'
TESTPARAM_DAILY='--test-params TRAFFICGEN_PKT_SIZES=(64,128,512,1024,1518)'
# check if user config file exists if not then we will use default settings
if [ -f $HOME/vsperf-${BRANCH}.conf ] ; then
# branch specific config was found
CONF_FILE="--conf-file ${HOME}/vsperf-${BRANCH}.conf"
else
if [ -f $HOME/vsperf.conf ] ; then
CONF_FILE="--conf-file ${HOME}/vsperf.conf"
else
CONF_FILE=""
fi
fi
# Test report related configuration
TEST_REPORT_PARTIAL="*_test_report.rst"
TEST_REPORT_DIR="${WORKSPACE}/docs/results"
TEST_REPORT_INDEX="${TEST_REPORT_DIR}/index.rst"
TEST_REPORT_LINK_OLD="https://wiki.opnfv.org/wiki/vsperf_results"
TEST_REPORT_FILE="${WORKSPACE}/docs_output/results/index.html"
TEST_REPORT_TARBALL="vswitchperf_logs_${DATE}.tar.gz"
if [[ "x${BRANCH}" == "xmaster" ]]; then
TEST_REPORT_LINK_NEW="https://artifacts.opnfv.org/logs/$PROJECT/$NODE_NAME/$DATE/${TEST_REPORT_TARBALL}"
else
TEST_REPORT_LINK_NEW="https://artifacts.opnfv.org/logs/$PROJECT/$NODE_NAME/$BRANCH/$DATE/${TEST_REPORT_TARBALL}"
fi
TEST_REPORT_LOG_DIR="${HOME}/opnfv/$PROJECT/results/$BRANCH"
#
# functions
#
# terminate vsperf and all its utilities
# it is expected that vsperf is the only python3 app
# and no other ovs or qemu instances are running
# at CI machine
# parameters:
# none
function terminate_vsperf() {
sudo pkill stress &> /dev/null
sudo pkill python3 &> /dev/null
sudo killall -9 qemu-system-x86_64 &> /dev/null
# sometimes qemu resists to terminate, so wait a bit and kill it again
if pgrep qemu-system-x86_64 &> /dev/null ; then
sleep 5
sudo killall -9 qemu-system-x86_64 &> /dev/null
sleep 5
fi
sudo pkill ovs-vswitchd &> /dev/null
sleep 1
sudo pkill ovsdb-server &> /dev/null
sleep 1
}
# check and print testcase execution status
# parameters:
# $1 - directory with results
function print_results() {
for i in $TESTCASES ; do
RES_FILE=`ls -1 $1 | egrep "result_${i}_[0-9a-zA-Z\-]+.csv"`
if [ "x$RES_FILE" != "x" -a -e "${1}/${RES_FILE}" ]; then
if grep ^FAILED "${1}/${RES_FILE}" &> /dev/null ; then
printf " %-70s %-6s\n" "result_${i}" "FAILED"
EXIT=$EXIT_TC_FAILED
else
printf " %-70s %-6s\n" "result_${i}" "OK"
fi
else
printf " %-70s %-6s\n" "result_${i}" "FAILED"
EXIT=$EXIT_TC_FAILED
fi
done
}
# execute tests and display results
# parameters:
# $1 - vswitch and vnf combination, one of OVS_vanilla, OVS_with_DPDK_and_vHost_User
# $2 - CI job type, one of verify, merge, daily
function execute_vsperf() {
OPNFVPOD=""
# figure out list of TCs and execution parameters
case $2 in
"verify")
TESTPARAM=$TESTPARAM_VERIFY
TESTCASES=$TESTCASES_VERIFY
;;
"merge")
TESTPARAM=$TESTPARAM_MERGE
TESTCASES=$TESTCASES_MERGE
;;
*)
# by default use daily build and upload results to the OPNFV databse
TESTPARAM=$TESTPARAM_DAILY
TESTCASES=$TESTCASES_DAILY
OPNFVPOD="--opnfvpod=$NODE_NAME"
;;
esac
# execute testcases
echo -e "\nExecution of VSPERF for $1"
DATE_SUFFIX=$(date -u +"%Y-%m-%d_%H-%M-%S")
case $1 in
"OVS_vanilla")
# figure out log file name
LOG_SUBDIR="OvsVanilla"
LOG_FILE="${LOG_FILE_PREFIX}_${LOG_SUBDIR}_${DATE_SUFFIX}.log"
echo " $VSPERF_BIN $OPNFVPOD --vswitch OvsVanilla --vnf QemuVirtioNet $CONF_FILE $TESTPARAM $TESTCASES &> $LOG_FILE"
$VSPERF_BIN $OPNFVPOD --vswitch OvsVanilla --vnf QemuVirtioNet $CONF_FILE $TESTPARAM $TESTCASES &> $LOG_FILE
;;
*)
# figure out log file name
LOG_SUBDIR="OvsDpdkVhost"
LOG_FILE="${LOG_FILE_PREFIX}_${LOG_SUBDIR}_${DATE_SUFFIX}.log"
echo " $VSPERF_BIN $OPNFVPOD --vswitch OvsDpdkVhost --vnf QemuDpdkVhostUser $CONF_FILE $TESTPARAM $TESTCASES > $LOG_FILE"
$VSPERF_BIN $OPNFVPOD --vswitch OvsDpdkVhost --vnf QemuDpdkVhostUser $CONF_FILE $TESTPARAM $TESTCASES &> $LOG_FILE
;;
esac
# evaluation of results
echo -e "\nResults for $1"
RES_DIR="/$(grep "Creating result directory" $LOG_FILE | cut -d'/' -f2-)"
if [[ "/" == "${RES_DIR}" ]] ; then
echo "FAILURE: Results are not available."
echo "-------------------------------------------------------------------"
cat $LOG_FILE
echo "-------------------------------------------------------------------"
exit $EXIT_NO_RESULTS
else
print_results "${RES_DIR}"
if [ "$EXIT" -eq "$EXIT_TC_FAILED" ] ; then
echo "-------------------------------------------------------------------"
cat $LOG_FILE
echo "-------------------------------------------------------------------"
fi
fi
# show detailed result figures
for md_file in $(grep '\.md"$' $LOG_FILE | cut -d'"' -f2); do
# TC resut file header
echo -e "\n-------------------------------------------------------------------"
echo -e " $md_file"
echo -e "-------------------------------------------------------------------\n"
# TC details
sed -n '/^- Test ID/,/Bidirectional/{/Packet size/b;p;/Bidirectional/q};/Results\/Metrics Collected/,/Statistics collected/{/^$/p;/^|/p}' $md_file
# TC results
sed -n '/Results\/Metrics Collected/,/Statistics collected/{/^$/p;/^|/p}' $md_file | grep -v "Unknown" | cat -s
done
# add test results into the final doc template
for report in ${RES_DIR}/${TEST_REPORT_PARTIAL} ; do
# modify link to the artifactory with test report and logs
if [ -f $report ] ; then
sed -i -e "s,$TEST_REPORT_LINK_OLD,$TEST_REPORT_LINK_NEW," "$report"
cp $report $TEST_REPORT_DIR
echo " $(basename $report)" >> $TEST_REPORT_INDEX
fi
done
# copy logs into dedicated directory
mkdir ${TEST_REPORT_LOG_DIR}/${LOG_SUBDIR}
[ -f "$LOG_FILE" ] && cp -a "${LOG_FILE}" "${TEST_REPORT_LOG_DIR}/${LOG_SUBDIR}" &> /dev/null
[ -d "$RES_DIR" ] && cp -ar "$RES_DIR" "${TEST_REPORT_LOG_DIR}/${LOG_SUBDIR}" &> /dev/null
}
# generates final test_report in PDF and HTML formats
function generate_report() {
# prepare final tarball with all logs...
tar --exclude "${TEST_REPORT_TARBALL}" -czf "${TEST_REPORT_LOG_DIR}/${TEST_REPORT_TARBALL}" $(find "${TEST_REPORT_LOG_DIR}" -mindepth 1 -maxdepth 1 -type d)
# ...and remove original log files
find "${TEST_REPORT_LOG_DIR}" -mindepth 1 -maxdepth 1 -type d -exec rm -rf \{\} \;
# clone opnfvdocs repository
echo "Cloning opnfvdocs repository..."
[ -d opnfvdocs ] && rm -rf opnfvdocs
git clone https://gerrit.opnfv.org/gerrit/opnfvdocs &> /dev/null
# generate final docs with test results
echo "Generating test report..."
sed -ie 's,python ,python2 ,g' ./opnfvdocs/scripts/docs-build.sh
OPNFVDOCS_DIR='./opnfvdocs' ./opnfvdocs/scripts/docs-build.sh &> /dev/null
# store HTML report with test results into dedicated directory
if [ -f $TEST_REPORT_FILE ] ; then
cp -ar $TEST_REPORT_FILE $(dirname $TEST_REPORT_FILE)/_static $TEST_REPORT_LOG_DIR
echo "Final test report has been created."
else
echo "FAILURE: Generation of final test report has failed."
fi
}
# pushes test report and logs collected during test execution into artifactory
function push_results_to_artifactory() {
# clone releng repository
echo "Cloning releng repository..."
[ -d releng ] && rm -rf releng
git clone https://gerrit.opnfv.org/gerrit/releng &> /dev/null
echo "Pushing results and logs into artifactory..."
. ./releng/utils/push-test-logs.sh "$DATE"
# enter workspace as it could be modified by 3rd party script
cd $WORKSPACE
}
# removes any local changes of repository
function cleanup() {
echo "Cleaning up..."
git stash -u
}
# prepares directory for logs collection and removes old logs
function initialize_logdir() {
if [[ "x$TEST_REPORT_LOG_DIR" == "x" ]] ; then
echo "FAILURE: Logging directory is not defined. Logs and report cannot be published!"
exit $EXIT_NO_TEST_REPORT_LOG_DIR
else
# remove TEST_REPORT_LOG_DIR if it exists
if [ -e $TEST_REPORT_LOG_DIR ] ; then
if [ -f $TEST_REPORT_LOG_DIR ] ; then
rm $TEST_REPORT_LOG_DIR
else
rm -rf ${TEST_REPORT_LOG_DIR}
fi
fi
# create TEST_REPORT_LOG_DIR
mkdir -p $TEST_REPORT_LOG_DIR
fi
}
# verify basic vsperf functionality
function execute_vsperf_sanity() {
DATE_SUFFIX=$(date -u +"%Y-%m-%d_%H-%M-%S")
LOG_FILE="${LOG_FILE_PREFIX}_sanity_${DATE_SUFFIX}.log"
echo "Execution of VSPERF sanity checks:"
for PARAM in '--version' '--help' '--list-trafficgens' '--list-collectors' '--list-vswitches' '--list-fwdapps' '--list-vnfs' '--list-settings' '--list' '--integration --list'; do
echo -e "-------------------------------------------------------------------" >> $LOG_FILE
echo "$VSPERF_BIN $PARAM $CONF_FILE" >> $LOG_FILE
echo -e "-------------------------------------------------------------------" >> $LOG_FILE
$VSPERF_BIN $PARAM $CONF_FILE &>> $LOG_FILE
if $VSPERF_BIN $PARAM $CONF_FILE &>> $LOG_FILE ; then
printf " %-70s %-6s\n" "$VSPERF_BIN $PARAM" "OK"
else
printf " %-70s %-6s\n" "$VSPERF_BIN $PARAM" "FAILED"
EXIT=$EXIT_SANITY_TC_FAILED
fi
echo >> $LOG_FILE
done
echo "Sanity log file $LOG_FILE"
if [ "$EXIT" -ne "0" ] ; then
echo "-------------------------------------------------------------------"
cat $LOG_FILE
echo "-------------------------------------------------------------------"
fi
}
# check and install required packages at nodes running VERIFY and MERGE jobs
function dependencies_check() {
. /etc/os-release
if [ $ID == "ubuntu" ] ; then
echo "Dependencies check"
echo "=================="
for PACKAGE in "python3-tk" "sysstat" ; do
if dpkg -s $PACKAGE &> /dev/null ; then
printf " %-70s %-6s\n" $PACKAGE "OK"
else
printf " %-70s %-6s\n" $PACKAGE "missing"
sudo apt-get install -y $PACKAGE
fi
done
echo
fi
}
#
# main
#
echo
# enter workspace dir
cd $WORKSPACE
# create virtualenv if needed
if [ ! -e $VSPERFENV_DIR ] ; then
echo "Create VSPERF environment"
echo "========================="
virtualenv --python=python3 "$VSPERFENV_DIR"
echo
fi
# acivate and update virtualenv
echo "Update VSPERF environment"
echo "========================="
source "$VSPERFENV_DIR"/bin/activate
pip install -r ./requirements.txt
echo
# VERFIY&MERGE job specific - check if required packages are installed
dependencies_check
# initialization
initialize_logdir
# execute job based on passed parameter
case $1 in
"verify")
echo "================="
echo "VSPERF verify job"
echo "================="
terminate_vsperf
execute_vsperf_sanity
terminate_vsperf
execute_vsperf OVS_with_DPDK_and_vHost_User $1
terminate_vsperf
execute_vsperf OVS_vanilla $1
exit $EXIT
;;
"merge")
echo "================"
echo "VSPERF merge job"
echo "================"
terminate_vsperf
execute_vsperf_sanity
terminate_vsperf
execute_vsperf OVS_with_DPDK_and_vHost_User $1
terminate_vsperf
execute_vsperf OVS_vanilla $1
exit $EXIT
;;
*)
echo "================"
echo "VSPERF daily job"
echo "================"
terminate_vsperf
execute_vsperf OVS_with_DPDK_and_vHost_User $1
terminate_vsperf
execute_vsperf OVS_vanilla $1
terminate_vsperf
generate_report
push_results_to_artifactory
cleanup
exit $EXIT
;;
esac
exit $EXIT
#
# end
#
|