This patch includes scripts and configuration files 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 testName=$4
14
15 source $WORKSPACE/ci/envs/utils.sh
16 source $WORKSPACE/ci/envs/host-config
17
18 checkRPMNames
19
20 KERNELRPM_VERSION=$( getKernelVersion )
21 QEMURPM_VERSION=$( getQemuVersion )
22
23 if [ -z ${KERNELRPM_VERSION} ];then
24    echo "Kernel RPM not found in build_output Directory"
25    exit 1
26 fi
27 if [ -z ${QEMURPM_VERSION} ];then
28    echo "QEMU RPM not found in build_output Directory"
29    exit 1
30 fi
31
32 #calculating and verifying sha512sum of the guestimage.
33 function verifyGuestImage {
34    scp $WORKSPACE/build_output/guest1.sha512 root@${HOST_IP}:/root/images
35    checksum=$(sudo ssh root@${HOST_IP} "cd /root/images/ && sha512sum -c guest1.sha512 | awk '{print \$2}'")
36    if [ "$checksum" != "OK" ]; then
37       echo "Something wrong with the image, please verify"
38       return 1
39    fi
40 }
41
42 #Verifying the availability of the host after reboot
43 function connect_host {
44    n=0
45    while [ $n -lt 25 ]; do
46       host_ping_test="ping -c 1 ${HOST_IP}"
47       eval $host_ping_test &> /dev/null
48       if [ ${?} -ne 0 ] ; then
49          sleep 10
50          echo "host machine is still under reboot..trying to connect...."
51          n=$(($n+1))
52       else
53          echo "resuming the execution of test cases....."
54          #Waiting for ssh to be available for the host machine.
55          sleep 30
56          break
57       fi
58       if [ $n == 24 ];then
59          echo "Host machine unable to boot-up!"
60          exit 1
61       fi
62    done
63 }
64
65 #Updating the pod.yaml file with HOST_IP,kvmfornfv_cyclictest_idle_idle.yaml with loops and interval
66 function updateYaml {
67    cd $WORKSPACE/tests/
68    sed -ri "s/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/${HOST_IP}/" pod.yaml
69    sed -ri "s/loops: [0-9]*/loops: ${testTime}/"  kvmfornfv_cyclictest_hostenv_guestenv.yaml
70    sed -ri "0,/interval: [0-9]*/s//interval: 1000/"  kvmfornfv_cyclictest_hostenv_guestenv.yaml
71    cp kvmfornfv_cyclictest_hostenv_guestenv.yaml kvmfornfv_cyclictest_${testName}.yaml
72    sed -ri "s/tc: \"kvmfornfv_cyclictest-node-context\"/tc: \"kvmfornfv_cyclictest_${testName}\"/" kvmfornfv_cyclictest_${testName}.yaml
73    case $testName in
74
75        idle_idle)
76                 ;;
77        cpustress_idle)
78                       sed -i '/host-run-qemu.sh/a\    \- \"stress_daily.sh cpu\"' kvmfornfv_cyclictest_${testName}.yaml
79                       sed -i '/host-setup0.sh/,/host-setup1.sh/ d' kvmfornfv_cyclictest_${testName}.yaml
80                       ;;
81        memorystress_idle)
82                       sed -i '/host-run-qemu.sh/a\    \- \"stress_daily.sh memory\"' kvmfornfv_cyclictest_${testName}.yaml
83                       sed -i '/host-setup0.sh/,/host-setup1.sh/ d' kvmfornfv_cyclictest_${testName}.yaml
84                       ;;
85        iostress_idle)
86                       sed -i '/host-run-qemu.sh/a\    \- \"stress_daily.sh io\"' kvmfornfv_cyclictest_${testName}.yaml
87                       sed -i '/host-setup0.sh/,/host-setup1.sh/ d' kvmfornfv_cyclictest_${testName}.yaml
88                       ;;
89        idle_cpustress)
90                       sed -i '/guest-setup1.sh/a\    \- \"stress_daily.sh cpu\"' kvmfornfv_cyclictest_${testName}.yaml
91                       sed -i '/host-setup0.sh/,/host-setup1.sh/ d' kvmfornfv_cyclictest_${testName}.yaml
92                       ;;
93        idle_memorystress)
94                       sed -i '/guest-setup1.sh/a\    \- \"stress_daily.sh memory\"' kvmfornfv_cyclictest_${testName}.yaml
95                       sed -i '/host-setup0.sh/,/host-setup1.sh/ d' kvmfornfv_cyclictest_${testName}.yaml
96                       ;;
97        idle_iostress)
98                       sed -i '/guest-setup1.sh/a\    \- \"stress_daily.sh io\"' kvmfornfv_cyclictest_${testName}.yaml
99                       sed -i '/host-setup0.sh/,/host-setup1.sh/ d' kvmfornfv_cyclictest_${testName}.yaml
100                       ;;
101         *)
102           echo "Incorrect test environment: $testName"
103           exit 1
104           ;;
105     esac
106 }
107
108 #cleaning the environment after executing the test through yardstick.
109 function env_clean {
110     container_id=`sudo docker ps -a | grep kvmfornfv_${testType} |awk '{print \$1}'|sed -e 's/\r//g'`
111     sudo docker stop ${container_id}
112     sudo docker rm ${container_id}
113     sudo ssh root@${HOST_IP} "rm -rf /root/workspace/*"
114     sudo ssh root@${HOST_IP} "pid=\$(ps aux | grep 'qemu' | awk '{print \$2}' | head -1); echo \$pid |xargs kill"
115     sudo rm -rf /tmp/kvmtest-${testType}*
116 }
117
118 #Cleaning the latest kernel changes on host after executing the test.
119 function host_clean {
120     sudo ssh root@${HOST_IP} "rpm=\$(rpm -qa | grep 'kernel-${KERNELRPM_VERSION}' | awk '{print \$1}'); rpm -ev \$rpm"
121     sudo ssh root@${HOST_IP} "rpm=\$(rpm -qa | grep 'kernel-devel-${KERNELRPM_VERSION}' | awk '{print \$1}'); rpm -ev \$rpm"
122     sudo ssh root@${HOST_IP} "rm -rf /boot/initramfs-${KERNELRPM_VERSION}*.img"
123     sudo ssh root@${HOST_IP} "grub2-mkconfig -o /boot/grub2/grub.cfg"
124     sudo ssh root@${HOST_IP} "rpm=\$(rpm -qa | grep 'qemu-${QEMURPM_VERSION}'| awk '{print \$1}'); rpm -ev \$rpm"
125     sudo ssh root@${HOST_IP} "reboot"
126 }
127
128 function cleanup {
129    output=$1
130    env_clean
131    host_clean
132    if [ $output != 0 ];then
133       echo "Yardstick Failed.Please check cyclictest.sh"
134       return 1
135    else
136       return 0
137    fi
138 }
139
140 #environment setup for executing packet forwarding test cases
141 function setUpPacketForwarding {
142    #copying required files to run packet forwarding test cases
143    ssh root@$HOST_IP "mkdir -p /root/workspace/image"
144    ssh root@$HOST_IP "mkdir -p /root/workspace/rpm"
145    ssh root@$HOST_IP "mkdir -p /root/workspace/scripts"
146    #Copying the host configuration scripts on to host
147    scp -r $WORKSPACE/ci/envs/* root@$HOST_IP:/root/workspace/scripts
148    scp -r $WORKSPACE/tests/vsperf.conf* root@$HOST_IP:/root/workspace/scripts
149    scp -r $WORKSPACE/build_output/kernel-${KERNELRPM_VERSION}*.rpm root@$HOST_IP:/root/workspace/rpm
150    scp -r $WORKSPACE/build_output/kernel-devel-${KERNELRPM_VERSION}*.rpm root@$HOST_IP:/root/workspace/rpm
151    scp -r $WORKSPACE/build_output/qemu-${QEMURPM_VERSION}*.rpm root@$HOST_IP:/root/workspace/rpm
152    #execute host configuration script for installing kvm built kernel.
153    ssh root@$HOST_IP "cd /root/workspace/scripts ; ./host-setup0.sh"
154    ssh root@$HOST_IP "cd /root/workspace/rpm ; rpm -ivh kernel-devel-${KERNELRPM_VERSION}*.rpm"
155    ssh root@$HOST_IP "reboot"
156    sleep 10
157 }
158
159 #executing packet forwarding test cases
160 function runPacketForwarding {
161    testType=$1
162    ssh -t -t root@$HOST_IP "cd /root/workspace/scripts ; sudo scl enable python33 'sh packet_forwarding.sh $testType $QEMURPM_VERSION'"
163 }
164
165 #Creating a docker image with yardstick installed and Verify the results of cyclictest
166 function runCyclicTest {
167    container_id=`sudo docker ps -a | grep kvmfornfv_${testType} |awk '{print \$1}'|sed -e 's/\r//g'`
168    echo "$container_id"
169    if [ -z "$container_id" ]; then
170       docker_image_dir=$WORKSPACE/docker_image_build
171       ( cd ${docker_image_dir}; sudo docker build  -t kvmfornfv:latest --no-cache=true . )
172       if [ ${?} -ne 0 ] ; then
173          echo  "Docker image build failed"
174          id=$(sudo docker ps -a  | head  -2 | tail -1 | awk '{print $1}'); sudo docker rm -f $id
175          exit 1
176       fi
177       time_stamp=$(date +%Y%m%d%H%M%S)
178       volume=/tmp/kvmtest-${testType}-${time_stamp}
179       mkdir -p $volume/{image,rpm,scripts}
180       #copying required files to run yardstick cyclic testcase
181       cp $WORKSPACE/build_output/kernel-${KERNELRPM_VERSION}*.rpm ${volume}/rpm
182       cp $WORKSPACE/build_output/qemu-${QEMURPM_VERSION}*.rpm ${volume}/rpm
183       cp -r $WORKSPACE/ci/envs/* ${volume}/scripts
184       cp -r $WORKSPACE/tests/kvmfornfv_cyclictest_${testName}.yaml ${volume}
185       cp -r $WORKSPACE/tests/pod.yaml ${volume}/scripts
186       #Launching ubuntu docker container to run yardstick
187       container_id=`sudo docker run -i -d -v ${volume}:/opt --net=host --name kvmfornfv_${testType} \
188       kvmfornfv:latest`
189       sudo docker exec -i $container_id /bin/bash -c "cd /opt/scripts && ls; ./cyclictest.sh $testType $testName"
190       cyclictest_output=$?
191    else
192       cp -r $WORKSPACE/tests/kvmfornfv_cyclictest_${testName}.yaml ${volume}
193       sudo docker exec -i $container_id /bin/bash -c "cd /opt/scripts && ls; ./cyclictest.sh $testType $testName"
194       cyclictest_output=$?
195    fi
196    
197    if [ "$testName" == "iostress_idle" ];then
198       copyLogs
199    fi
200
201    #Verifying the results of cyclictest
202    if [ "$testType" == "verify" ];then
203       result=`grep -o '"errors":[^,]*' ${volume}/yardstick.out | awk -F '"' '{print $4}'`
204
205       if [ -z "${result}" ] && [ "${cyclictest_output}" == 0 ]; then
206          echo "####################################################"
207          echo " "
208          echo `grep -o '"data":[^}]*' ${volume}/yardstick.out | awk -F '{' '{print $2}'`
209          echo ""
210          echo "####################################################"
211          return 0
212       else
213          echo "Testcase failed"
214          echo `grep -o '"errors":[^,]*' ${volume}/yardstick.out | awk -F '"' '{print $4}'`
215          return 1
216       fi
217    fi
218 }