bug-fix: do not have permission to execute sudo pip
[releng.git] / jjb / bottlenecks / bottlenecks-run-suite.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2017 Huawei Technologies Co.,Ltd and others.
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 #set -e
11 [[ $GERRIT_REFSPEC_DEBUG == true ]] && redirect="/dev/stdout" || redirect="/dev/null"
12 BOTTLENECKS_IMAGE=opnfv/bottlenecks
13 REPORT="True"
14
15 RELENG_REPO=${WORKSPACE}/releng
16 [ -d ${RELENG_REPO} ] && rm -rf ${RELENG_REPO}
17 git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO} >${redirect}
18
19 YARDSTICK_REPO=${WORKSPACE}/yardstick
20 [ -d ${YARDSTICK_REPO} ] && rm -rf ${YARDSTICK_REPO}
21 git clone https://gerrit.opnfv.org/gerrit/yardstick ${YARDSTICK_REPO} >${redirect}
22
23 OPENRC=/tmp/admin_rc.sh
24 OS_CACERT=/tmp/os_cacert
25
26 BOTTLENECKS_CONFIG=/tmp
27
28 if [[ $SUITE_NAME == *posca* ]]; then
29     POSCA_SCRIPT=/home/opnfv/bottlenecks/testsuites/posca
30     sudo rm -f ${OPENRC}
31
32     # Preparing OpenStack RC and Cacert files
33     echo "BOTTLENECKS INFO: fetching os credentials from $INSTALLER_TYPE"
34     if [[ $INSTALLER_TYPE == 'compass' ]]; then
35         if [[ ${BRANCH} == 'master' ]]; then
36             ${RELENG_REPO}/utils/fetch_os_creds.sh -d ${OPENRC} -i ${INSTALLER_TYPE} -a ${INSTALLER_IP} -o ${OS_CACERT} >${redirect}
37             if [[ -f ${OS_CACERT} ]]; then
38                 echo "BOTTLENECKS INFO: successfully fetching os_cacert for openstack: ${OS_CACERT}"
39             else
40                 echo "BOTTLENECKS ERROR: couldn't find os_cacert file: ${OS_CACERT}, please check if the it's been properly provided."
41                 exit 1
42             fi
43         else
44             ${RELENG_REPO}/utils/fetch_os_creds.sh -d ${OPENRC} -i ${INSTALLER_TYPE} -a ${INSTALLER_IP}  >${redirect}
45         fi
46     fi
47
48     if [[ -f ${OPENRC} ]]; then
49         echo "BOTTLENECKS INFO: openstack credentials path is ${OPENRC}"
50         if [[ $INSTALLER_TYPE == 'compass' && ${BRANCH} == 'master' ]]; then
51             echo "BOTTLENECKS INFO: writing ${OS_CACERT} to ${OPENRC}"
52             echo "export OS_CACERT=${OS_CACERT}" >> ${OPENRC}
53         fi
54         cat ${OPENRC}
55     else
56         echo "BOTTLENECKS ERROR: couldn't find openstack rc file: ${OPENRC}, please check if the it's been properly provided."
57         exit 1
58     fi
59
60     # Finding and crearting POD description files from different deployments
61     ssh_options="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
62
63     if [ "$INSTALLER_TYPE" == "fuel" ]; then
64         echo "Fetching id_rsa file from jump_server $INSTALLER_IP..."
65         sshpass -p r00tme sudo scp $ssh_options root@${INSTALLER_IP}:~/.ssh/id_rsa ${BOTTLENECKS_CONFIG}/id_rsa
66     fi
67
68     if [ "$INSTALLER_TYPE" == "apex" ]; then
69         echo "Fetching id_rsa file from jump_server $INSTALLER_IP..."
70         sudo scp $ssh_options stack@${INSTALLER_IP}:~/.ssh/id_rsa ${BOTTLENECKS_CONFIG}/id_rsa
71     fi
72
73     set +e
74
75     sudo -H pip install virtualenv
76
77     cd ${RELENG_REPO}/modules
78     sudo virtualenv venv
79     source venv/bin/activate
80     sudo -H pip install -e ./ >/dev/null
81     sudo -H pip install netaddr
82
83     if [[ ${INSTALLER_TYPE} == compass ]]; then
84         options="-u root -p root"
85     elif [[ ${INSTALLER_TYPE} == fuel ]]; then
86         options="-u root -p r00tme"
87     elif [[ ${INSTALLER_TYPE} == apex ]]; then
88         options="-u stack -k /root/.ssh/id_rsa"
89     else
90         echo "Don't support to generate pod.yaml on ${INSTALLER_TYPE} currently."
91     fi
92
93     if [[ ${INSTALLER_TYPE} != compass ]]; then
94         cmd="sudo python ${RELENG_REPO}/utils/create_pod_file.py -t ${INSTALLER_TYPE} \
95          -i ${INSTALLER_IP} ${options} -f ${BOTTLENECKS_CONFIG}/pod.yaml \
96          -s ${BOTTLENECKS_CONFIG}/id_rsa"
97         echo ${cmd}
98         ${cmd}
99     else
100         cmd="sudo cp ${YARDSTICK_REPO}/etc/yardstick/nodes/compass_sclab_virtual/pod.yaml \
101         ${BOTTLENECKS_CONFIG}"
102         echo ${cmd}
103         ${cmd}
104     fi
105
106     deactivate
107
108     sudo rm -rf ${RELENG_REPO}/modules/venv
109     sudo rm -rf ${RELENG_REPO}/modules/opnfv.egg-info
110
111     set -e
112
113     cd ${WORKSPACE}
114
115     if [ -f ${BOTTLENECKS_CONFIG}/pod.yaml ]; then
116         echo "FILE: ${BOTTLENECKS_CONFIG}/pod.yaml:"
117         cat ${BOTTLENECKS_CONFIG}/pod.yaml
118     else
119         echo "ERROR: cannot find file ${BOTTLENECKS_CONFIG}/pod.yaml. Please check if it is existing."
120         sudo ls -al ${BOTTLENECKS_CONFIG}
121     fi
122
123     # Pulling Bottlenecks docker and passing environment variables
124     echo "INFO: pulling Bottlenecks docker ${DOCKER_TAG}"
125     docker pull opnfv/bottlenecks:${DOCKER_TAG} >$redirect
126
127     opts="--privileged=true -id"
128     envs="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP} \
129           -e NODE_NAME=${NODE_NAME} -e EXTERNAL_NET=${EXTERNAL_NETWORK} \
130           -e BRANCH=${BRANCH} -e GERRIT_REFSPEC_DEBUG=${GERRIT_REFSPEC_DEBUG} \
131           -e BOTTLENECKS_DB_TARGET=${BOTTLENECKS_DB_TARGET} -e PACKAGE_URL=${PACKAGE_URL} \
132           -e DEPLOY_SCENARIO=${DEPLOY_SCENARIO} -e BUILD_TAG=${BUILD_TAG}"
133     docker_volume="-v /var/run/docker.sock:/var/run/docker.sock -v /tmp:/tmp"
134
135     cmd="docker run ${opts} ${envs} --name bottlenecks-load-master ${docker_volume} opnfv/bottlenecks:${DOCKER_TAG} /bin/bash"
136     echo "BOTTLENECKS INFO: running docker run commond: ${cmd}"
137     ${cmd} >$redirect
138     sleep 5
139
140     # Running test cases through Bottlenecks docker
141     if [[ $SUITE_NAME == posca_stress_traffic ]]; then
142         TEST_CASE=posca_factor_system_bandwidth
143         testcase_cmd="docker exec bottlenecks-load-master python ${POSCA_SCRIPT}/../run_testsuite.py testcase $TEST_CASE $REPORT"
144         echo "BOTTLENECKS INFO: running test case ${TEST_CASE} with report indicator: ${testcase_cmd}"
145         ${testcase_cmd} >$redirect
146     elif [[ $SUITE_NAME == posca_stress_ping ]]; then
147         TEST_CASE=posca_factor_ping
148         testcase_cmd="docker exec bottlenecks-load-master python ${POSCA_SCRIPT}/../run_testsuite.py testcase $TEST_CASE $REPORT"
149         echo "BOTTLENECKS INFO: running test case ${TEST_CASE} with report indicator: ${testcase_cmd}"
150         ${testcase_cmd} >$redirect
151     fi
152 fi