Merge "add zte-pod1 to functest dashboard"
[releng.git] / jjb / functest / set-functest-env.sh
1 #!/bin/bash
2
3 set -e
4 [[ $CI_DEBUG == true ]] && redirect="/dev/stdout" || redirect="/dev/null"
5 # labconfig is used only for joid
6 labconfig=""
7 if [[ ${INSTALLER_TYPE} == 'apex' ]]; then
8     if sudo virsh list | grep instack; then
9         instack_mac=$(sudo virsh domiflist instack | grep default | \
10                       grep -Eo "[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+")
11     elif sudo virsh list | grep undercloud; then
12         instack_mac=$(sudo virsh domiflist undercloud | grep default | \
13                       grep -Eo "[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+")
14     else
15         echo "No available installer VM exists...exiting"
16         exit 1
17     fi
18     INSTALLER_IP=$(/usr/sbin/arp -e | grep ${instack_mac} | awk {'print $1'})
19     sshkey="-v /root/.ssh/id_rsa:/root/.ssh/id_rsa"
20     if sudo iptables -C FORWARD -o virbr0 -j REJECT --reject-with icmp-port-unreachable 2> ${redirect}; then
21         sudo iptables -D FORWARD -o virbr0 -j REJECT --reject-with icmp-port-unreachable
22     fi
23     if sudo iptables -C FORWARD -i virbr0 -j REJECT --reject-with icmp-port-unreachable 2> ${redirect}; then
24         sudo iptables -D FORWARD -i virbr0 -j REJECT --reject-with icmp-port-unreachable
25     fi
26 elif [[ ${INSTALLER_TYPE} == 'joid' ]]; then
27     # If production lab then creds may be retrieved dynamically
28     # creds are on the jumphost, always in the same folder
29     labconfig="-v $LAB_CONFIG/admin-openrc:/home/opnfv/functest/conf/openstack.creds"
30     # If dev lab, credentials may not be the default ones, just provide a path to put them into docker
31     # replace the default one by the customized one provided by jenkins config
32 fi
33 echo "Functest: Start Docker and prepare environment"
34 envs="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP} \
35     -e NODE_NAME=${NODE_NAME} -e DEPLOY_SCENARIO=${DEPLOY_SCENARIO} \
36     -e BUILD_TAG=${BUILD_TAG} -e CI_DEBUG=${CI_DEBUG}"
37 branch=${GIT_BRANCH##*/}
38 dir_result="${HOME}/opnfv/functest/results/${branch}"
39 mkdir -p ${dir_result}
40 sudo rm -rf ${dir_result}/*
41 res_volume="-v ${dir_result}:/home/opnfv/functest/results"
42 custom_params=
43 test -f ${HOME}/opnfv/functest/custom/params_${DOCKER_TAG} && custom_params=$(cat ${HOME}/opnfv/functest/custom/params_${DOCKER_TAG})
44
45 echo "Functest: Pulling image opnfv/functest:${DOCKER_TAG}"
46 docker pull opnfv/functest:$DOCKER_TAG >/dev/null
47
48 cmd="sudo docker run --privileged=true -id ${envs} ${labconfig} ${sshkey} ${res_volume} ${custom_params} opnfv/functest:${DOCKER_TAG} /bin/bash"
49 echo "Functest: Running docker run command: ${cmd}"
50 ${cmd} >${redirect}
51 sleep 5
52 container_id=$(docker ps | grep "opnfv/functest:${DOCKER_TAG}" | awk '{print $1}' | head -1)
53 echo "Container ID=${container_id}"
54 if [ -z ${container_id} ]; then
55     echo "Cannot find opnfv/functest container ID ${container_id}. Please check if it is existing."
56     docker ps -a
57     exit 1
58 fi
59 echo "Starting the container: docker start ${container_id}"
60 docker start ${container_id}
61 sleep 5
62 docker ps >${redirect}
63 if [ $(docker ps | grep "opnfv/functest:${DOCKER_TAG}" | wc -l) == 0 ]; then
64     echo "The container opnfv/functest with ID=${container_id} has not been properly started. Exiting..."
65     exit 1
66 fi
67 if [[ ${branch} == *"brahmaputra"* ]]; then
68     cmd="${FUNCTEST_REPO_DIR}/docker/prepare_env.sh"
69 else
70     cmd="python ${FUNCTEST_REPO_DIR}/ci/prepare_env.py start"
71 fi
72 echo "Executing command inside the docker: ${cmd}"
73 docker exec ${container_id} ${cmd}