This patch contains scripts to decrease the time taken for
[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 "0,/interval: [0-9]*/s//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 stop ${container_id}
44     sudo docker rm ${container_id}
45     sudo ssh root@${HOST_IP} "rm -rf /root/workspace/*"
46     sudo ssh root@${HOST_IP} "pid=\$(ps aux | grep 'qemu' | awk '{print \$2}' | head -1); echo \$pid |xargs kill"
47     sudo rm -rf /tmp/kvmtest-${testType}*
48 }
49
50 #Cleaning the latest kernel changes on host after executing the test.
51 function host_clean {
52     sudo ssh root@${HOST_IP} "rpm=\$(rpm -qa | grep 'kernel-${KERNELRPM_VERSION}' | awk '{print \$1}'); rpm -ev \$rpm"
53     sudo ssh root@${HOST_IP} "rm -rf /boot/initramfs-${KERNELRPM_VERSION}*.img"
54     sudo ssh root@${HOST_IP} "grub2-mkconfig -o /boot/grub2/grub.cfg"
55     sudo ssh root@${HOST_IP} "reboot"
56 }
57
58
59 #Creating a docker image with yardstick installed and Verify the results of cyclictest
60 function runCyclicTest {
61    docker_image_dir=$WORKSPACE/docker_image_build
62    ( cd ${docker_image_dir}; sudo docker build  -t kvmfornfv:latest --no-cache=true . )
63    if [ ${?} -ne 0 ] ; then
64       echo  "Docker image build failed"
65       id=$(sudo docker ps -a  | head  -2 | tail -1 | awk '{print $1}'); sudo docker rm -f $id
66       exit 1
67    fi
68    time_stamp=$(date +%Y%m%d%H%M%S)
69    volume=/tmp/kvmtest-${testType}-${time_stamp}
70    mkdir -p $volume/{image,rpm,scripts}
71
72    #copying required files to run yardstick cyclic testcase
73    mv $WORKSPACE/build_output/kernel-${KERNELRPM_VERSION}*.rpm ${volume}/rpm
74    cp -r $WORKSPACE/ci/envs/* ${volume}/scripts
75    cp -r $WORKSPACE/tests/cyclictest-node-context.yaml ${volume}
76    cp -r $WORKSPACE/tests/pod.yaml ${volume}/scripts
77
78    #Launching ubuntu docker container to run yardstick
79    sudo docker run -i -v ${volume}:/opt --net=host --name kvmfornfv_${testType} \
80    kvmfornfv:latest  /bin/bash -c "cd /opt/scripts && ls; ./cyclictest.sh"
81    output=$?
82    #Verifying the results of cyclictest
83    result=`grep -o '"errors":[^,]*' ${volume}/yardstick.out | awk -F '"' '{print $4}'`
84
85    if [ -z "${result}" ]; then
86       echo "####################################################"
87       echo ""
88       echo `grep -o '"data":[^}]*' ${volume}/yardstick.out | awk -F '{' '{print $2}'`
89       echo ""
90       echo "####################################################"
91       env_clean
92       host_clean
93       if [ $output != 0 ];then
94          echo "Some problem with Yardstick.Check cyclictest.sh"
95          return 1
96       else
97          return 0
98       fi
99    else
100       echo "Testcase failed"
101       echo `grep -o '"errors":[^,]*' ${volume}/yardstick.out | awk -F '"' '{print $4}'`
102       env_clean
103       host_clean
104       return 1
105    fi
106 }