f6071e37aa4ab8b8fdfb0bc4c37517405af2a326
[releng.git] / jjb / functest / set-functest-env.sh
1 #!/bin/bash
2
3 set -e
4 set +u
5 set +o pipefail
6
7 [[ $CI_DEBUG == true ]] && redirect="/dev/stdout" || redirect="/dev/null"
8
9 # Prepare OpenStack credentials volume
10 if [[ ${INSTALLER_TYPE} == 'joid' ]]; then
11     rc_file_vol="-v $LAB_CONFIG/admin-openrc:/home/opnfv/functest/conf/openstack.creds"
12 elif [[ ${INSTALLER_TYPE} == 'compass' && ${BRANCH} == 'master' ]]; then
13     cacert_file_vol="-v ${HOME}/os_cacert:/home/opnfv/functest/conf/os_cacert"
14     echo "export OS_CACERT=/home/opnfv/functest/conf/os_cacert" >> ${HOME}/opnfv-openrc.sh
15     rc_file_vol="-v ${HOME}/opnfv-openrc.sh:/home/opnfv/functest/conf/openstack.creds"
16 else
17     rc_file_vol="-v ${HOME}/opnfv-openrc.sh:/home/opnfv/functest/conf/openstack.creds"
18 fi
19
20
21 # Set iptables rule to allow forwarding return traffic for container
22 if ! sudo iptables -C FORWARD -j RETURN 2> ${redirect} || ! sudo iptables -L FORWARD | awk 'NR==3' | grep RETURN 2> ${redirect}; then
23     sudo iptables -I FORWARD -j RETURN
24 fi
25
26 DEPLOY_TYPE=baremetal
27 [[ $BUILD_TAG =~ "virtual" ]] && DEPLOY_TYPE=virt
28 HOST_ARCH=$(uname -m)
29
30 echo "Functest: Start Docker and prepare environment"
31
32 if [ "$BRANCH" != 'stable/danube' ]; then
33   echo "Functest: Download images that will be used by test cases"
34   images_dir="${HOME}/opnfv/functest/images"
35   chmod +x ${WORKSPACE}/functest/ci/download_images.sh
36   ${WORKSPACE}/functest/ci/download_images.sh ${images_dir} ${DEPLOY_SCENARIO} ${HOST_ARCH} 2> ${redirect}
37   images_vol="-v ${images_dir}:/home/opnfv/functest/images"
38 fi
39
40 dir_result="${HOME}/opnfv/functest/results/${BRANCH##*/}"
41 mkdir -p ${dir_result}
42 sudo rm -rf ${dir_result}/*
43 results_vol="-v ${dir_result}:/home/opnfv/functest/results"
44 custom_params=
45 test -f ${HOME}/opnfv/functest/custom/params_${DOCKER_TAG} && custom_params=$(cat ${HOME}/opnfv/functest/custom/params_${DOCKER_TAG})
46
47 envs="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP} \
48     -e NODE_NAME=${NODE_NAME} -e DEPLOY_SCENARIO=${DEPLOY_SCENARIO} \
49     -e BUILD_TAG=${BUILD_TAG} -e CI_DEBUG=${CI_DEBUG} -e DEPLOY_TYPE=${DEPLOY_TYPE}"
50
51 if [[ ${INSTALLER_TYPE} == 'compass' && ${DEPLOY_SCENARIO} == *'os-nosdn-openo-ha'* ]]; then
52     ssh_options="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
53     openo_msb_port=${openo_msb_port:-80}
54     openo_msb_endpoint="$(sshpass -p'root' ssh 2>/dev/null $ssh_options root@${installer_ip} \
55     'mysql -ucompass -pcompass -Dcompass -e "select package_config from cluster;" \
56     | sed s/,/\\n/g | grep openo_ip | cut -d \" -f 4'):$openo_msb_port"
57
58     envs=${env}" -e OPENO_MSB_ENDPOINT=${openo_msb_endpoint}"
59 fi
60
61 if [ "$BRANCH" != 'stable/danube' ]; then
62   volumes="${images_vol} ${results_vol} ${sshkey_vol} ${stackrc_vol} ${rc_file_vol} ${cacert_file_vol}"
63 else
64   volumes="${results_vol} ${sshkey_vol} ${stackrc_vol} ${rc_file_vol}"
65 fi
66
67 FUNCTEST_IMAGE="opnfv/functest"
68 if [ "$HOST_ARCH" = "aarch64" ]; then
69     FUNCTEST_IMAGE="${FUNCTEST_IMAGE}_${HOST_ARCH}"
70 fi
71
72 echo "Functest: Pulling Functest Docker image ${FUNCTEST_IMAGE}:${DOCKER_TAG}"
73 docker pull ${FUNCTEST_IMAGE}:$DOCKER_TAG >/dev/null
74
75 cmd="sudo docker run --privileged=true -id ${envs} ${volumes} \
76      ${custom_params} ${TESTCASE_OPTIONS} \
77      ${FUNCTEST_IMAGE}:${DOCKER_TAG} /bin/bash"
78 echo "Functest: Running docker run command: ${cmd}"
79 ${cmd} >${redirect}
80 sleep 5
81 container_id=$(docker ps | grep "${FUNCTEST_IMAGE}:${DOCKER_TAG}" | awk '{print $1}' | head -1)
82 echo "Container ID=${container_id}"
83 if [ -z ${container_id} ]; then
84     echo "Cannot find opnfv/functest container ID ${container_id}. Please check if it is existing."
85     docker ps -a
86     exit 1
87 fi
88 echo "Starting the container: docker start ${container_id}"
89 docker start ${container_id}
90 sleep 5
91 docker ps >${redirect}
92 if [ $(docker ps | grep "${FUNCTEST_IMAGE}:${DOCKER_TAG}" | wc -l) == 0 ]; then
93     echo "The container ${FUNCTEST_IMAGE} with ID=${container_id} has not been properly started. Exiting..."
94     exit 1
95 fi
96
97 if [ "$BRANCH" == 'master' ]; then
98     cmd="prepare_env start"
99 else
100     cmd="python ${FUNCTEST_REPO_DIR}/functest/ci/prepare_env.py start"
101 fi
102
103
104 echo "Executing command inside the docker: ${cmd}"
105 docker exec ${container_id} ${cmd}