From 0d6af5dda5ef996f7a32a4ef4af84a3a67bd96e0 Mon Sep 17 00:00:00 2001 From: swatisharma Date: Tue, 9 Aug 2016 19:43:46 +0530 Subject: CI Integration for KVMforNFV This patch contains scripts for running cyclictest through yardstick as part of CI integration for KVMforNFV. The scripts will be triggered to create a docker ubuntu container for running yardstick, configuring the host, launching a guest VM and executing cyclictest through yardstick. The verification process gets completed after running the cyclictest. Co-Authored-By: Gundarapu Reddy Signed-off-by: Swati Sharma --- ci/test_kvmfornfv.sh | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ci/test_kvmfornfv.sh (limited to 'ci/test_kvmfornfv.sh') diff --git a/ci/test_kvmfornfv.sh b/ci/test_kvmfornfv.sh new file mode 100644 index 000000000..a33814907 --- /dev/null +++ b/ci/test_kvmfornfv.sh @@ -0,0 +1,44 @@ +#!/bin/bash + +############################################################# +## This script will launch ubuntu docker container +## runs cyclictest through yardstick +## and verifies the test results. +############################################################ + +volume=/tmp/kvmtest-* +if [ -d ${volume} ] ; then + echo "Directory '${volume}' exists" + sudo rm -rf ${volume} +fi + +time_stamp=$(date +%Y%m%d%H%M%S) +mkdir -p /tmp/kvmtest-${time_stamp}/{image,rpm,scripts} + +#copying required files to run yardstick cyclic testcase +mv ${WORKSPACE}/build_output/* $volume/rpm +cp ${WORKSPACE}/ci/envs/* $volume/scripts +cp ${WORKSPACE}/tests/cyclictest-node-context.yaml $volume +cp ${WORKSPACE}/tests/pod.yaml $volume + +#Launching ubuntu docker container to run yardstick +sudo docker run -t -i -v $volume:/opt --net=host --name kvmfornfv \ +kvmfornfv:latest /bin/bash /opt/scripts/cyclictest.sh +container_id=`sudo docker ps -a | grep kvmfornfv |awk '{print $1}'` +sudo docker rm $container_id + +#Verifying the results of cyclictest +result=`grep -o '"errors":[^,]*' $volume/yardstick.out | awk -F '"' \ +'{print $4}'| awk '{if (NF=0) print "SUCCESS" }'` +if [ "$result" = "SUCCESS" ]; then + echo "####################################################" + echo "" + echo `grep -o '"data":[^}]*' $volume/yardstick.out | awk -F '{' '{print $2}'` + echo "" + echo "####################################################" + exit 0 +else + echo "Testcase failed" + echo `grep -o '"errors":[^,]*' $volume/yardstick.out | awk -F '"' '{print $4}'` + exit 1 +fi -- cgit 1.2.3-korg