e00b367838db7ed2dd0f13f755fb870a039b05fe
[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
58 #Creating a docker image with yardstick installed and Verify the results of cyclictest
59 function runCyclicTest {
60    docker_image_dir=$WORKSPACE/docker_image_build
61    ( cd ${docker_image_dir}; sudo docker build  -t kvmfornfv:latest --no-cache=true . )
62    if [ ${?} -ne 0 ] ; then
63       echo  "Docker image build failed"
64       id=$(sudo docker ps -a  | head  -2 | tail -1 | awk '{print $1}'); sudo docker rm -f $id
65       exit 1
66    fi
67    time_stamp=$(date +%Y%m%d%H%M%S)
68    volume=/tmp/kvmtest-${testType}-${time_stamp}
69    mkdir -p $volume/{image,rpm,scripts}
70
71    #copying required files to run yardstick cyclic testcase
72    mv $WORKSPACE/build_output/kernel-${KERNELRPM_VERSION}*.rpm ${volume}/rpm
73    cp -r $WORKSPACE/ci/envs/* ${volume}/scripts
74    cp -r $WORKSPACE/tests/cyclictest-node-context.yaml ${volume}
75    cp -r $WORKSPACE/tests/pod.yaml ${volume}/scripts
76
77    #Launching ubuntu docker container to run yardstick
78    sudo docker run -i -v ${volume}:/opt --net=host --name kvmfornfv_${testType} \
79    kvmfornfv:latest  /bin/bash -c "cd /opt/scripts && ls; ./cyclictest.sh"
80    output=$?
81    #Verifying the results of cyclictest
82    result=`grep -o '"errors":[^,]*' ${volume}/yardstick.out | awk -F '"' '{print $4}'`
83
84    if [ -z "${result}" ]; then
85       echo "####################################################"
86       echo ""
87       echo `grep -o '"data":[^}]*' ${volume}/yardstick.out | awk -F '{' '{print $2}'`
88       echo ""
89       echo "####################################################"
90       env_clean
91       host_clean
92       if [ $output != 0 ];then
93          echo "Some problem with Yardstick.Check cyclictest.sh"
94          return 1
95       else
96          return 0
97       fi
98    else
99       echo "Testcase failed"
100       echo `grep -o '"errors":[^,]*' ${volume}/yardstick.out | awk -F '"' '{print $4}'`
101       env_clean
102       host_clean
103       return 1
104    fi
105 }