
This patch adds module tests.ci.osresources, which saves listing of most important cloud resources before task run, and makes comparison with another listing after task is complete. Now we can check if there is a resources leak in cleanup Change-Id: I5338c77ebd9390ec74a3f1a2028cc0b1ea1b51cf
86 lines
2.5 KiB
Bash
Executable File
86 lines
2.5 KiB
Bash
Executable File
#!/bin/bash -ex
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# This script is executed by post_test_hook function in desvstack gate.
|
|
|
|
PROJECT=`echo $ZUUL_PROJECT | cut -d \/ -f 2`
|
|
|
|
RALLY_JOB_DIR=$BASE/new/$PROJECT/rally-scenarios
|
|
if [ ! -d $RALLY_JOB_DIR ]; then
|
|
RALLY_JOB_DIR=$BASE/new/$PROJECT/rally-jobs
|
|
fi
|
|
|
|
echo $RALLY_JOB_DIR
|
|
echo $RALLY_DIR
|
|
ls $BASE/new/$PROJECT
|
|
|
|
BASE_FOR_TASK=${RALLY_JOB_DIR}/${RALLY_SCENARIO}
|
|
|
|
TASK=${BASE_FOR_TASK}.yaml
|
|
TASK_ARGS=""
|
|
if [ -f ${BASE_FOR_TASK}_args.yaml ]; then
|
|
TASK_ARGS=" --task-args-file ${BASE_FOR_TASK}_args.yaml"
|
|
fi
|
|
|
|
PLUGINS_DIR=${RALLY_JOB_DIR}/plugins
|
|
EXTRA_DIR=${RALLY_JOB_DIR}/extra
|
|
|
|
RALLY_PLUGINS_DIR=~/.rally/plugins
|
|
|
|
mkdir -p $RALLY_PLUGINS_DIR
|
|
if [ -d $PLUGINS_DIR ]; then
|
|
cp -r $PLUGINS_DIR/ $RALLY_PLUGINS_DIR
|
|
fi
|
|
|
|
if [ -d $EXTRA_DIR ]; then
|
|
mkdir -p ~/.rally/extra
|
|
cp -r $EXTRA_DIR/* ~/.rally/extra/
|
|
touch ~/.rally/extra/fake-image.img
|
|
fi
|
|
|
|
env
|
|
set -o pipefail
|
|
|
|
rally deployment use --deployment devstack
|
|
rally deployment check
|
|
rally show flavors
|
|
rally show images
|
|
rally show networks
|
|
rally show secgroups
|
|
rally show keypairs
|
|
|
|
python $BASE/new/rally/tests/ci/osresources.py\
|
|
--dump-list resources_at_start.txt
|
|
|
|
rally -v --rally-debug task start --task $TASK $TASK_ARGS
|
|
|
|
mkdir -p rally-plot/extra
|
|
python $BASE/new/rally/tests/ci/render.py ci/index.mako > rally-plot/extra/index.html
|
|
cp $TASK rally-plot/task.txt
|
|
tar -czf rally-plot/plugins.tar.gz -C $RALLY_PLUGINS_DIR .
|
|
rally task results | python -m json.tool > rally-plot/results.json
|
|
gzip -9 rally-plot/results.json
|
|
rally task detailed > rally-plot/detailed.txt
|
|
gzip -9 rally-plot/detailed.txt
|
|
rally task detailed --iterations-data > rally-plot/detailed_with_iterations.txt
|
|
gzip -9 rally-plot/detailed_with_iterations.txt
|
|
rally task report --out rally-plot/results.html
|
|
gzip -9 rally-plot/results.html
|
|
rally task sla_check | tee rally-plot/sla.txt
|
|
|
|
python $BASE/new/rally/tests/ci/osresources.py\
|
|
--compare-with-list resources_at_start.txt\
|
|
| gzip > rally-plot/resources_diff.txt.gz
|
|
cp resources_at_start.txt rally-plot/
|