ec879e325f55ee5fb511600a1f53ae5cc0e3750e
[releng.git] / jjb / dovetail / dovetail-run.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 #the noun INSTALLER is used in community, here is just the example to run.
11 #multi-platforms are supported.
12
13 set -e
14 [[ $CI_DEBUG == true ]] && redirect="/dev/stdout" || redirect="/dev/null"
15
16 DEPLOY_TYPE=baremetal
17 [[ $BUILD_TAG =~ "virtual" ]] && DEPLOY_TYPE=virt
18
19 DOVETAIL_HOME=${WORKSPACE}/cvp
20 [ -d ${DOVETAIL_HOME} ] && sudo rm -rf ${DOVETAIL_HOME}
21
22 mkdir -p ${DOVETAIL_HOME}
23
24 DOVETAIL_CONFIG=${DOVETAIL_HOME}/pre_config
25 mkdir -p ${DOVETAIL_CONFIG}
26
27 ssh_options="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
28
29 sshkey=""
30 # The path of openrc.sh is defined in fetch_os_creds.sh
31 OPENRC=${DOVETAIL_CONFIG}/env_config.sh
32 CACERT=${DOVETAIL_CONFIG}/os_cacert
33 if [[ ${INSTALLER_TYPE} == 'apex' ]]; then
34     instack_mac=$(sudo virsh domiflist undercloud | grep default | \
35                   grep -Eo "[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+")
36     INSTALLER_IP=$(/usr/sbin/arp -e | grep ${instack_mac} | awk {'print $1'})
37     sshkey="-v /root/.ssh/id_rsa:/root/.ssh/id_rsa"
38     if [[ -n $(sudo iptables -L FORWARD |grep "REJECT"|grep "reject-with icmp-port-unreachable") ]]; then
39         #note: this happens only in opnfv-lf-pod1
40         sudo iptables -D FORWARD -o virbr0 -j REJECT --reject-with icmp-port-unreachable
41         sudo iptables -D FORWARD -i virbr0 -j REJECT --reject-with icmp-port-unreachable
42     fi
43 elif [[ ${INSTALLER_TYPE} == 'joid' ]]; then
44     # If production lab then creds may be retrieved dynamically
45     # creds are on the jumphost, always in the same folder
46     sudo cp $LAB_CONFIG/admin-openrc $OPENRC
47     # If dev lab, credentials may not be the default ones, just provide a path to put them into docker
48     # replace the default one by the customized one provided by jenkins config
49 fi
50
51 # Set iptables rule to allow forwarding return traffic for container
52 if ! sudo iptables -C FORWARD -j RETURN 2> ${redirect} || ! sudo iptables -L FORWARD | awk 'NR==3' | grep RETURN 2> ${redirect}; then
53     sudo iptables -I FORWARD -j RETURN
54 fi
55
56 releng_repo=${WORKSPACE}/releng
57 [ -d ${releng_repo} ] && sudo rm -rf ${releng_repo}
58 git clone https://gerrit.opnfv.org/gerrit/releng ${releng_repo} >/dev/null
59
60 if [[ ${INSTALLER_TYPE} != 'joid' ]]; then
61     echo "SUT branch is $SUT_BRANCH"
62     echo "dovetail branch is $BRANCH"
63     BRANCH_BACKUP=$BRANCH
64     export BRANCH=$SUT_BRANCH
65     ${releng_repo}/utils/fetch_os_creds.sh -d ${OPENRC} -i ${INSTALLER_TYPE} -a ${INSTALLER_IP} -o ${CACERT} >${redirect}
66     export BRANCH=$BRANCH_BACKUP
67 fi
68
69 if [[ -f $OPENRC ]]; then
70     echo "INFO: openstack credentials path is $OPENRC"
71     if [[ ! "${SUT_BRANCH}" =~ "danube" && ${INSTALLER_TYPE} == "compass" ]]; then
72         if [[ -f ${CACERT} ]]; then
73             echo "INFO: ${INSTALLER_TYPE} openstack cacert file is ${CACERT}"
74             echo "export OS_CACERT=${CACERT}" >> ${OPENRC}
75         else
76             echo "ERROR: Can't find ${INSTALLER_TYPE} openstack cacert file. Please check if it is existing."
77             sudo ls -al ${DOVETAIL_CONFIG}
78             exit 1
79         fi
80     fi
81 else
82     echo "ERROR: cannot find file $OPENRC. Please check if it is existing."
83     sudo ls -al ${DOVETAIL_CONFIG}
84     exit 1
85 fi
86
87 if [[ ! "${SUT_BRANCH}" =~ "danube" && ${INSTALLER_TYPE} == "fuel" ]]; then
88     sed -i "s#/etc/ssl/certs/mcp_os_cacert#${CACERT}#g" ${OPENRC}
89 fi
90 cat $OPENRC
91
92 if [[ ! "${SUT_BRANCH}" =~ "danube" && ${INSTALLER_TYPE} == "compass" ]]; then
93     cat << EOF >${DOVETAIL_CONFIG}/pod.yaml
94 nodes:
95 - {ip: 10.1.0.52, name: node1, password: root, role: controller, user: root}
96 - {ip: 10.1.0.51, name: node2, password: root, role: controller, user: root}
97 - {ip: 10.1.0.50, name: node3, password: root, role: controller, user: root}
98 - {ip: 10.1.0.54, name: node4, password: root, role: compute, user: root}
99 - {ip: 10.1.0.53, name: node5, password: root, role: compute, user: root}
100
101 EOF
102 fi
103
104 if [[ ! "${SUT_BRANCH}" =~ "danube" && ${INSTALLER_TYPE} == 'fuel' && ${DEPLOY_TYPE} == 'baremetal' ]]; then
105     fuel_ctl_ssh_options="${ssh_options} -i ${SSH_KEY}"
106     ssh_user="ubuntu"
107     fuel_ctl_ip=$(ssh 2>/dev/null ${fuel_ctl_ssh_options} "${ssh_user}@${INSTALLER_IP}" \
108             "sudo salt --out yaml 'ctl*' pillar.get _param:openstack_control_address | \
109                 awk '{print \$2; exit}'") &> /dev/null
110     cat << EOF >${DOVETAIL_CONFIG}/pod.yaml
111 nodes:
112 - {ip: ${fuel_ctl_ip}, name: node1, key_filename: /root/.ssh/id_rsa, role: controller, user: ${ssh_user}}
113
114 EOF
115 fi
116
117 if [[ ! -f ${DOVETAIL_CONFIG}/pod.yaml ]]; then
118     set +e
119
120     sudo pip install virtualenv
121
122     cd ${releng_repo}/modules
123     sudo virtualenv venv
124     source venv/bin/activate
125     sudo pip install -e ./ >/dev/null
126     sudo pip install netaddr
127
128     if [[ ${INSTALLER_TYPE} == compass ]]; then
129         options="-u root -p root"
130     elif [[ ${INSTALLER_TYPE} == fuel ]]; then
131         options="-u root -p r00tme"
132     elif [[ ${INSTALLER_TYPE} == apex ]]; then
133         options="-u stack -k /root/.ssh/id_rsa"
134     elif [[ ${INSTALLER_TYPE} == daisy ]]; then
135         options="-u root -p r00tme"
136     else
137         echo "Don't support to generate pod.yaml on ${INSTALLER_TYPE} currently."
138         echo "HA test cases may not run properly."
139     fi
140
141     cmd="sudo python ${releng_repo}/utils/create_pod_file.py -t ${INSTALLER_TYPE} \
142          -i ${INSTALLER_IP} ${options} -f ${DOVETAIL_CONFIG}/pod.yaml"
143     echo ${cmd}
144     ${cmd}
145
146     deactivate
147
148     set -e
149
150     cd ${WORKSPACE}
151 fi
152
153 if [ -f ${DOVETAIL_CONFIG}/pod.yaml ]; then
154     echo "file ${DOVETAIL_CONFIG}/pod.yaml:"
155     cat ${DOVETAIL_CONFIG}/pod.yaml
156 else
157     echo "Error: cannot find file ${DOVETAIL_CONFIG}/pod.yaml. Please check if it is existing."
158     sudo ls -al ${DOVETAIL_CONFIG}
159     echo "HA test cases may not run properly."
160 fi
161
162 if [ "$INSTALLER_TYPE" == "fuel" ]; then
163     if [[ "${SUT_BRANCH}" =~ "danube" ]]; then
164         echo "Fetching id_rsa file from jump_server $INSTALLER_IP..."
165         sshpass -p r00tme sudo scp $ssh_options root@${INSTALLER_IP}:~/.ssh/id_rsa ${DOVETAIL_CONFIG}/id_rsa
166     else
167         cp ${SSH_KEY} ${DOVETAIL_CONFIG}/id_rsa
168     fi
169 fi
170
171 if [ "$INSTALLER_TYPE" == "apex" ]; then
172     echo "Fetching id_rsa file from jump_server $INSTALLER_IP..."
173     sudo scp $ssh_options stack@${INSTALLER_IP}:~/.ssh/id_rsa ${DOVETAIL_CONFIG}/id_rsa
174 fi
175
176 if [ "$INSTALLER_TYPE" == "daisy" ]; then
177     echo "Fetching id_dsa file from jump_server $INSTALLER_IP..."
178     sshpass -p r00tme sudo scp $ssh_options root@${INSTALLER_IP}:~/.ssh/id_dsa ${DOVETAIL_CONFIG}/id_rsa
179 fi
180
181
182 image_path=${HOME}/opnfv/dovetail/images
183 if [[ ! -d ${image_path} ]]; then
184     mkdir -p ${image_path}
185 fi
186 # sdnvpn test case needs to download this image first before running
187 ubuntu_image=${image_path}/ubuntu-16.04-server-cloudimg-amd64-disk1.img
188 if [[ ! -f ${ubuntu_image} ]]; then
189     echo "Download image ubuntu-16.04-server-cloudimg-amd64-disk1.img ..."
190     wget -q -nc http://artifacts.opnfv.org/sdnvpn/ubuntu-16.04-server-cloudimg-amd64-disk1.img -P ${image_path}
191 fi
192 sudo cp ${ubuntu_image} ${DOVETAIL_CONFIG}
193
194 # functest needs to download this image first before running
195 cirros_image=${image_path}/cirros-0.3.5-x86_64-disk.img
196 if [[ ! -f ${cirros_image} ]]; then
197     echo "Download image cirros-0.3.5-x86_64-disk.img ..."
198     wget -q -nc http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img -P ${image_path}
199 fi
200 sudo cp ${cirros_image} ${DOVETAIL_CONFIG}
201
202 # snaps_smoke test case needs to download this image first before running
203 ubuntu14_image=${image_path}/ubuntu-14.04-server-cloudimg-amd64-disk1.img
204 if [[ ! -f ${ubuntu14_image} ]]; then
205     echo "Download image ubuntu-14.04-server-cloudimg-amd64-disk1.img ..."
206     wget -q -nc https://cloud-images.ubuntu.com/releases/14.04/release/ubuntu-14.04-server-cloudimg-amd64-disk1.img -P ${image_path}
207 fi
208 sudo cp ${ubuntu14_image} ${DOVETAIL_CONFIG}
209
210 # cloudify_ims test case needs to download these 2 images first before running
211 cloudify_image=${image_path}/cloudify-manager-premium-4.0.1.qcow2
212 if [[ ! -f ${cloudify_image} ]]; then
213     echo "Download image cloudify-manager-premium-4.0.1.qcow2 ..."
214     wget -q -nc http://repository.cloudifysource.org/cloudify/4.0.1/sp-release/cloudify-manager-premium-4.0.1.qcow2 -P ${image_path}
215 fi
216 sudo cp ${cloudify_image} ${DOVETAIL_CONFIG}
217 trusty_image=${image_path}/trusty-server-cloudimg-amd64-disk1.img
218 if [[ ! -f ${trusty_image} ]]; then
219     echo "Download image trusty-server-cloudimg-amd64-disk1.img ..."
220     wget -q -nc http://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img -P ${image_path}
221 fi
222 sudo cp ${trusty_image} ${DOVETAIL_CONFIG}
223
224 opts="--privileged=true -id"
225
226 docker_volume="-v /var/run/docker.sock:/var/run/docker.sock"
227 dovetail_home_volume="-v ${DOVETAIL_HOME}:${DOVETAIL_HOME}"
228
229 # Pull the image with correct tag
230 DOCKER_REPO='opnfv/dovetail'
231 if [ "$(uname -m)" = 'aarch64' ]; then
232     DOCKER_REPO="${DOCKER_REPO}_$(uname -m)"
233     DOCKER_TAG="latest"
234 fi
235
236 echo "Dovetail: Pulling image ${DOCKER_REPO}:${DOCKER_TAG}"
237 docker pull ${DOCKER_REPO}:$DOCKER_TAG >$redirect
238
239 env4bgpvpn="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP}"
240
241 cmd="docker run ${opts} -e DOVETAIL_HOME=${DOVETAIL_HOME} ${docker_volume} ${dovetail_home_volume} \
242      ${sshkey} ${env4bgpvpn} ${DOCKER_REPO}:${DOCKER_TAG} /bin/bash"
243 echo "Dovetail: running docker run command: ${cmd}"
244 ${cmd} >${redirect}
245 sleep 5
246 container_id=$(docker ps | grep "${DOCKER_REPO}:${DOCKER_TAG}" | awk '{print $1}' | head -1)
247 echo "Container ID=${container_id}"
248 if [ -z ${container_id} ]; then
249     echo "Cannot find ${DOCKER_REPO} container ID ${container_id}. Please check if it is existing."
250     docker ps -a
251     exit 1
252 fi
253 echo "Container Start: docker start ${container_id}"
254 docker start ${container_id}
255 sleep 5
256 docker ps >${redirect}
257 if [ $(docker ps | grep "${DOCKER_REPO}:${DOCKER_TAG}" | wc -l) == 0 ]; then
258     echo "The container ${DOCKER_REPO} with ID=${container_id} has not been properly started. Exiting..."
259     exit 1
260 fi
261
262 # Modify tempest_conf.yaml file
263 tempest_conf_file=${DOVETAIL_CONFIG}/tempest_conf.yaml
264 if [[ ${INSTALLER_TYPE} == 'compass' || ${INSTALLER_TYPE} == 'apex' ]]; then
265     volume_device='vdb'
266 else
267     volume_device='vdc'
268 fi
269
270 cat << EOF >$tempest_conf_file
271
272 compute:
273     min_compute_nodes: 2
274     volume_device_name: ${volume_device}
275
276 EOF
277
278 echo "${tempest_conf_file}..."
279 cat ${tempest_conf_file}
280
281 cp_tempest_cmd="docker cp ${DOVETAIL_CONFIG}/tempest_conf.yaml $container_id:/home/opnfv/dovetail/dovetail/userconfig"
282 echo "exec command: ${cp_tempest_cmd}"
283 $cp_tempest_cmd
284
285 if [[ ${TESTSUITE} == 'default' ]]; then
286     testsuite=''
287 else
288     testsuite="--testsuite ${TESTSUITE}"
289 fi
290
291 run_cmd="dovetail run ${testsuite} -d"
292 echo "Container exec command: ${run_cmd}"
293 docker exec $container_id ${run_cmd}
294
295 sudo cp -r ${DOVETAIL_HOME}/results ./
296 # To make sure the file owner is the current user, for the copied results files in the above line
297 # if not, there will be error when next time to wipe workspace
298 # CURRENT_USER=${SUDO_USER:-$USER}
299 # PRIMARY_GROUP=$(id -gn $CURRENT_USER)
300 # sudo chown -R ${CURRENT_USER}:${PRIMARY_GROUP} ${WORKSPACE}/results
301
302 #remove useless workspace from yardstick to save disk space
303 sudo rm -rf ./results/workspace
304
305 echo "Dovetail: done!"
306