blob: 4d91d900a091845fb8a76ce3393fe627e41a4b61 [file] [log] [blame]
Sean Dagued0931212012-10-04 16:06:44 -04001# lib/tempest
Dean Troyer6d04fd72012-12-21 11:03:37 -06002# Install and configure Tempest
Sean Dagued0931212012-10-04 16:06:44 -04003
4# Dependencies:
5# ``functions`` file
Attila Fazekas2aa35172012-12-05 20:03:40 +01006# ``lib/nova`` service is runing
Sean Dagued0931212012-10-04 16:06:44 -04007# <list other global vars that are assumed to be defined>
Attila Fazekas3c529222013-01-21 06:50:33 +01008# - ``DEST``, ``FILES``
Attila Fazekas65c08462012-12-07 14:20:51 +01009# - ``ADMIN_PASSWORD``
10# - ``DEFAULT_IMAGE_NAME``
11# - ``S3_SERVICE_PORT``
12# - ``SERVICE_HOST``
13# - ``BASE_SQL_CONN`` ``lib/database`` declares
Maru Newby31c94ab2012-12-19 03:59:20 +000014# - ``PUBLIC_NETWORK_NAME``
15# - ``Q_USE_NAMESPACE``
16# - ``Q_ROUTER_NAME``
Attila Fazekas1d29d8b2013-01-07 15:51:32 +010017# - ``VIRT_DRIVER``
18# - ``LIBVIRT_TYPE``
Attila Fazekas97d3d202013-01-19 19:20:49 +010019# - ``KEYSTONE_SERVICE_PROTOCOL``, ``KEYSTONE_SERVICE_HOST`` from lib/keystone
Attila Fazekas2aa35172012-12-05 20:03:40 +010020# Optional Dependencies:
Attila Fazekas2aa35172012-12-05 20:03:40 +010021# ALT_* (similar vars exists in keystone_data.sh)
Attila Fazekas65c08462012-12-07 14:20:51 +010022# ``LIVE_MIGRATION_AVAILABLE``
23# ``USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION``
24# ``DEFAULT_INSTANCE_TYPE``
25# ``DEFAULT_INSTANCE_USER``
Sean Dagued0931212012-10-04 16:06:44 -040026# ``stack.sh`` calls the entry points in this order:
27#
Attila Fazekas2aa35172012-12-05 20:03:40 +010028# install_tempest
29# configure_tempest
Attila Fazekas1d29d8b2013-01-07 15:51:32 +010030# init_tempest
Sean Dagued0931212012-10-04 16:06:44 -040031
32# Save trace setting
33XTRACE=$(set +o | grep xtrace)
34set +o xtrace
35
Dean Troyer6d04fd72012-12-21 11:03:37 -060036
Sean Dagued0931212012-10-04 16:06:44 -040037# Defaults
38# --------
39
Sean Dagued0931212012-10-04 16:06:44 -040040# Set up default directories
41TEMPEST_DIR=$DEST/tempest
Attila Fazekas2aa35172012-12-05 20:03:40 +010042TEMPEST_CONF_DIR=$TEMPEST_DIR/etc
43TEMPEST_CONF=$TEMPEST_CONF_DIR/tempest.conf
44
Dean Troyer6d04fd72012-12-21 11:03:37 -060045NOVA_SOURCE_DIR=$DEST/nova
46
Attila Fazekas2aa35172012-12-05 20:03:40 +010047BUILD_INTERVAL=3
48BUILD_TIMEOUT=400
Sean Dagued0931212012-10-04 16:06:44 -040049
Dean Troyer6d04fd72012-12-21 11:03:37 -060050
Attila Fazekas3c529222013-01-21 06:50:33 +010051BOTO_MATERIALS_PATH="$FILES/images/s3-materials/cirros-0.3.0"
Attila Fazekas1d29d8b2013-01-07 15:51:32 +010052
Sean Dagued0931212012-10-04 16:06:44 -040053# Entry Points
54# ------------
55
Sean Dagued0931212012-10-04 16:06:44 -040056# configure_tempest() - Set config files, create data dirs, etc
57function configure_tempest() {
Attila Fazekas65c08462012-12-07 14:20:51 +010058 local image_lines
59 local images
60 local num_images
61 local image_uuid
62 local image_uuid_alt
Attila Fazekas2aa35172012-12-05 20:03:40 +010063 local errexit
Attila Fazekas65c08462012-12-07 14:20:51 +010064 local password
65 local line
66 local flavors
67 local flavors_ref
68 local flavor_lines
Maru Newbya5c774e2012-12-10 10:40:01 +000069 local public_network_id
Maru Newby31c94ab2012-12-19 03:59:20 +000070 local public_router_id
Maru Newbya5c774e2012-12-10 10:40:01 +000071 local tenant_networks_reachable
Attila Fazekas1d29d8b2013-01-07 15:51:32 +010072 local boto_instance_type="m1.tiny"
Attila Fazekas2aa35172012-12-05 20:03:40 +010073
Dean Troyer6d04fd72012-12-21 11:03:37 -060074 # TODO(afazekas):
Sean Dagued0931212012-10-04 16:06:44 -040075 # sudo python setup.py deploy
Attila Fazekas2aa35172012-12-05 20:03:40 +010076
77 # This function exits on an error so that errors don't compound and you see
78 # only the first error that occured.
79 errexit=$(set +o | grep errexit)
80 set -o errexit
81
Dean Troyer6d04fd72012-12-21 11:03:37 -060082 # Save IFS
Attila Fazekas2aa35172012-12-05 20:03:40 +010083 ifs=$IFS
84
85 # Glance should already contain images to be used in tempest
86 # testing. Here we simply look for images stored in Glance
87 # and set the appropriate variables for use in the tempest config
88 # We ignore ramdisk and kernel images, look for the default image
Attila Fazekas65c08462012-12-07 14:20:51 +010089 # ``DEFAULT_IMAGE_NAME``. If not found, we set the ``image_uuid`` to the
90 # first image returned and set ``image_uuid_alt`` to the second,
Attila Fazekas2aa35172012-12-05 20:03:40 +010091 # if there is more than one returned...
92 # ... Also ensure we only take active images, so we don't get snapshots in process
Cody A.W. Somervillec24e23b2012-12-21 02:10:45 -050093 declare -a images
94
95 while read -r IMAGE_NAME IMAGE_UUID; do
96 if [ "$IMAGE_NAME" = "$DEFAULT_IMAGE_NAME" ]; then
97 image_uuid="$IMAGE_UUID"
98 image_uuid_alt="$IMAGE_UUID"
Attila Fazekas2aa35172012-12-05 20:03:40 +010099 fi
Cody A.W. Somervillec24e23b2012-12-21 02:10:45 -0500100 images+=($IMAGE_UUID)
101 done < <(glance image-list --status=active | awk -F'|' '!/^(+--)|ID|aki|ari/ { print $3,$2 }')
102
103 case "${#images[*]}" in
104 0)
105 echo "Found no valid images to use!"
106 exit 1
107 ;;
108 1)
109 if [ -z "$image_uuid" ]; then
110 image_uuid=${images[0]}
111 image_uuid_alt=${images[0]}
112 fi
113 ;;
114 *)
115 if [ -z "$image_uuid" ]; then
116 image_uuid=${images[0]}
117 image_uuid_alt=${images[1]}
118 fi
119 ;;
120 esac
Attila Fazekas2aa35172012-12-05 20:03:40 +0100121
122 # Create tempest.conf from tempest.conf.sample
123 # copy every time, because the image UUIDS are going to change
124 cp $TEMPEST_CONF.sample $TEMPEST_CONF
125
Attila Fazekas65c08462012-12-07 14:20:51 +0100126 password=${ADMIN_PASSWORD:-secrete}
Attila Fazekas2aa35172012-12-05 20:03:40 +0100127
128 # See files/keystone_data.sh where alt_demo user
129 # and tenant are set up...
130 ALT_USERNAME=${ALT_USERNAME:-alt_demo}
131 ALT_TENANT_NAME=${ALT_TENANT_NAME:-alt_demo}
132
Attila Fazekas7bf1dd32013-01-12 17:31:26 +0100133 # If the ``DEFAULT_INSTANCE_TYPE`` not declared, use the new behavior
134 # Tempest creates instane types for himself
135 if [[ -z "$DEFAULT_INSTANCE_TYPE" ]]; then
Attila Fazekas02c0bcc2013-01-14 19:10:17 +0100136 nova flavor-create m1.nano 42 64 0 1
Attila Fazekas7bf1dd32013-01-12 17:31:26 +0100137 flavor_ref=42
Attila Fazekas1d29d8b2013-01-07 15:51:32 +0100138 boto_instance_type=m1.nano
Attila Fazekas02c0bcc2013-01-14 19:10:17 +0100139 nova flavor-create m1.micro 84 128 0 1
Attila Fazekas7bf1dd32013-01-12 17:31:26 +0100140 flavor_ref_alt=84
141 else
142 # Check Nova for existing flavors and, if set, look for the
143 # ``DEFAULT_INSTANCE_TYPE`` and use that.
Attila Fazekas1d29d8b2013-01-07 15:51:32 +0100144 boto_instance_type=$DEFAULT_INSTANCE_TYPE
Attila Fazekas7bf1dd32013-01-12 17:31:26 +0100145 flavor_lines=`nova flavor-list`
146 IFS=$'\r\n'
147 flavors=""
Dean Troyerceaa38b2012-12-12 17:09:57 -0600148 for line in $flavor_lines; do
149 f=$(echo $line | awk "/ $DEFAULT_INSTANCE_TYPE / { print \$2 }")
150 flavors="$flavors $f"
151 done
Attila Fazekas2aa35172012-12-05 20:03:40 +0100152
Attila Fazekas7bf1dd32013-01-12 17:31:26 +0100153 for line in $flavor_lines; do
154 flavors="$flavors `echo $line | grep -v "^\(|\s*ID\|+--\)" | cut -d' ' -f2`"
155 done
156
157 IFS=" "
158 flavors=($flavors)
159 num_flavors=${#flavors[*]}
160 echo "Found $num_flavors flavors"
161 if [[ $num_flavors -eq 0 ]]; then
162 echo "Found no valid flavors to use!"
163 exit 1
164 fi
165 flavor_ref=${flavors[0]}
166 flavor_ref_alt=$flavor_ref
167 if [[ $num_flavors -gt 1 ]]; then
168 flavor_ref_alt=${flavors[1]}
169 fi
Attila Fazekas2aa35172012-12-05 20:03:40 +0100170 fi
171
Maru Newbya5c774e2012-12-10 10:40:01 +0000172 if [ "$Q_USE_NAMESPACE" != "False" ]; then
173 tenant_networks_reachable=false
174 else
175 tenant_networks_reachable=true
176 fi
177
178 if is_service_enabled q-l3; then
179 public_network_id=$(quantum net-list | grep $PUBLIC_NETWORK_NAME | \
180 awk '{print $2}')
Maru Newby31c94ab2012-12-19 03:59:20 +0000181 if [ "$Q_USE_NAMESPACE" == "False" ]; then
182 # If namespaces are disabled, devstack will create a single
183 # public router that tempest should be configured to use.
184 public_router_id=$(quantum router-list | awk "/ $Q_ROUTER_NAME / \
185 { print \$2 }")
186 fi
Maru Newbya5c774e2012-12-10 10:40:01 +0000187 fi
188
Attila Fazekas2aa35172012-12-05 20:03:40 +0100189 # Timeouts
190 iniset $TEMPEST_CONF compute build_timeout $BUILD_TIMEOUT
191 iniset $TEMPEST_CONF volume build_timeout $BUILD_TIMEOUT
192 iniset $TEMPEST_CONF boto build_timeout $BUILD_TIMEOUT
193 iniset $TEMPEST_CONF compute build_interval $BUILD_INTERVAL
194 iniset $TEMPEST_CONF volume build_interval $BUILD_INTERVAL
195 iniset $TEMPEST_CONF boto build_interval $BUILD_INTERVAL
196 iniset $TEMPEST_CONF boto http_socket_timeout 5
197
Attila Fazekas97d3d202013-01-19 19:20:49 +0100198 # Identity
199 iniset $TEMPEST_CONF identity uri "$KEYSTONE_SERVICE_PROTOCOL://$KEYSTONE_SERVICE_HOST:5000/v2.0/"
200 iniset $TEMPEST_CONF identity password "$password"
201 iniset $TEMPEST_CONF identity alt_username $ALT_USERNAME
202 iniset $TEMPEST_CONF identity alt_password "$password"
203 iniset $TEMPEST_CONF identity alt_tenant_name $ALT_TENANT_NAME
204 iniset $TEMPEST_CONF identity admin_password "$password"
Attila Fazekas2aa35172012-12-05 20:03:40 +0100205
Attila Fazekas97d3d202013-01-19 19:20:49 +0100206 # Compute
207 iniset $TEMPEST_CONF compute password "$password" # DEPRECATED
208 iniset $TEMPEST_CONF compute alt_username $ALT_USERNAME # DEPRECATED
209 iniset $TEMPEST_CONF compute alt_password "$password" # DEPRECATED
210 iniset $TEMPEST_CONF compute alt_tenant_name $ALT_TENANT_NAME # DEPRECATED
Attila Fazekas2aa35172012-12-05 20:03:40 +0100211 iniset $TEMPEST_CONF compute resize_available False
212 iniset $TEMPEST_CONF compute change_password_available False
213 iniset $TEMPEST_CONF compute compute_log_level ERROR
Nachi Ueno06fac372012-12-26 14:09:43 -0800214 # Note(nati) current tempest don't create network for each tenant
215 # so reuse same tenant for now
216 if is_service_enabled quantum; then
217 TEMPEST_ALLOW_TENANT_ISOLATION=${TEMPEST_ALLOW_TENANT_ISOLATION:-False}
218 fi
219 iniset $TEMPEST_CONF compute allow_tenant_isolation ${TEMPEST_ALLOW_TENANT_ISOLATION:-True}
Attila Fazekas2aa35172012-12-05 20:03:40 +0100220 #Skip until #1074039 is fixed
221 iniset $TEMPEST_CONF compute run_ssh False
Attila Fazekas97d3d202013-01-19 19:20:49 +0100222 iniset $TEMPEST_CONF compute ssh_user ${DEFAULT_INSTANCE_USER:-cirros} # DEPRECATED
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900223 iniset $TEMPEST_CONF compute network_for_ssh $PRIVATE_NETWORK_NAME
Attila Fazekas2aa35172012-12-05 20:03:40 +0100224 iniset $TEMPEST_CONF compute ip_version_for_ssh 4
Attila Fazekas1d29d8b2013-01-07 15:51:32 +0100225 iniset $TEMPEST_CONF compute ssh_timeout $BUILD_TIMEOUT
Attila Fazekas65c08462012-12-07 14:20:51 +0100226 iniset $TEMPEST_CONF compute image_ref $image_uuid
Attila Fazekas97d3d202013-01-19 19:20:49 +0100227 iniset $TEMPEST_CONF compute image_ssh_user ${DEFAULT_INSTANCE_USER:-cirros}
Attila Fazekas65c08462012-12-07 14:20:51 +0100228 iniset $TEMPEST_CONF compute image_ref_alt $image_uuid_alt
Attila Fazekas97d3d202013-01-19 19:20:49 +0100229 iniset $TEMPEST_CONF compute image_alt_ssh_user ${DEFAULT_INSTANCE_USER:-cirros}
Attila Fazekas65c08462012-12-07 14:20:51 +0100230 iniset $TEMPEST_CONF compute flavor_ref $flavor_ref
231 iniset $TEMPEST_CONF compute flavor_ref_alt $flavor_ref_alt
Attila Fazekas2aa35172012-12-05 20:03:40 +0100232 iniset $TEMPEST_CONF compute live_migration_available ${LIVE_MIGRATION_AVAILABLE:-False}
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900233 iniset $TEMPEST_CONF compute use_block_migration_for_live_migration ${USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION:-False}
Attila Fazekas97d3d202013-01-19 19:20:49 +0100234 iniset $TEMPEST_CONF compute source_dir $NOVA_SOURCE_DIR # DEPRECATED
235 iniset $TEMPEST_CONF compute bin_dir $NOVA_BIN_DIR # DEPRECATED
236 iniset $TEMPEST_CONF compute path_to_private_key $TEMPEST_DIR/id_rsa # DEPRECATED
237 iniset $TEMPEST_CONF compute db_uri $BASE_SQL_CONN/nova # DEPRECATED
238
239 # Whitebox
240 iniset $TEMPEST_CONF whitebox source_dir $NOVA_SOURCE_DIR
241 iniset $TEMPEST_CONF whitebox bin_dir $NOVA_BIN_DIR
Attila Fazekas2aa35172012-12-05 20:03:40 +0100242 # TODO(jaypipes): Create the key file here... right now, no whitebox
243 # tests actually use a key.
Attila Fazekas97d3d202013-01-19 19:20:49 +0100244 iniset $TEMPEST_CONF whitebox path_to_private_key $TEMPEST_DIR/id_rsa
245 iniset $TEMPEST_CONF whitebox db_uri $BASE_SQL_CONN/nova
246
Attila Fazekas2aa35172012-12-05 20:03:40 +0100247
248 # image
Attila Fazekas97d3d202013-01-19 19:20:49 +0100249 iniset $TEMPEST_CONF image password "$password" # DEPRECATED
Attila Fazekas2aa35172012-12-05 20:03:40 +0100250
251 # identity-admin
Attila Fazekas97d3d202013-01-19 19:20:49 +0100252 iniset $TEMPEST_CONF "identity-admin" password "$password" # DEPRECATED
Attila Fazekas2aa35172012-12-05 20:03:40 +0100253
254 # compute admin
Attila Fazekas97d3d202013-01-19 19:20:49 +0100255 iniset $TEMPEST_CONF "compute-admin" password "$password" # DEPRECATED
Attila Fazekas2aa35172012-12-05 20:03:40 +0100256
Maru Newbya5c774e2012-12-10 10:40:01 +0000257 # network admin
Attila Fazekas97d3d202013-01-19 19:20:49 +0100258 iniset $TEMPEST_CONF "network-admin" password "$password" # DEPRECATED
Maru Newbya5c774e2012-12-10 10:40:01 +0000259
Attila Fazekas2aa35172012-12-05 20:03:40 +0100260 # network
261 iniset $TEMPEST_CONF network api_version 2.0
Attila Fazekas97d3d202013-01-19 19:20:49 +0100262 iniset $TEMPEST_CONF network password "$password" # DEPRECATED
Maru Newbya5c774e2012-12-10 10:40:01 +0000263 iniset $TEMPEST_CONF network tenant_networks_reachable "$tenant_networks_reachable"
264 iniset $TEMPEST_CONF network public_network_id "$public_network_id"
Maru Newby31c94ab2012-12-19 03:59:20 +0000265 iniset $TEMPEST_CONF network public_router_id "$public_router_id"
Attila Fazekas2aa35172012-12-05 20:03:40 +0100266
267 #boto
268 iniset $TEMPEST_CONF boto ec2_url "http://$SERVICE_HOST:8773/services/Cloud"
269 iniset $TEMPEST_CONF boto s3_url "http://$SERVICE_HOST:${S3_SERVICE_PORT:-3333}"
Attila Fazekas1d29d8b2013-01-07 15:51:32 +0100270 iniset $TEMPEST_CONF boto s3_materials_path "$BOTO_MATERIALS_PATH"
271 iniset $TEMPEST_CONF boto instance_type "$boto_instance_type"
272 iniset $TEMPEST_CONF boto http_socket_timeout 30
Attila Fazekas97d3d202013-01-19 19:20:49 +0100273 iniset $TEMPEST_CONF boto ssh_user ${DEFAULT_INSTANCE_USER:-cirros}
Attila Fazekas2aa35172012-12-05 20:03:40 +0100274
275 echo "Created tempest configuration file:"
276 cat $TEMPEST_CONF
277
278 # Restore IFS
279 IFS=$ifs
280 #Restore errexit
281 $errexit
Sean Dagued0931212012-10-04 16:06:44 -0400282}
283
Sean Dagued0931212012-10-04 16:06:44 -0400284# install_tempest() - Collect source and prepare
285function install_tempest() {
286 git_clone $TEMPEST_REPO $TEMPEST_DIR $TEMPEST_BRANCH
Jeremy Stanley9a352da2012-11-28 17:22:39 +0000287
288 # Tempest doesn't satisfy its dependencies on its own, so
289 # install them here instead.
jiajun xud75bc1f2012-12-04 08:51:35 +0800290 pip_install -r $TEMPEST_DIR/tools/pip-requires
Sean Dagued0931212012-10-04 16:06:44 -0400291}
292
Attila Fazekas1d29d8b2013-01-07 15:51:32 +0100293# init_tempest() - Initialize ec2 images
294function init_tempest() {
295 local base_image_name=cirros-0.3.0-x86_64
296 # /opt/stack/devstack/files/images/cirros-0.3.0-x86_64-uec
Attila Fazekas3c529222013-01-21 06:50:33 +0100297 local image_dir="$FILES/images/${base_image_name}-uec"
Attila Fazekas1d29d8b2013-01-07 15:51:32 +0100298 local kernel="$image_dir/${base_image_name}-vmlinuz"
299 local ramdisk="$image_dir/${base_image_name}-initrd"
300 local disk_image="$image_dir/${base_image_name}-blank.img"
301 # if the cirros uec downloaded and the system is uec capable
302 if [ -f "$kernel" -a -f "$ramdisk" -a -f "$disk_image" -a "$VIRT_DRIVER" != "openvz" \
303 -a \( "$LIBVIRT_TYPE" != "lxc" -o "$VIRT_DRIVER" != "libvirt" \) ]; then
304 echo "Prepare aki/ari/ami Images"
305 ( #new namespace
306 # tenant:demo ; user: demo
307 source $devstack_dir/accrc/demo/demo
308 euca-bundle-image -i "$kernel" --kernel true -d "$BOTO_MATERIALS_PATH"
309 euca-bundle-image -i "$ramdisk" --ramdisk true -d "$BOTO_MATERIALS_PATH"
310 euca-bundle-image -i "$disk_image" -d "$BOTO_MATERIALS_PATH"
311 ) 2>&1 </dev/null | cat
312 else
313 echo "Boto materials are not prepared"
314 fi
315}
316
Sean Dagued0931212012-10-04 16:06:44 -0400317# Restore xtrace
318$XTRACE