X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=ci%2Ftest_kvmfornfv.sh;h=858aaf3947f5b5a07435e9575323e7964fe07250;hb=b8f6485d5a5c66f0fce566e59b8b5891c6a7f571;hp=e507f37d7bd8a6f3f138dd6ef5ae84e54c945dce;hpb=76aa5ea1c150396731e22389f86430ddc86a01d0;p=kvmfornfv.git diff --git a/ci/test_kvmfornfv.sh b/ci/test_kvmfornfv.sh index e507f37d7..858aaf394 100755 --- a/ci/test_kvmfornfv.sh +++ b/ci/test_kvmfornfv.sh @@ -1,59 +1,33 @@ #!/bin/bash -############################################################# -## This script will launch ubuntu docker container -## runs cyclictest through yardstick -## and verifies the test results. +############################################################ +## This script is an interface to trigger the +## cyclicTestTrigger.sh for test type like patch verification, +## daily testing. +## Releng will trigger this script by passing test type like +## verify/daily as an argument ############################################################ -docker_image_dir=$WORKSPACE/docker_image_build -function env_clean { - container_id=`sudo docker ps -a | grep kvmfornfv |awk '{print $1}'` - sudo docker rm $container_id - sudo ssh root@10.2.117.23 "rm -rf /root/workspace/*" - sudo ssh root@10.2.117.23 "pid=\$(ps aux | grep 'qemu' | awk '{print \$2}' | head -1); echo \$pid |xargs kill" - sudo rm -rf /tmp/kvmtest-* -} - -#Cleaning up the test environment before running cyclictest through yardstick. -env_clean - -#Creating a docker image with yardstick installed. -( cd ${docker_image_dir}; sudo docker build -t kvmfornfv:latest --no-cache=true . ) -if [ ${?} -ne 0 ] ; then - echo "Docker image build failed" - id=$(sudo docker ps -a | head -2 | tail -1 | awk '{print $1}'); sudo docker rm -f $id - exit 1 +test_type=$1 + +if [ ${test_type} == "verify" ];then + HOST_IP="10.2.117.23" + test_time=600000 # 10m +elif [ ${test_type} == "daily" ];then + HOST_IP="10.2.117.25" + test_time=7200000 #2h +elif [ ${test_type} == "merge" ];then + echo "Test is not enabled for ${test_type}" + exit 0 fi -time_stamp=$(date +%Y%m%d%H%M%S) -volume=/tmp/kvmtest-${time_stamp} -mkdir -p $volume/{image,rpm,scripts} +source $WORKSPACE/ci/cyclicTestTrigger.sh $HOST_IP $test_time $test_type -#copying required files to run yardstick cyclic testcase -mv $WORKSPACE/build_output/kernel-4.4*.rpm $volume/rpm -cp -r $WORKSPACE/ci/envs/* $volume/scripts -cp -r $WORKSPACE/tests/cyclictest-node-context.yaml $volume -cp -r $WORKSPACE/tests/pod.yaml $volume +#Update cyclictest-node-context.yaml with test_time and pod.yaml with IP +updateYaml -#Launching ubuntu docker container to run yardstick -sudo docker run -i -v $volume:/opt --net=host --name kvmfornfv \ -kvmfornfv:latest /bin/bash -c "cd /opt/scripts && ls; ./cyclictest.sh" - -#Verifying the results of cyclictest -result=`grep -o '"errors":[^,]*' $volume/yardstick.out | awk -F '"' '{print $4}'` +#Cleaning up the test environment before running cyclictest through yardstick. +env_clean -if [ -z "$result" ]; then - echo "####################################################" - echo "" - echo `grep -o '"data":[^}]*' $volume/yardstick.out | awk -F '{' '{print $2}'` - echo "" - echo "####################################################" - env_clean - exit 0 -else - echo "Testcase failed" - echo `grep -o '"errors":[^,]*' ${volume}/yardstick.out | awk -F '"' '{print $4}'` - env_clean - exit 1 -fi +#Creating a docker image with yardstick installed and launching ubuntu docker to run yardstick cyclic testcase +runCyclicTest