![Mehdi Abaakouk](/assets/img/avatar_default.png)
This adds a setup script for each tox functional target to start a rabbitmq-server, qpidd or redis daemon dedicated for the functional testing. This script is responsible to spawn a preconfigured daemon needed for the functional tests. This also changes the gate script to just install the required packages instead of setup a devstack. This also fixes the zmq config options loading in tests Closes-bug: #1442612 Change-Id: I27eb2c1d3d0ca67aa361c83e41372138e03d9bdd
70 lines
2.4 KiB
Bash
Executable File
70 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# 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 inside post_test_hook function in devstack gate.
|
|
|
|
RPC_BACKEND=$1
|
|
|
|
function generate_testr_results {
|
|
if [ -f .testrepository/0 ]; then
|
|
sudo .tox/py27-func-${RPC_BACKEND}/bin/testr last --subunit > $WORKSPACE/testrepository.subunit
|
|
sudo mv $WORKSPACE/testrepository.subunit $BASE/logs/testrepository.subunit
|
|
sudo .tox/py27-func-${RPC_BACKEND}/bin/python /usr/local/jenkins/slave_scripts/subunit2html.py $BASE/logs/testrepository.subunit $BASE/logs/testr_results.html
|
|
sudo gzip -9 $BASE/logs/testrepository.subunit
|
|
sudo gzip -9 $BASE/logs/testr_results.html
|
|
sudo chown jenkins:jenkins $BASE/logs/testrepository.subunit.gz $BASE/logs/testr_results.html.gz
|
|
sudo chmod a+r $BASE/logs/testrepository.subunit.gz $BASE/logs/testr_results.html.gz
|
|
fi
|
|
}
|
|
|
|
# Allow jenkins to retrieve reports
|
|
sudo chown -R jenkins:stack $BASE/new/oslo.messaging
|
|
|
|
set +e
|
|
|
|
# Install required packages
|
|
case $RPC_BACKEND in
|
|
zeromq)
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y redis-server python-redis
|
|
;;
|
|
qpid)
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y qpidd sasl2-bin
|
|
;;
|
|
amqp1)
|
|
# qpid-tools is needed to ensure authentification works before
|
|
# starting tests, otherwise tests will retries forever
|
|
sudo yum install -y qpid-cpp-server qpid-proton-c-devel python-qpid-proton cyrus-sasl-lib cyrus-sasl-plain
|
|
;;
|
|
rabbit)
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y rabbitmq-server
|
|
;;
|
|
esac
|
|
|
|
# Got to the oslo.messaging dir
|
|
cd $BASE/new/oslo.messaging
|
|
|
|
# Run tests
|
|
echo "Running oslo.messaging functional test suite"
|
|
# Preserve env for OS_ credentials
|
|
sudo -E -H -u jenkins tox -e py27-func-$RPC_BACKEND
|
|
EXIT_CODE=$?
|
|
set -e
|
|
|
|
# Collect and parse result
|
|
generate_testr_results
|
|
exit $EXIT_CODE
|