2e343631b8d28668bd110701e170d7fd11411e00
[releng.git] / jjb / xci / xci-run-functest.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2018 SUSE and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 set -o nounset
11
12 #----------------------------------------------------------------------
13 # This script is used by CI and executed by Jenkins jobs.
14 # You are not supposed to use this script manually if you don't know
15 # what you are doing.
16 #----------------------------------------------------------------------
17
18 # ensure GERRIT_TOPIC is set
19 GERRIT_TOPIC="${GERRIT_TOPIC:-''}"
20
21 # skip the healthcheck if the patch doesn't impact the deployment
22 if [[ "$GERRIT_TOPIC" =~ skip-verify|skip-deployment ]]; then
23     echo "Skipping the healthcheck!"
24     exit 0
25 fi
26
27 # skip the healthcheck if the scenario is Kubernetes scenario
28 if [[ "$DEPLOY_SCENARIO" =~ k8 ]]; then
29     echo "Skipping the healthcheck!"
30     exit 0
31 fi
32
33 # if the scenario is external, we need to wipe WORKSPACE to place releng-xci there since
34 # the project where the scenario is coming from is cloned and the patch checked out to the
35 # xci/scenarios/$DEPLOY_SCENARIO to be synched on clean VM
36 # apart from that, we need releng-xci stuff in WORKSPACE for things to function correctly on Jenkins.
37 # if the change is coming to releng-xci, we don't need to do anything since the patch is checked
38 # out to the WORKSPACE anyways
39 if [[ $GERRIT_PROJECT != "releng-xci" ]]; then
40     cd $HOME && /bin/rm -rf $WORKSPACE
41     git clone https://gerrit.opnfv.org/gerrit/releng-xci $WORKSPACE && cd $WORKSPACE
42     chmod -R go-rwx $WORKSPACE/xci/scripts/vm
43 fi
44
45 # skip the deployment if the scenario is not supported on this distro
46 OPNFV_SCENARIO_REQUIREMENTS=$WORKSPACE/xci/opnfv-scenario-requirements.yml
47 if ! sed -n "/^- scenario: $DEPLOY_SCENARIO$/,/^$/p" $OPNFV_SCENARIO_REQUIREMENTS | grep -q $DISTRO; then
48     echo "# SKIPPED: Scenario $DEPLOY_SCENARIO is NOT supported on $DISTRO"
49     exit 0
50 fi
51
52 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm "cd releng-xci/xci && PATH=/home/devuser/.local/bin:$PATH ansible-playbook -i installer/osa/files/$XCI_FLAVOR/inventory playbooks/prepare-functest.yml"
53 echo "Running functest"
54 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "/root/run-functest.sh"
55 echo "Functest log"
56 echo "---------------------------------------------------------------------------------"
57 ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "cat /root/results/functest.log"
58 echo "---------------------------------------------------------------------------------"
59 # check the log to see if we have any error
60 if ssh -F $HOME/.ssh/${DISTRO}-xci-vm-config ${DISTRO}_xci_vm_opnfv "grep -q 'FAIL' /root/results/functest.log"; then
61     echo "Error: Functest failed!"
62     exit 1
63 fi