d796f3509d298cf8f85c1435f8cf85cad4d4edc2
[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
22 # Set defaults for ansible command-line options to drive the different
23 # tests.
24
25 # NOTE(TheJulia/cinerama): The variables defined on the command line
26 # for the default and DHCP tests are to drive the use of Cirros as the
27 # deployed operating system, and as such sets the test user to cirros,
28 # and writes a debian style interfaces file out to the configuration
29 # drive as cirros does not support the network_info.json format file
30 # placed in the configuration drive. The "build image" test does not
31 # use cirros.
32
33 TEST_VM_NUM_NODES=3
34 export TEST_VM_NODE_NAMES="jumphost.opnfvlocal controller00.opnfvlocal compute00.opnfvlocal"
35 export VM_DOMAIN_TYPE="kvm"
36 export VM_CPU=4
37 export VM_DISK=100
38 TEST_PLAYBOOK="test-bifrost-infracloud.yaml"
39 USE_INSPECTOR=true
40 USE_CIRROS=false
41 TESTING_USER=root
42 VM_MEMORY_SIZE="8192"
43 DOWNLOAD_IPA=true
44 CREATE_IPA_IMAGE=false
45 INSPECT_NODES=true
46 INVENTORY_DHCP=false
47 INVENTORY_DHCP_STATIC_IP=false
48 WRITE_INTERFACES_FILE=true
49
50 # Set BIFROST_INVENTORY_SOURCE
51 export BIFROST_INVENTORY_SOURCE=/tmp/baremetal.csv
52
53 # DIB custom elements path
54 export ELEMENTS_PATH=/usr/share/diskimage-builder/elements:/opt/puppet-infracloud/files/elements
55
56 # settings for console access
57 export DIB_DEV_USER_PWDLESS_SUDO=yes
58 export DIB_DEV_USER_PASSWORD=devuser
59
60 # Source Ansible
61 # NOTE(TheJulia): Ansible stable-1.9 source method tosses an error deep
62 # under the hood which -x will detect, so for this step, we need to suspend
63 # and then re-enable the feature.
64 set +x +o nounset
65 $SCRIPT_HOME/env-setup.sh
66 source ${ANSIBLE_INSTALL_ROOT}/ansible/hacking/env-setup
67 ANSIBLE=$(which ansible-playbook)
68 set -x -o nounset
69
70 # Change working directory
71 cd $BIFROST_HOME/playbooks
72
73 # Syntax check of dynamic inventory test path
74 for task in syntax-check list-tasks; do
75     ${ANSIBLE} -vvvv \
76            -i inventory/localhost \
77            test-bifrost-create-vm.yaml \
78            --${task}
79     ${ANSIBLE} -vvvv \
80            -i inventory/localhost \
81            ${TEST_PLAYBOOK} \
82            --${task} \
83            -e testing_user=${TESTING_USER}
84 done
85
86 # Create the test VMS
87 ${ANSIBLE} -vvvv \
88        -i inventory/localhost \
89        test-bifrost-create-vm.yaml \
90        -e test_vm_num_nodes=${TEST_VM_NUM_NODES} \
91        -e test_vm_memory_size=${VM_MEMORY_SIZE} \
92        -e enable_venv=${ENABLE_VENV} \
93        -e test_vm_domain_type=${VM_DOMAIN_TYPE}
94
95 # Execute the installation and VM startup test.
96 ${ANSIBLE} -vvvv \
97     -i inventory/bifrost_inventory.py \
98     ${TEST_PLAYBOOK} \
99     -e use_cirros=${USE_CIRROS} \
100     -e testing_user=${TESTING_USER} \
101     -e test_vm_num_nodes=${TEST_VM_NUM_NODES} \
102     -e inventory_dhcp=${INVENTORY_DHCP} \
103     -e inventory_dhcp_static_ip=${INVENTORY_DHCP_STATIC_IP} \
104     -e enable_venv=${ENABLE_VENV} \
105     -e enable_inspector=${USE_INSPECTOR} \
106     -e inspect_nodes=${INSPECT_NODES} \
107     -e download_ipa=${DOWNLOAD_IPA} \
108     -e create_ipa_image=${CREATE_IPA_IMAGE} \
109     -e write_interfaces_file=${WRITE_INTERFACES_FILE} \
110     -e ipv4_gateway=192.168.122.1
111 EXITCODE=$?
112
113 if [ $EXITCODE != 0 ]; then
114     echo "****************************"
115     echo "Test failed. See logs folder"
116     echo "****************************"
117 fi
118
119 $SCRIPT_HOME/collect-test-info.sh
120
121 exit $EXITCODE