83cf1cc1b2c0a1bf8e14ad05d62b3adb1d7f8289
[releng.git] / prototypes / bifrost / scripts / test-bifrost-deployment.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 Ericsson AB 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
11 set -eux
12 set -o pipefail
13 export PYTHONUNBUFFERED=1
14 SCRIPT_HOME="$(cd "$(dirname "$0")" && pwd)"
15 BIFROST_HOME=$SCRIPT_HOME/..
16 ANSIBLE_INSTALL_ROOT=${ANSIBLE_INSTALL_ROOT:-/opt/stack}
17 ENABLE_VENV="false"
18 USE_DHCP="false"
19 USE_VENV="false"
20 BUILD_IMAGE=true
21 PROVISION_WAIT_TIMEOUT=${PROVISION_WAIT_TIMEOUT:-3600}
22 BAREMETAL_DATA_FILE=${BAREMETAL_DATA_FILE:-'/tmp/baremetal.json'}
23
24 # Set defaults for ansible command-line options to drive the different
25 # tests.
26
27 # NOTE(TheJulia/cinerama): The variables defined on the command line
28 # for the default and DHCP tests are to drive the use of Cirros as the
29 # deployed operating system, and as such sets the test user to cirros,
30 # and writes a debian style interfaces file out to the configuration
31 # drive as cirros does not support the network_info.json format file
32 # placed in the configuration drive. The "build image" test does not
33 # use cirros.
34
35 TEST_VM_NUM_NODES=3
36 export TEST_VM_NODE_NAMES="xcimaster controller00 compute00"
37 export VM_DOMAIN_TYPE="kvm"
38 export VM_CPU=${VM_CPU:-4}
39 export VM_DISK=${VM_DISK:-100}
40 export VM_DISK_CACHE=${VM_DISK_CACHE:-unsafe}
41 TEST_PLAYBOOK="opnfv-virtual.yaml"
42 USE_INSPECTOR=true
43 USE_CIRROS=false
44 TESTING_USER=root
45 VM_MEMORY_SIZE=${VM_MEMORY_SIZE:-8192}
46 DOWNLOAD_IPA=true
47 CREATE_IPA_IMAGE=false
48 INSPECT_NODES=true
49 INVENTORY_DHCP=false
50 INVENTORY_DHCP_STATIC_IP=false
51 WRITE_INTERFACES_FILE=true
52
53 # Set BIFROST_INVENTORY_SOURCE
54 export BIFROST_INVENTORY_SOURCE=/tmp/baremetal.json
55
56 # settings for console access
57 export DIB_DEV_USER_PWDLESS_SUDO=yes
58 export DIB_DEV_USER_PASSWORD=devuser
59
60 # settings for distro: trusty/ubuntu-minimal, 7/centos7
61 export DIB_OS_RELEASE=${DIB_OS_RELEASE:-trusty}
62 export DIB_OS_ELEMENT=${DIB_OS_ELEMENT:-ubuntu-minimal}
63
64 # for centos 7: "vim,less,bridge-utils,iputils,rsyslog,curl"
65 export DIB_OS_PACKAGES=${DIB_OS_PACKAGES:-"vlan,vim,less,bridge-utils,language-pack-en,iputils-ping,rsyslog,curl"}
66
67 # Additional dib elements
68 export EXTRA_DIB_ELEMENTS=${EXTRA_DIB_ELEMENTS:-"openssh-server"}
69
70 # Source Ansible
71 # NOTE(TheJulia): Ansible stable-1.9 source method tosses an error deep
72 # under the hood which -x will detect, so for this step, we need to suspend
73 # and then re-enable the feature.
74 set +x +o nounset
75 $SCRIPT_HOME/env-setup.sh
76 source ${ANSIBLE_INSTALL_ROOT}/ansible/hacking/env-setup
77 ANSIBLE=$(which ansible-playbook)
78 set -x -o nounset
79
80 logs_on_exit() {
81     $SCRIPT_HOME/collect-test-info.sh
82 }
83 trap logs_on_exit EXIT
84
85 # Change working directory
86 cd $BIFROST_HOME/playbooks
87
88 # Syntax check of dynamic inventory test path
89 for task in syntax-check list-tasks; do
90     ${ANSIBLE} -vvvv \
91            -i inventory/localhost \
92            test-bifrost-create-vm.yaml \
93            --${task}
94     ${ANSIBLE} -vvvv \
95            -i inventory/localhost \
96            ${TEST_PLAYBOOK} \
97            --${task} \
98            -e testing_user=${TESTING_USER}
99 done
100
101 # Create the test VMS
102 ${ANSIBLE} -vvvv \
103        -i inventory/localhost \
104        test-bifrost-create-vm.yaml \
105        -e test_vm_num_nodes=${TEST_VM_NUM_NODES} \
106        -e test_vm_memory_size=${VM_MEMORY_SIZE} \
107        -e enable_venv=${ENABLE_VENV} \
108        -e test_vm_domain_type=${VM_DOMAIN_TYPE} \
109        -e baremetal_json_file=${BAREMETAL_DATA_FILE}
110
111 # Execute the installation and VM startup test.
112 ${ANSIBLE} -vvvv \
113     -i inventory/bifrost_inventory.py \
114     ${TEST_PLAYBOOK} \
115     -e use_cirros=${USE_CIRROS} \
116     -e testing_user=${TESTING_USER} \
117     -e test_vm_num_nodes=${TEST_VM_NUM_NODES} \
118     -e inventory_dhcp=${INVENTORY_DHCP} \
119     -e inventory_dhcp_static_ip=${INVENTORY_DHCP_STATIC_IP} \
120     -e enable_venv=${ENABLE_VENV} \
121     -e enable_inspector=${USE_INSPECTOR} \
122     -e inspect_nodes=${INSPECT_NODES} \
123     -e download_ipa=${DOWNLOAD_IPA} \
124     -e create_ipa_image=${CREATE_IPA_IMAGE} \
125     -e write_interfaces_file=${WRITE_INTERFACES_FILE} \
126     -e ipv4_gateway=192.168.122.1 \
127     -e wait_timeout=${PROVISION_WAIT_TIMEOUT}
128 EXITCODE=$?
129
130 if [ $EXITCODE != 0 ]; then
131     echo "****************************"
132     echo "Test failed. See logs folder"
133     echo "****************************"
134 fi
135
136 exit $EXITCODE