This patch contains scripts to publish the data to local
[kvmfornfv.git] / ci / cyclicTestTrigger.sh
1 #!/bin/bash
2
3 #############################################################
4 ## This script defines the functions present in
5 ## test_kvmfornfv.sh interface.These will launch ubuntu
6 ## docker container runs cyclictest through yardstick
7 ## and verifies the test results.
8 ############################################################
9
10 HOST_IP=$1
11 testTime=$2
12 testType=$3
13
14 source $WORKSPACE/ci/envs/utils.sh
15 KERNELRPM_VERSION=$( getKernelVersion )
16
17 if [ -z ${KERNELRPM_VERSION} ];then
18    echo "Kernel RPM not found in build_output Directory"
19    exit 1
20 fi
21
22 #calculating and verifying sha512sum of the guestimage.
23 function verifyGuestImage {
24    scp $WORKSPACE/build_output/guest1.sha512 root@${HOST_IP}:/root/images
25    checksum=$(sudo ssh root@${HOST_IP} "cd /root/images/ && sha512sum -c guest1.sha512 | awk '{print \$2}'")
26    if [ "$checksum" != "OK" ]; then
27       echo "Something wrong with the image, please verify"
28       return 1
29    fi
30 }
31
32 #Updating the pod.yaml file with HOST_IP,cyclictest-node-context.yaml with loops and interval
33 function updateYaml {
34    cd $WORKSPACE/tests/
35    sed -ri "s/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/${HOST_IP}/" pod.yaml
36    sed -ri "s/loops: [0-9]*/loops: ${testTime}/"  cyclictest-node-context.yaml
37    sed -ri "s/interval: [0-9]*/interval: 1000/"  cyclictest-node-context.yaml
38 }
39
40 #cleaning the environment after executing the test through yardstick.
41 function env_clean {
42     container_id=`sudo docker ps -a | grep kvmfornfv_${testType} |awk '{print \$1}'|sed -e 's/\r//g'`
43     sudo docker rm ${container_id}
44     sudo ssh root@${HOST_IP} "rm -rf /root/workspace/*"
45     sudo ssh root@${HOST_IP} "pid=\$(ps aux | grep 'qemu' | awk '{print \$2}' | head -1); echo \$pid |xargs kill"
46     sudo rm -rf /tmp/kvmtest-${testType}*
47 }
48
49 #Cleaning the latest kernel changes on host after executing the test.
50 function host_clean {
51     sudo ssh root@${HOST_IP} "rpm=\$(rpm -qa | grep 'kernel-${KERNELRPM_VERSION}' | awk '{print \$1}'); rpm -ev \$rpm"
52     sudo ssh root@${HOST_IP} "rm -rf /boot/initramfs-${KERNELRPM_VERSION}*.img"
53     sudo ssh root@${HOST_IP} "grub2-mkconfig -o /boot/grub2/grub.cfg"
54     sudo ssh root@${HOST_IP} "reboot"
55 }
56
57 function cleanup {
58    output=$1
59    env_clean
60    host_clean
61    if [ $output != 0 ];then
62       echo "Yardstick Failed.Please check cyclictest.sh"
63       return 1
64    else
65       return 0
66    fi
67 }
68
69 #Creating a docker image with yardstick installed and Verify the results of cyclictest
70 function runCyclicTest {
71    docker_image_dir=$WORKSPACE/docker_image_build
72    ( cd ${docker_image_dir}; sudo docker build  -t kvmfornfv:latest --no-cache=true . )
73    if [ ${?} -ne 0 ] ; then
74       echo  "Docker image build failed"
75       id=$(sudo docker ps -a  | head  -2 | tail -1 | awk '{print $1}'); sudo docker rm -f $id
76       exit 1
77    fi
78    time_stamp=$(date +%Y%m%d%H%M%S)
79    volume=/tmp/kvmtest-${testType}-${time_stamp}
80    mkdir -p $volume/{image,rpm,scripts}
81
82    #copying required files to run yardstick cyclic testcase
83    mv $WORKSPACE/build_output/kernel-${KERNELRPM_VERSION}*.rpm ${volume}/rpm
84    cp -r $WORKSPACE/ci/envs/* ${volume}/scripts
85    cp -r $WORKSPACE/tests/cyclictest-node-context.yaml ${volume}
86    cp -r $WORKSPACE/tests/pod.yaml ${volume}/scripts
87
88    #Launching ubuntu docker container to run yardstick
89    sudo docker run -i -v ${volume}:/opt --net=host --name kvmfornfv_${testType} \
90    kvmfornfv:latest  /bin/bash -c "cd /opt/scripts && ls; ./cyclictest.sh $testType"
91    cyclictest_output=$?
92    #Verifying the results of cyclictest
93
94    if [ "$testType" == "verify" ];then
95       result=`grep -o '"errors":[^,]*' ${volume}/yardstick.out | awk -F '"' '{print $4}'`
96
97       if [ -z "${result}" ]; then
98          echo "####################################################"
99          echo ""
100          echo `grep -o '"data":[^}]*' ${volume}/yardstick.out | awk -F '{' '{print $2}'`
101          echo ""
102          echo "####################################################"
103          cleanup $cyclictest_output
104       else
105          echo "Testcase failed"
106          echo `grep -o '"errors":[^,]*' ${volume}/yardstick.out | awk -F '"' '{print $4}'`
107          env_clean
108          host_clean
109          return 1
110       fi
111    else
112       cleanup $cyclictest_output
113    fi
114 }