blob: 68ddd44105e218a4df03ef1cea279f1449623d0c [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Sean Dagued0931212012-10-04 16:06:44 -04003# lib/tempest
Dean Troyer6d04fd72012-12-21 11:03:37 -06004# Install and configure Tempest
Sean Dagued0931212012-10-04 16:06:44 -04005
6# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01007#
8# - ``functions`` file
9# - ``lib/nova`` service is running
10# - Global vars that are assumed to be defined:
11# - ``DEST``, ``FILES``
12# - ``ADMIN_PASSWORD``
13# - ``DEFAULT_IMAGE_NAME``
14# - ``S3_SERVICE_PORT``
15# - ``SERVICE_HOST``
16# - ``BASE_SQL_CONN`` ``lib/database`` declares
17# - ``PUBLIC_NETWORK_NAME``
18# - ``Q_USE_NAMESPACE``
19# - ``Q_ROUTER_NAME``
Tomoe Sugiharaafbc6312013-11-14 20:02:47 +000020# - ``Q_L3_ENABLED``
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010021# - ``VIRT_DRIVER``
22# - ``LIBVIRT_TYPE``
23# - ``KEYSTONE_SERVICE_PROTOCOL``, ``KEYSTONE_SERVICE_HOST`` from lib/keystone
24#
Attila Fazekas2aa35172012-12-05 20:03:40 +010025# Optional Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010026#
27# - ``ALT_*`` (similar vars exists in keystone_data.sh)
28# - ``LIVE_MIGRATION_AVAILABLE``
29# - ``USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION``
30# - ``DEFAULT_INSTANCE_TYPE``
31# - ``DEFAULT_INSTANCE_USER``
Swapnil Kulkarni09fb7ba2014-10-16 06:30:28 +000032# - ``CINDER_ENABLED_BACKENDS``
Matt Riedemann89ee5852015-07-09 13:25:04 -070033# - ``NOVA_ALLOW_DUPLICATE_NETWORKS``
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010034#
Sean Dagued0931212012-10-04 16:06:44 -040035# ``stack.sh`` calls the entry points in this order:
36#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010037# - install_tempest
38# - configure_tempest
39# - init_tempest
Sean Dagued0931212012-10-04 16:06:44 -040040
41# Save trace setting
42XTRACE=$(set +o | grep xtrace)
43set +o xtrace
44
Dean Troyer6d04fd72012-12-21 11:03:37 -060045
Sean Dagued0931212012-10-04 16:06:44 -040046# Defaults
47# --------
48
Sean Dagued0931212012-10-04 16:06:44 -040049# Set up default directories
Sean Dague91b22902014-11-18 07:13:35 -050050GITDIR["tempest-lib"]=$DEST/tempest-lib
Sean Dague5cb19062014-11-01 01:37:45 +010051
Sean Dagued0931212012-10-04 16:06:44 -040052TEMPEST_DIR=$DEST/tempest
john-griffithdc4dc7f2014-01-22 18:09:32 -070053TEMPEST_CONFIG_DIR=${TEMPEST_CONFIG_DIR:-$TEMPEST_DIR/etc}
54TEMPEST_CONFIG=$TEMPEST_CONFIG_DIR/tempest.conf
Matthew Treinish14ccba02013-07-29 16:15:53 -040055TEMPEST_STATE_PATH=${TEMPEST_STATE_PATH:=$DATA_DIR/tempest}
Attila Fazekas2aa35172012-12-05 20:03:40 +010056
Dean Troyer6d04fd72012-12-21 11:03:37 -060057NOVA_SOURCE_DIR=$DEST/nova
58
Attila Fazekasbae02332013-05-09 09:24:49 +020059BUILD_INTERVAL=1
Arx Cruz1bde9b42014-07-18 11:34:33 -030060
61# This is the timeout that tempest will wait for a VM to change state,
62# spawn, delete, etc.
63# The default is set to 196 seconds.
64BUILD_TIMEOUT=${BUILD_TIMEOUT:-196}
Sean Dagued0931212012-10-04 16:06:44 -040065
Joe Gordonc9b245b2015-02-10 14:32:39 -080066# This must be False on stable branches, as master tempest
67# deps do not match stable branch deps. Set this to True to
Dean Troyerdc97cb72015-03-28 08:20:50 -050068# have tempest installed in DevStack by default.
Matthew Treinishcb3cece2015-03-16 10:37:51 -040069INSTALL_TEMPEST=${INSTALL_TEMPEST:-"True"}
Joe Gordonc9b245b2015-02-10 14:32:39 -080070
Attila Fazekas2d4c8da2014-03-19 10:42:01 +010071BOTO_MATERIALS_PATH="$FILES/images/s3-materials/cirros-${CIRROS_VERSION}"
Attila Fazekas58e694e2015-02-04 12:45:50 +010072BOTO_CONF=/etc/boto.cfg
Attila Fazekas1d29d8b2013-01-07 15:51:32 +010073
john-griffithdc4dc7f2014-01-22 18:09:32 -070074# Cinder/Volume variables
75TEMPEST_VOLUME_DRIVER=${TEMPEST_VOLUME_DRIVER:-default}
Eric Harney01456482014-10-14 18:53:53 -040076TEMPEST_DEFAULT_VOLUME_VENDOR="Open Source"
77TEMPEST_VOLUME_VENDOR=${TEMPEST_VOLUME_VENDOR:-$TEMPEST_DEFAULT_VOLUME_VENDOR}
78TEMPEST_DEFAULT_STORAGE_PROTOCOL="iSCSI"
79TEMPEST_STORAGE_PROTOCOL=${TEMPEST_STORAGE_PROTOCOL:-$TEMPEST_DEFAULT_STORAGE_PROTOCOL}
Dean Troyercc6b4432013-04-08 15:38:03 -050080
armando-migliaccio71ef61a2014-02-19 22:19:24 -080081# Neutron/Network variables
Sean Dague53753292014-12-04 19:38:15 -050082IPV6_ENABLED=$(trueorfalse True IPV6_ENABLED)
83IPV6_SUBNET_ATTRIBUTES_ENABLED=$(trueorfalse True IPV6_SUBNET_ATTRIBUTES_ENABLED)
armando-migliaccio71ef61a2014-02-19 22:19:24 -080084
Dean Troyerdc97cb72015-03-28 08:20:50 -050085
Dean Troyercc6b4432013-04-08 15:38:03 -050086# Functions
87# ---------
Sean Dagued0931212012-10-04 16:06:44 -040088
Salvatore33e8ee22014-10-05 01:36:34 +020089# remove_disabled_extension - removes disabled extensions from the list of extensions
90# to test for a given service
91function remove_disabled_extensions {
92 local extensions_list=$1
93 shift
94 local disabled_exts=$*
fumihiko kakuma8606c982015-04-13 09:55:06 +090095 remove_disabled_services "$extensions_list" "$disabled_exts"
Salvatore33e8ee22014-10-05 01:36:34 +020096}
97
Sean Dagued0931212012-10-04 16:06:44 -040098# configure_tempest() - Set config files, create data dirs, etc
Ian Wienandaee18c72014-02-21 15:35:08 +110099function configure_tempest {
Joe Gordonc9b245b2015-02-10 14:32:39 -0800100 if [[ "$INSTALL_TEMPEST" == "True" ]]; then
101 setup_develop $TEMPEST_DIR
102 else
103 # install testr since its used to process tempest logs
Sean Dague60996b12015-04-08 09:06:49 -0400104 pip_install_gr testrepository
Joe Gordonc9b245b2015-02-10 14:32:39 -0800105 fi
Joe Gordond5ac7852015-02-06 19:29:23 -0800106
Joe Gordon1fa82aa2015-05-12 20:04:49 -0700107 # Used during configuration so make sure we have the correct
108 # version installed
109 pip_install_gr python-openstackclient
110
Attila Fazekas65c08462012-12-07 14:20:51 +0100111 local image_lines
112 local images
113 local num_images
114 local image_uuid
115 local image_uuid_alt
Attila Fazekas65c08462012-12-07 14:20:51 +0100116 local password
117 local line
118 local flavors
Clark Boylan3b80bde2013-11-20 17:51:50 -0800119 local available_flavors
Attila Fazekas65c08462012-12-07 14:20:51 +0100120 local flavors_ref
121 local flavor_lines
Maru Newbya5c774e2012-12-10 10:40:01 +0000122 local public_network_id
Maru Newby31c94ab2012-12-19 03:59:20 +0000123 local public_router_id
Maru Newbya5c774e2012-12-10 10:40:01 +0000124 local tenant_networks_reachable
Attila Fazekas1d29d8b2013-01-07 15:51:32 +0100125 local boto_instance_type="m1.tiny"
Attila Fazekas386ae8c2013-10-21 09:27:18 +0200126 local ssh_connect_method="fixed"
Attila Fazekas2aa35172012-12-05 20:03:40 +0100127
Dean Troyer6d04fd72012-12-21 11:03:37 -0600128 # Save IFS
Attila Fazekas2aa35172012-12-05 20:03:40 +0100129 ifs=$IFS
130
131 # Glance should already contain images to be used in tempest
132 # testing. Here we simply look for images stored in Glance
133 # and set the appropriate variables for use in the tempest config
134 # We ignore ramdisk and kernel images, look for the default image
Attila Fazekas65c08462012-12-07 14:20:51 +0100135 # ``DEFAULT_IMAGE_NAME``. If not found, we set the ``image_uuid`` to the
136 # first image returned and set ``image_uuid_alt`` to the second,
Attila Fazekas2aa35172012-12-05 20:03:40 +0100137 # if there is more than one returned...
138 # ... Also ensure we only take active images, so we don't get snapshots in process
Cody A.W. Somervillec24e23b2012-12-21 02:10:45 -0500139 declare -a images
140
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200141 if is_service_enabled glance; then
142 while read -r IMAGE_NAME IMAGE_UUID; do
143 if [ "$IMAGE_NAME" = "$DEFAULT_IMAGE_NAME" ]; then
144 image_uuid="$IMAGE_UUID"
145 image_uuid_alt="$IMAGE_UUID"
146 fi
147 images+=($IMAGE_UUID)
Swapnil Kulkarnia747cd22015-05-13 09:26:15 +0000148 done < <(openstack image list --property status=active | awk -F'|' '!/^(+--)|ID|aki|ari/ { print $3,$2 }')
Cody A.W. Somervillec24e23b2012-12-21 02:10:45 -0500149
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200150 case "${#images[*]}" in
151 0)
152 echo "Found no valid images to use!"
153 exit 1
154 ;;
155 1)
156 if [ -z "$image_uuid" ]; then
157 image_uuid=${images[0]}
158 image_uuid_alt=${images[0]}
159 fi
160 ;;
161 *)
162 if [ -z "$image_uuid" ]; then
163 image_uuid=${images[0]}
164 image_uuid_alt=${images[1]}
165 fi
166 ;;
167 esac
168 fi
Attila Fazekas2aa35172012-12-05 20:03:40 +0100169
Dean Troyerdc97cb72015-03-28 08:20:50 -0500170 # Create ``tempest.conf`` from ``tempest.conf.sample``
171 # Copy every time because the image UUIDS are going to change
Dean Troyer8421c2b2015-03-16 13:52:19 -0500172 sudo install -d -o $STACK_USER $TEMPEST_CONFIG_DIR
173 install -m 644 $TEMPEST_DIR/etc/tempest.conf.sample $TEMPEST_CONFIG
Attila Fazekas2aa35172012-12-05 20:03:40 +0100174
Attila Fazekas65c08462012-12-07 14:20:51 +0100175 password=${ADMIN_PASSWORD:-secrete}
Attila Fazekas2aa35172012-12-05 20:03:40 +0100176
Matthew Treinish7ced1502015-03-23 15:51:54 -0400177 # Do we want to make a configuration where Tempest has admin on
178 # the cloud. We don't always want to so that we can ensure Tempest
179 # would work on a public cloud.
180 TEMPEST_HAS_ADMIN=$(trueorfalse True TEMPEST_HAS_ADMIN)
Dean Troyerdc97cb72015-03-28 08:20:50 -0500181
182 # See ``lib/keystone`` where these users and tenants are set up
Andrea Frittolid46d9dd2014-03-05 13:38:19 +0000183 ADMIN_USERNAME=${ADMIN_USERNAME:-admin}
184 ADMIN_TENANT_NAME=${ADMIN_TENANT_NAME:-admin}
Andrea Frittoli03523252014-04-08 13:43:56 +0100185 ADMIN_DOMAIN_NAME=${ADMIN_DOMAIN_NAME:-Default}
Andrea Frittolid46d9dd2014-03-05 13:38:19 +0000186 TEMPEST_USERNAME=${TEMPEST_USERNAME:-demo}
187 TEMPEST_TENANT_NAME=${TEMPEST_TENANT_NAME:-demo}
Attila Fazekas2aa35172012-12-05 20:03:40 +0100188 ALT_USERNAME=${ALT_USERNAME:-alt_demo}
189 ALT_TENANT_NAME=${ALT_TENANT_NAME:-alt_demo}
Harshada Mangesh Kakad49126232014-05-23 09:16:52 +0000190 ADMIN_TENANT_ID=$(openstack project list | awk "/ admin / { print \$2 }")
Attila Fazekas2aa35172012-12-05 20:03:40 +0100191
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200192 if is_service_enabled nova; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500193 # If ``DEFAULT_INSTANCE_TYPE`` is not declared, use the new behavior
194 # Tempest creates its own instance types
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200195 if [[ -z "$DEFAULT_INSTANCE_TYPE" ]]; then
196 available_flavors=$(nova flavor-list)
197 if [[ ! ( $available_flavors =~ 'm1.nano' ) ]]; then
198 if is_arch "ppc64"; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500199 # Qemu needs at least 128MB of memory to boot on ppc64
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200200 nova flavor-create m1.nano 42 128 0 1
201 else
202 nova flavor-create m1.nano 42 64 0 1
203 fi
Rafael Folcoba0f1d32013-12-06 17:56:24 -0200204 fi
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200205 flavor_ref=42
206 boto_instance_type=m1.nano
207 if [[ ! ( $available_flavors =~ 'm1.micro' ) ]]; then
208 if is_arch "ppc64"; then
209 nova flavor-create m1.micro 84 256 0 1
210 else
211 nova flavor-create m1.micro 84 128 0 1
212 fi
Rafael Folcoba0f1d32013-12-06 17:56:24 -0200213 fi
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200214 flavor_ref_alt=84
215 else
Dean Troyerdc97cb72015-03-28 08:20:50 -0500216 # Check Nova for existing flavors, if ``DEFAULT_INSTANCE_TYPE`` is set use it.
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200217 boto_instance_type=$DEFAULT_INSTANCE_TYPE
218 flavor_lines=`nova flavor-list`
219 IFS=$'\r\n'
220 flavors=""
221 for line in $flavor_lines; do
222 f=$(echo $line | awk "/ $DEFAULT_INSTANCE_TYPE / { print \$2 }")
223 flavors="$flavors $f"
224 done
Attila Fazekas2aa35172012-12-05 20:03:40 +0100225
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200226 for line in $flavor_lines; do
227 flavors="$flavors `echo $line | grep -v "^\(|\s*ID\|+--\)" | cut -d' ' -f2`"
228 done
Attila Fazekas7bf1dd32013-01-12 17:31:26 +0100229
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200230 IFS=" "
231 flavors=($flavors)
232 num_flavors=${#flavors[*]}
233 echo "Found $num_flavors flavors"
234 if [[ $num_flavors -eq 0 ]]; then
235 echo "Found no valid flavors to use!"
236 exit 1
Adalberto Medeiros63a71a22013-06-06 08:46:04 -0400237 fi
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200238 flavor_ref=${flavors[0]}
239 flavor_ref_alt=$flavor_ref
240
Dean Troyerdc97cb72015-03-28 08:20:50 -0500241 # Ensure ``flavor_ref`` and ``flavor_ref_alt`` have different values.
242 # Some resize instance in tempest tests depends on this.
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200243 for f in ${flavors[@]:1}; do
244 if [[ $f -ne $flavor_ref ]]; then
245 flavor_ref_alt=$f
246 break
247 fi
248 done
249 fi
Attila Fazekas2aa35172012-12-05 20:03:40 +0100250 fi
251
Maru Newbya5c774e2012-12-10 10:40:01 +0000252 if [ "$Q_USE_NAMESPACE" != "False" ]; then
253 tenant_networks_reachable=false
Attila Fazekasf9e77392013-12-03 06:17:16 +0100254 if ! is_service_enabled n-net; then
255 ssh_connect_method="floating"
256 fi
Maru Newbya5c774e2012-12-10 10:40:01 +0000257 else
258 tenant_networks_reachable=true
259 fi
260
Attila Fazekas386ae8c2013-10-21 09:27:18 +0200261 ssh_connect_method=${TEMPEST_SSH_CONNECT_METHOD:-$ssh_connect_method}
262
Tomoe Sugiharaafbc6312013-11-14 20:02:47 +0000263 if [ "$Q_L3_ENABLED" = "True" ]; then
Mark McClainb05c8762013-07-06 23:29:39 -0400264 public_network_id=$(neutron net-list | grep $PUBLIC_NETWORK_NAME | \
Maru Newbya5c774e2012-12-10 10:40:01 +0000265 awk '{print $2}')
Maru Newby31c94ab2012-12-19 03:59:20 +0000266 if [ "$Q_USE_NAMESPACE" == "False" ]; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500267 # If namespaces are disabled, DevStack will create a single
Maru Newby31c94ab2012-12-19 03:59:20 +0000268 # public router that tempest should be configured to use.
Mark McClainb05c8762013-07-06 23:29:39 -0400269 public_router_id=$(neutron router-list | awk "/ $Q_ROUTER_NAME / \
Sean Dague101b4242013-10-22 08:47:11 -0400270 { print \$2 }")
Maru Newby31c94ab2012-12-19 03:59:20 +0000271 fi
Maru Newbya5c774e2012-12-10 10:40:01 +0000272 fi
273
Jamie Lennoxb17ad752015-05-29 06:04:47 +0000274 EC2_URL=$(get_endpoint_url ec2 public || true)
Andrey Pavlov40e652a2015-04-02 22:39:59 +0300275 if [[ -z $EC2_URL ]]; then
276 EC2_URL="$EC2_SERVICE_PROTOCOL://$SERVICE_HOST:8773/"
277 fi
Jamie Lennoxb17ad752015-05-29 06:04:47 +0000278 S3_URL=$(get_endpoint_url s3 public || true)
Andrey Pavlov40e652a2015-04-02 22:39:59 +0300279 if [[ -z $S3_URL ]]; then
280 S3_URL="http://$SERVICE_HOST:${S3_SERVICE_PORT:-3333}"
281 fi
282
Masayuki Igawa5a252d92014-11-21 21:55:09 +0900283 iniset $TEMPEST_CONFIG DEFAULT use_syslog $SYSLOG
Dean Troyerdc97cb72015-03-28 08:20:50 -0500284
Matthew Treinish859cc682013-07-26 15:22:44 -0400285 # Oslo
Joe Gordon23d6d502015-03-06 15:24:22 -0800286 iniset $TEMPEST_CONFIG oslo_concurrency lock_path $TEMPEST_STATE_PATH
Matthew Treinish14ccba02013-07-29 16:15:53 -0400287 mkdir -p $TEMPEST_STATE_PATH
john-griffithdc4dc7f2014-01-22 18:09:32 -0700288 iniset $TEMPEST_CONFIG DEFAULT use_stderr False
289 iniset $TEMPEST_CONFIG DEFAULT log_file tempest.log
290 iniset $TEMPEST_CONFIG DEFAULT debug True
Matthew Treinish859cc682013-07-26 15:22:44 -0400291
Attila Fazekas2aa35172012-12-05 20:03:40 +0100292 # Timeouts
john-griffithdc4dc7f2014-01-22 18:09:32 -0700293 iniset $TEMPEST_CONFIG compute build_timeout $BUILD_TIMEOUT
294 iniset $TEMPEST_CONFIG volume build_timeout $BUILD_TIMEOUT
295 iniset $TEMPEST_CONFIG boto build_timeout $BUILD_TIMEOUT
john-griffithdc4dc7f2014-01-22 18:09:32 -0700296 iniset $TEMPEST_CONFIG boto http_socket_timeout 5
Attila Fazekas2aa35172012-12-05 20:03:40 +0100297
Attila Fazekas97d3d202013-01-19 19:20:49 +0100298 # Identity
john-griffithdc4dc7f2014-01-22 18:09:32 -0700299 iniset $TEMPEST_CONFIG identity uri "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:5000/v2.0/"
Steve Martinellib74e01c2014-12-18 01:35:35 -0500300 iniset $TEMPEST_CONFIG identity uri_v3 "$KEYSTONE_SERVICE_URI_V3"
Andrea Frittolid46d9dd2014-03-05 13:38:19 +0000301 iniset $TEMPEST_CONFIG identity username $TEMPEST_USERNAME
john-griffithdc4dc7f2014-01-22 18:09:32 -0700302 iniset $TEMPEST_CONFIG identity password "$password"
Andrea Frittolid46d9dd2014-03-05 13:38:19 +0000303 iniset $TEMPEST_CONFIG identity tenant_name $TEMPEST_TENANT_NAME
john-griffithdc4dc7f2014-01-22 18:09:32 -0700304 iniset $TEMPEST_CONFIG identity alt_username $ALT_USERNAME
305 iniset $TEMPEST_CONFIG identity alt_password "$password"
306 iniset $TEMPEST_CONFIG identity alt_tenant_name $ALT_TENANT_NAME
Matthew Treinish7ced1502015-03-23 15:51:54 -0400307 if [[ "$TEMPEST_HAS_ADMIN" == "True" ]]; then
308 iniset $TEMPEST_CONFIG identity admin_username $ADMIN_USERNAME
309 iniset $TEMPEST_CONFIG identity admin_password "$password"
310 iniset $TEMPEST_CONFIG identity admin_tenant_name $ADMIN_TENANT_NAME
311 iniset $TEMPEST_CONFIG identity admin_tenant_id $ADMIN_TENANT_ID
312 iniset $TEMPEST_CONFIG identity admin_domain_name $ADMIN_DOMAIN_NAME
313 fi
Samuel de Medeiros Queiroz3fd71d62015-05-03 14:54:45 -0300314 if [ "$ENABLE_IDENTITY_V2" == "False" ]; then
315 # Only Identity v3 is available; then skip Identity API v2 tests
316 iniset $TEMPEST_CONFIG identity-feature-enabled v2_api False
317 # In addition, use v3 auth tokens for running all Tempest tests
318 iniset $TEMPEST_CONFIG identity auth_version v3
319 else
320 iniset $TEMPEST_CONFIG identity auth_version ${TEMPEST_AUTH_VERSION:-v2}
321 fi
322
Rob Crittendene1d013f2015-02-10 14:15:35 -0500323 if is_ssl_enabled_service "key" || is_service_enabled tls-proxy; then
324 iniset $TEMPEST_CONFIG identity ca_certificates_file $SSL_BUNDLE_FILE
325 fi
Attila Fazekas2aa35172012-12-05 20:03:40 +0100326
Sean Daguec3771452013-06-13 14:23:37 -0400327 # Image
Dean Troyerdc97cb72015-03-28 08:20:50 -0500328 # We want to be able to override this variable in the gate to avoid
329 # doing an external HTTP fetch for this test.
Sean Daguec3771452013-06-13 14:23:37 -0400330 if [[ ! -z "$TEMPEST_HTTP_IMAGE" ]]; then
john-griffithdc4dc7f2014-01-22 18:09:32 -0700331 iniset $TEMPEST_CONFIG image http_image $TEMPEST_HTTP_IMAGE
Sean Daguec3771452013-06-13 14:23:37 -0400332 fi
afazekas50a3edf2015-05-27 11:50:12 +0200333 iniset $TEMPEST_CONFIG image-feature-enabled deactivate_image true
Sean Daguec3771452013-06-13 14:23:37 -0400334
David Kranzf100e1c2015-06-01 10:29:59 -0400335 # Image Features
336 iniset $TEMPEST_CONFIG image-feature-enabled deactivate_image True
337
Andrea Frittoli122a16f2014-08-14 08:18:40 +0100338 # Auth
Matthew Treinish7ced1502015-03-23 15:51:54 -0400339 TEMPEST_ALLOW_TENANT_ISOLATION=${TEMPEST_ALLOW_TENANT_ISOLATION:-$TEMPEST_HAS_ADMIN}
Andrea Frittoli122a16f2014-08-14 08:18:40 +0100340 iniset $TEMPEST_CONFIG auth allow_tenant_isolation ${TEMPEST_ALLOW_TENANT_ISOLATION:-True}
Andrea Frittoli (andreaf)72f026b2015-03-25 17:24:24 -0400341 iniset $TEMPEST_CONFIG auth tempest_roles "Member"
Andrea Frittoli122a16f2014-08-14 08:18:40 +0100342
Attila Fazekas97d3d202013-01-19 19:20:49 +0100343 # Compute
john-griffithdc4dc7f2014-01-22 18:09:32 -0700344 iniset $TEMPEST_CONFIG compute ssh_user ${DEFAULT_INSTANCE_USER:-cirros} # DEPRECATED
345 iniset $TEMPEST_CONFIG compute network_for_ssh $PRIVATE_NETWORK_NAME
346 iniset $TEMPEST_CONFIG compute ip_version_for_ssh 4
347 iniset $TEMPEST_CONFIG compute ssh_timeout $BUILD_TIMEOUT
348 iniset $TEMPEST_CONFIG compute image_ref $image_uuid
349 iniset $TEMPEST_CONFIG compute image_ssh_user ${DEFAULT_INSTANCE_USER:-cirros}
350 iniset $TEMPEST_CONFIG compute image_ref_alt $image_uuid_alt
Kirill Shileev608f8842014-10-03 22:48:58 +0400351 iniset $TEMPEST_CONFIG compute image_alt_ssh_user ${ALT_INSTANCE_USER:-cirros}
john-griffithdc4dc7f2014-01-22 18:09:32 -0700352 iniset $TEMPEST_CONFIG compute flavor_ref $flavor_ref
353 iniset $TEMPEST_CONFIG compute flavor_ref_alt $flavor_ref_alt
john-griffithdc4dc7f2014-01-22 18:09:32 -0700354 iniset $TEMPEST_CONFIG compute ssh_connect_method $ssh_connect_method
Matthew Treinish4b684ae2015-05-15 12:38:09 -0400355 if [[ ! $(is_service_enabled n-cell) && ! $(is_service_enabled neutron) ]]; then
melanie wittf5b550e2015-04-10 22:20:07 +0000356 iniset $TEMPEST_CONFIG compute fixed_network_name $PRIVATE_NETWORK_NAME
357 fi
Attila Fazekas97d3d202013-01-19 19:20:49 +0100358
Sean Daguede19bf92014-03-20 16:54:58 -0400359 # Compute Features
Dean Troyerdc97cb72015-03-28 08:20:50 -0500360 # Run ``verify_tempest_config -ur`` to retrieve enabled extensions on API endpoints
Salvatore33e8ee22014-10-05 01:36:34 +0200361 # NOTE(mtreinish): This must be done after auth settings are added to the tempest config
362 local tmp_cfg_file=$(mktemp)
Joe Gordon1368b982015-02-04 15:28:18 -0800363 cd $TEMPEST_DIR
Pavlo Shchelokovskyy199c6042015-03-18 10:48:47 +0000364 tox -revenv -- verify-tempest-config -uro $tmp_cfg_file
Salvatore33e8ee22014-10-05 01:36:34 +0200365
366 local compute_api_extensions=${COMPUTE_API_EXTENSIONS:-"all"}
367 if [[ ! -z "$DISABLE_COMPUTE_API_EXTENSIONS" ]]; then
368 # Enabled extensions are either the ones explicitly specified or those available on the API endpoint
369 compute_api_extensions=${COMPUTE_API_EXTENSIONS:-$(iniget $tmp_cfg_file compute-feature-enabled api_extensions | tr -d " ")}
370 # Remove disabled extensions
371 compute_api_extensions=$(remove_disabled_extensions $compute_api_extensions $DISABLE_COMPUTE_API_EXTENSIONS)
372 fi
373
Sean Daguede19bf92014-03-20 16:54:58 -0400374 iniset $TEMPEST_CONFIG compute-feature-enabled resize True
Matthew Treinish270f93e2014-03-20 21:18:42 +0000375 iniset $TEMPEST_CONFIG compute-feature-enabled live_migration ${LIVE_MIGRATION_AVAILABLE:-False}
376 iniset $TEMPEST_CONFIG compute-feature-enabled change_password False
377 iniset $TEMPEST_CONFIG compute-feature-enabled block_migration_for_live_migration ${USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION:-False}
Salvatore33e8ee22014-10-05 01:36:34 +0200378 iniset $TEMPEST_CONFIG compute-feature-enabled api_extensions $compute_api_extensions
Matt Riedemann58065f22015-03-14 06:13:26 -0700379 # TODO(mriedem): Remove the preserve_ports flag when Juno is end of life.
380 iniset $TEMPEST_CONFIG compute-feature-enabled preserve_ports True
Matthew Gilliard1b5a4982015-04-10 08:42:22 +0100381 # TODO(gilliard): Remove the live_migrate_paused_instances flag when Juno is end of life.
382 iniset $TEMPEST_CONFIG compute-feature-enabled live_migrate_paused_instances True
Matt Riedemanne57a3322015-06-20 14:48:00 -0700383 iniset $TEMPEST_CONFIG compute-feature-enabled attach_encrypted_volume ${ATTACH_ENCRYPTED_VOLUME_AVAILABLE:-True}
Matt Riedemann89ee5852015-07-09 13:25:04 -0700384 # TODO(mriedem): Remove this when kilo-eol happens since the
385 # neutron.allow_duplicate_networks option was removed from nova in Liberty
386 # and is now the default behavior.
387 iniset $TEMPEST_CONFIG compute-feature-enabled allow_duplicate_networks ${NOVA_ALLOW_DUPLICATE_NETWORKS:-True}
Sean Daguede19bf92014-03-20 16:54:58 -0400388
armando-migliaccio71ef61a2014-02-19 22:19:24 -0800389 # Network
john-griffithdc4dc7f2014-01-22 18:09:32 -0700390 iniset $TEMPEST_CONFIG network api_version 2.0
391 iniset $TEMPEST_CONFIG network tenant_networks_reachable "$tenant_networks_reachable"
392 iniset $TEMPEST_CONFIG network public_network_id "$public_network_id"
393 iniset $TEMPEST_CONFIG network public_router_id "$public_router_id"
394 iniset $TEMPEST_CONFIG network default_network "$FIXED_RANGE"
Matthew Treinishccf60f72014-03-03 22:48:31 -0500395 iniset $TEMPEST_CONFIG network-feature-enabled ipv6 "$IPV6_ENABLED"
Sean M. Collinsbb2908b2014-05-15 10:24:31 -0400396 iniset $TEMPEST_CONFIG network-feature-enabled ipv6_subnet_attributes "$IPV6_SUBNET_ATTRIBUTES_ENABLED"
Salvatore33e8ee22014-10-05 01:36:34 +0200397
398 local network_api_extensions=${NETWORK_API_EXTENSIONS:-"all"}
399 if [[ ! -z "$DISABLE_NETWORK_API_EXTENSIONS" ]]; then
400 # Enabled extensions are either the ones explicitly specified or those available on the API endpoint
401 network_api_extensions=${NETWORK_API_EXTENSIONS:-$(iniget $tmp_cfg_file network-feature-enabled api_extensions | tr -d " ")}
402 # Remove disabled extensions
403 network_api_extensions=$(remove_disabled_extensions $network_api_extensions $DISABLE_NETWORK_API_EXTENSIONS)
404 fi
405 iniset $TEMPEST_CONFIG network-feature-enabled api_extensions $network_api_extensions
Attila Fazekas2aa35172012-12-05 20:03:40 +0100406
Giulio Fidente97e1bd02013-06-04 05:33:52 +0200407 # boto
Andrey Pavlov40e652a2015-04-02 22:39:59 +0300408 iniset $TEMPEST_CONFIG boto ec2_url "$EC2_URL"
409 iniset $TEMPEST_CONFIG boto s3_url "$S3_URL"
john-griffithdc4dc7f2014-01-22 18:09:32 -0700410 iniset $TEMPEST_CONFIG boto s3_materials_path "$BOTO_MATERIALS_PATH"
Adalberto Medeiros53971532014-07-10 16:55:49 -0300411 iniset $TEMPEST_CONFIG boto ari_manifest cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-initrd.manifest.xml
412 iniset $TEMPEST_CONFIG boto ami_manifest cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-blank.img.manifest.xml
413 iniset $TEMPEST_CONFIG boto aki_manifest cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-vmlinuz.manifest.xml
john-griffithdc4dc7f2014-01-22 18:09:32 -0700414 iniset $TEMPEST_CONFIG boto instance_type "$boto_instance_type"
415 iniset $TEMPEST_CONFIG boto http_socket_timeout 30
416 iniset $TEMPEST_CONFIG boto ssh_user ${DEFAULT_INSTANCE_USER:-cirros}
Attila Fazekas2aa35172012-12-05 20:03:40 +0100417
Sean Dague669c4fc2014-04-03 11:28:01 -0400418 # Orchestration Tests
419 if is_service_enabled heat; then
420 if [[ ! -z "$HEAT_CFN_IMAGE_URL" ]]; then
Alessandro Pilottif3e75bf2014-12-15 20:02:08 +0200421 iniset $TEMPEST_CONFIG orchestration image_ref $(basename "${HEAT_CFN_IMAGE_URL%.*}")
Sean Dague669c4fc2014-04-03 11:28:01 -0400422 fi
Attila Fazekas51557a52014-06-13 16:09:37 +0200423 # build a specialized heat flavor
Sean Dague669c4fc2014-04-03 11:28:01 -0400424 available_flavors=$(nova flavor-list)
425 if [[ ! ( $available_flavors =~ 'm1.heat' ) ]]; then
Attila Fazekas51557a52014-06-13 16:09:37 +0200426 nova flavor-create m1.heat 451 512 0 1
Sean Dague669c4fc2014-04-03 11:28:01 -0400427 fi
428 iniset $TEMPEST_CONFIG orchestration instance_type "m1.heat"
429 iniset $TEMPEST_CONFIG orchestration build_timeout 900
Matthew Treinish886cbb22015-03-18 22:03:01 -0400430 iniset $TEMPEST_CONFIG orchestration stack_owner_role "_member_"
Steve Bakerd5cccad2013-07-19 10:34:24 +1200431 fi
432
William Marshall24d866e2013-07-02 12:26:31 -0500433 # Scenario
Matthew Treinishd2cb2342015-04-02 11:08:24 -0400434 SCENARIO_IMAGE_DIR=${SCENARIO_IMAGE_DIR:-$FILES/images/cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-uec}
435 iniset $TEMPEST_CONFIG scenario img_dir $SCENARIO_IMAGE_DIR
Adalberto Medeiros53971532014-07-10 16:55:49 -0300436 iniset $TEMPEST_CONFIG scenario ami_img_file "cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-blank.img"
437 iniset $TEMPEST_CONFIG scenario ari_img_file "cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-initrd"
438 iniset $TEMPEST_CONFIG scenario aki_img_file "cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-vmlinuz"
Matthew Treinishd2cb2342015-04-02 11:08:24 -0400439 iniset $TEMPEST_CONFIG scenario img_file "cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-disk.img"
William Marshall24d866e2013-07-02 12:26:31 -0500440
Joe Gordonbb8c6d42013-08-26 17:00:05 -0400441 # Large Ops Number
john-griffithdc4dc7f2014-01-22 18:09:32 -0700442 iniset $TEMPEST_CONFIG scenario large_ops_number ${TEMPEST_LARGE_OPS_NUMBER:-0}
Joe Gordonbb8c6d42013-08-26 17:00:05 -0400443
Vadim Rovachev2541d612014-05-29 18:48:10 +0400444 # Telemetry
Dean Troyerdc97cb72015-03-28 08:20:50 -0500445 # Ceilometer API optimization happened in Juno that allows to run more tests in tempest.
Vadim Rovachev2541d612014-05-29 18:48:10 +0400446 # Once Tempest retires support for icehouse this flag can be removed.
447 iniset $TEMPEST_CONFIG telemetry too_slow_to_test "False"
gordon chung71e4e6f2015-03-16 16:33:01 -0400448 iniset $TEMPEST_CONFIG telemetry-feature-enabled events "True"
Vadim Rovachev2541d612014-05-29 18:48:10 +0400449
Dean Troyerdc97cb72015-03-28 08:20:50 -0500450 # Object Store
Salvatore33e8ee22014-10-05 01:36:34 +0200451 local object_storage_api_extensions=${OBJECT_STORAGE_API_EXTENSIONS:-"all"}
452 if [[ ! -z "$DISABLE_OBJECT_STORAGE_API_EXTENSIONS" ]]; then
453 # Enabled extensions are either the ones explicitly specified or those available on the API endpoint
454 object_storage_api_extensions=${OBJECT_STORAGE_API_EXTENSIONS:-$(iniget $tmp_cfg_file object-storage-feature-enabled discoverable_apis | tr -d " ")}
455 # Remove disabled extensions
456 object_storage_api_extensions=$(remove_disabled_extensions $object_storage_api_extensions $DISABLE_STORAGE_API_EXTENSIONS)
457 fi
458 iniset $TEMPEST_CONFIG object-storage-feature-enabled discoverable_apis $object_storage_api_extensions
Salvatore Orlando3046bc62014-08-21 12:11:10 -0700459
Giulio Fidente97e1bd02013-06-04 05:33:52 +0200460 # Volume
David Kranzd1d66672015-06-11 13:09:37 -0400461 # TODO(dkranz): Remove the bootable flag when Juno is end of life.
462 iniset $TEMPEST_CONFIG volume-feature-enabled bootable True
463
Salvatore33e8ee22014-10-05 01:36:34 +0200464 local volume_api_extensions=${VOLUME_API_EXTENSIONS:-"all"}
465 if [[ ! -z "$DISABLE_VOLUME_API_EXTENSIONS" ]]; then
466 # Enabled extensions are either the ones explicitly specified or those available on the API endpoint
467 volume_api_extensions=${VOLUME_API_EXTENSIONS:-$(iniget $tmp_cfg_file volume-feature-enabled api_extensions | tr -d " ")}
468 # Remove disabled extensions
469 volume_api_extensions=$(remove_disabled_extensions $volume_api_extensions $DISABLE_VOLUME_API_EXTENSIONS)
470 fi
471 iniset $TEMPEST_CONFIG volume-feature-enabled api_extensions $volume_api_extensions
472
Giulio Fidente3d60f4d2014-02-20 16:43:49 +0100473 if ! is_service_enabled c-bak; then
474 iniset $TEMPEST_CONFIG volume-feature-enabled backup False
Giulio Fidente3632ab12013-09-10 02:51:26 +0200475 fi
Swapnil Kulkarni09fb7ba2014-10-16 06:30:28 +0000476
Dean Troyerdc97cb72015-03-28 08:20:50 -0500477 # Using ``CINDER_ENABLED_BACKENDS``
Swapnil Kulkarni09fb7ba2014-10-16 06:30:28 +0000478 if [[ -n "$CINDER_ENABLED_BACKENDS" ]] && [[ $CINDER_ENABLED_BACKENDS =~ .*,.* ]]; then
Matthew Treinishdb1c3842014-02-04 20:58:00 +0000479 iniset $TEMPEST_CONFIG volume-feature-enabled multi_backend "True"
Swapnil Kulkarni09fb7ba2014-10-16 06:30:28 +0000480 local i=1
481 local be
482 for be in ${CINDER_ENABLED_BACKENDS//,/ }; do
483 local be_name=${be##*:}
484 iniset $TEMPEST_CONFIG volume "backend${i}_name" "$be_name"
485 i=$(( i + 1 ))
486 done
john-griffithdc4dc7f2014-01-22 18:09:32 -0700487 fi
488
Eric Harney01456482014-10-14 18:53:53 -0400489 if [ $TEMPEST_VOLUME_DRIVER != "default" -o \
Patrick East1c0628f2014-10-22 16:22:47 -0700490 "$TEMPEST_VOLUME_VENDOR" != "$TEMPEST_DEFAULT_VOLUME_VENDOR" ]; then
Ed Balduf2f23d752014-07-29 14:42:27 -0600491 iniset $TEMPEST_CONFIG volume vendor_name "$TEMPEST_VOLUME_VENDOR"
Eric Harney01456482014-10-14 18:53:53 -0400492 fi
493 if [ $TEMPEST_VOLUME_DRIVER != "default" -o \
JordanP82a7d932014-12-04 14:09:16 +0100494 "$TEMPEST_STORAGE_PROTOCOL" != "$TEMPEST_DEFAULT_STORAGE_PROTOCOL" ]; then
495 iniset $TEMPEST_CONFIG volume storage_protocol "$TEMPEST_STORAGE_PROTOCOL"
Giulio Fidente97e1bd02013-06-04 05:33:52 +0200496 fi
497
Julie Pichonfea70f82013-07-29 11:22:08 +0100498 # Dashboard
john-griffithdc4dc7f2014-01-22 18:09:32 -0700499 iniset $TEMPEST_CONFIG dashboard dashboard_url "http://$SERVICE_HOST/"
500 iniset $TEMPEST_CONFIG dashboard login_url "http://$SERVICE_HOST/auth/login/"
Julie Pichonfea70f82013-07-29 11:22:08 +0100501
Dean Troyerdc97cb72015-03-28 08:20:50 -0500502 # CLI
john-griffithdc4dc7f2014-01-22 18:09:32 -0700503 iniset $TEMPEST_CONFIG cli cli_dir $NOVA_BIN_DIR
Ian Wienand7fa19022013-06-25 14:11:48 +1000504
Adam Gandelman43bd6672014-04-03 11:13:13 -0700505 # Baremetal
506 if [ "$VIRT_DRIVER" = "ironic" ] ; then
507 iniset $TEMPEST_CONFIG baremetal driver_enabled True
Jay Faulkner6c0da092015-03-26 15:19:32 -0700508 iniset $TEMPEST_CONFIG baremetal unprovision_timeout 300
Vladyslav Drok41309002015-04-29 13:36:52 +0300509 iniset $TEMPEST_CONFIG baremetal deploy_img_dir $FILES
510 iniset $TEMPEST_CONFIG baremetal node_uuid $IRONIC_NODE_UUID
Adam Gandelmanfdfe7a02014-07-24 10:06:18 -0400511 iniset $TEMPEST_CONFIG compute-feature-enabled change_password False
512 iniset $TEMPEST_CONFIG compute-feature-enabled console_output False
513 iniset $TEMPEST_CONFIG compute-feature-enabled interface_attach False
514 iniset $TEMPEST_CONFIG compute-feature-enabled live_migration False
515 iniset $TEMPEST_CONFIG compute-feature-enabled pause False
516 iniset $TEMPEST_CONFIG compute-feature-enabled rescue False
517 iniset $TEMPEST_CONFIG compute-feature-enabled resize False
518 iniset $TEMPEST_CONFIG compute-feature-enabled shelve False
519 iniset $TEMPEST_CONFIG compute-feature-enabled snapshot False
David Shrewsburycf21b712014-08-13 07:03:58 -0400520 iniset $TEMPEST_CONFIG compute-feature-enabled suspend False
Adam Gandelman43bd6672014-04-03 11:13:13 -0700521 fi
522
Nels Nelson7b47c472015-01-05 16:36:42 -0600523 # Libvirt-LXC
524 if [ "$VIRT_DRIVER" = "libvirt" ] && [ "$LIBVIRT_TYPE" = "lxc" ]; then
525 iniset $TEMPEST_CONFIG compute-feature-enabled rescue False
526 iniset $TEMPEST_CONFIG compute-feature-enabled resize False
527 iniset $TEMPEST_CONFIG compute-feature-enabled suspend False
528 fi
529
Dean Troyerdc97cb72015-03-28 08:20:50 -0500530 # ``service_available``
Dean Troyer4237f592014-01-29 16:22:11 -0600531 for service in ${TEMPEST_SERVICES//,/ }; do
Matthew Treinishb56d81d2013-07-23 17:25:39 -0400532 if is_service_enabled $service ; then
john-griffithdc4dc7f2014-01-22 18:09:32 -0700533 iniset $TEMPEST_CONFIG service_available $service "True"
Matthew Treinishb56d81d2013-07-23 17:25:39 -0400534 else
john-griffithdc4dc7f2014-01-22 18:09:32 -0700535 iniset $TEMPEST_CONFIG service_available $service "False"
Matthew Treinishb56d81d2013-07-23 17:25:39 -0400536 fi
537 done
538
Rob Crittendene1d013f2015-02-10 14:15:35 -0500539 if is_ssl_enabled_service "key" || is_service_enabled tls-proxy; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500540 # Use the ``BOTO_CONFIG`` environment variable to point to this file
Rob Crittenden90c20202014-11-17 01:16:22 -0500541 iniset $BOTO_CONF Boto ca_certificates_file $SSL_BUNDLE_FILE
542 sudo chown $STACK_USER $BOTO_CONF
543 fi
544
Attila Fazekas2aa35172012-12-05 20:03:40 +0100545 # Restore IFS
546 IFS=$ifs
Sean Dagued0931212012-10-04 16:06:44 -0400547}
548
Dean Troyer42a59c22014-03-03 14:31:29 -0600549# create_tempest_accounts() - Set up common required tempest accounts
550
551# Project User Roles
552# ------------------------------------------------------------------
553# alt_demo alt_demo Member
554
Dean Troyer42a59c22014-03-03 14:31:29 -0600555function create_tempest_accounts {
556 if is_service_enabled tempest; then
557 # Tempest has some tests that validate various authorization checks
558 # between two regular users in separate tenants
Jamie Lennoxb632c9e2015-05-28 23:36:15 +0000559 get_or_create_project alt_demo default
Jamie Lennox9d7e7762015-05-29 01:08:53 +0000560 get_or_create_user alt_demo "$ADMIN_PASSWORD" "default" "alt_demo@example.com"
Jamie Lennox9b215db2015-02-10 18:19:57 +1100561 get_or_add_user_project_role Member alt_demo alt_demo
Dean Troyer42a59c22014-03-03 14:31:29 -0600562 fi
563}
564
Dean Troyerdc97cb72015-03-28 08:20:50 -0500565# install_tempest_lib() - Collect source, prepare, and install ``tempest-lib``
Matthew Treinish34723862014-09-08 14:01:21 -0400566function install_tempest_lib {
Sean Dague91b22902014-11-18 07:13:35 -0500567 if use_library_from_git "tempest-lib"; then
568 git_clone_by_name "tempest-lib"
Sean Dague86b65dd2014-11-20 17:23:04 -0500569 setup_dev_lib "tempest-lib"
Dean Troyerdc97cb72015-03-28 08:20:50 -0500570 # NOTE(mtreinish) For testing ``tempest-lib`` from git with Tempest we need to
571 # put the git version of ``tempest-lib`` in the Tempest job's tox venv
Matthew Treinish83e166b2015-02-18 19:01:20 -0500572 export PIP_VIRTUAL_ENV=${PROJECT_VENV["tempest"]}
573 setup_dev_lib "tempest-lib"
574 unset PIP_VIRTUAL_ENV
Sean Dague5cb19062014-11-01 01:37:45 +0100575 fi
Matthew Treinish34723862014-09-08 14:01:21 -0400576}
577
Sean Dagued0931212012-10-04 16:06:44 -0400578# install_tempest() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100579function install_tempest {
Sean Dagued0931212012-10-04 16:06:44 -0400580 git_clone $TEMPEST_REPO $TEMPEST_DIR $TEMPEST_BRANCH
Clark Boylan33dc8692014-08-19 22:37:10 -0700581 pip_install tox
Matthew Treinish83e166b2015-02-18 19:01:20 -0500582 pushd $TEMPEST_DIR
583 tox --notest -efull
584 PROJECT_VENV["tempest"]=${TEMPEST_DIR}/.tox/full
585 install_tempest_lib
586 popd
Sean Dagued0931212012-10-04 16:06:44 -0400587}
588
Dean Troyerdc97cb72015-03-28 08:20:50 -0500589# init_tempest() - Initialize EC2 images
Ian Wienandaee18c72014-02-21 15:35:08 +1100590function init_tempest {
Adalberto Medeiros53971532014-07-10 16:55:49 -0300591 local base_image_name=cirros-${CIRROS_VERSION}-${CIRROS_ARCH}
592 # /opt/stack/devstack/files/images/cirros-${CIRROS_VERSION}-${CIRROS_ARCH}-uec
Attila Fazekas3c529222013-01-21 06:50:33 +0100593 local image_dir="$FILES/images/${base_image_name}-uec"
Attila Fazekas1d29d8b2013-01-07 15:51:32 +0100594 local kernel="$image_dir/${base_image_name}-vmlinuz"
595 local ramdisk="$image_dir/${base_image_name}-initrd"
596 local disk_image="$image_dir/${base_image_name}-blank.img"
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200597 if is_service_enabled nova; then
Dean Troyerdc97cb72015-03-28 08:20:50 -0500598 # If the CirrOS uec downloaded and the system is UEC capable
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200599 if [ -f "$kernel" -a -f "$ramdisk" -a -f "$disk_image" -a "$VIRT_DRIVER" != "openvz" \
600 -a \( "$LIBVIRT_TYPE" != "lxc" -o "$VIRT_DRIVER" != "libvirt" \) ]; then
601 echo "Prepare aki/ari/ami Images"
602 mkdir -p $BOTO_MATERIALS_PATH
603 ( #new namespace
Andrey Pavlov7cc39072015-03-30 20:49:22 +0300604 # euca2ools should be installed to call euca-* commands
605 is_package_installed euca2ools || install_package euca2ools
Attila Fazekasc411fcf2014-08-19 16:48:14 +0200606 # tenant:demo ; user: demo
607 source $TOP_DIR/accrc/demo/demo
608 euca-bundle-image -r ${CIRROS_ARCH} -i "$kernel" --kernel true -d "$BOTO_MATERIALS_PATH"
609 euca-bundle-image -r ${CIRROS_ARCH} -i "$ramdisk" --ramdisk true -d "$BOTO_MATERIALS_PATH"
610 euca-bundle-image -r ${CIRROS_ARCH} -i "$disk_image" -d "$BOTO_MATERIALS_PATH"
611 ) 2>&1 </dev/null | cat
612 else
613 echo "Boto materials are not prepared"
614 fi
Attila Fazekas1d29d8b2013-01-07 15:51:32 +0100615 fi
616}
617
Sean Dagued0931212012-10-04 16:06:44 -0400618# Restore xtrace
619$XTRACE
Sean Dague584d90e2013-03-29 14:34:53 -0400620
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100621# Tell emacs to use shell-script-mode
622## Local variables:
623## mode: shell-script
624## End: