656da0a6c9
We test only one driver at a time, so there is no need to leverage scenarios here. Change-Id: Ieff6e52d5efe46fc7ad5fa66b3fe199b1ac8c460
28 lines
854 B
Bash
Executable File
28 lines
854 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source functions.sh
|
|
|
|
if [ "$1" = "--coverage" ]; then
|
|
COVERAGE_ARG="$1"
|
|
shift
|
|
fi
|
|
|
|
export PATH=${PATH:+$PATH:}/sbin:/usr/sbin
|
|
check_for_cmd mongod
|
|
|
|
# Start MongoDB process for tests
|
|
MONGO_DATA=`mktemp -d /tmp/CEILO-MONGODB-XXXXX`
|
|
MONGO_PORT=29000
|
|
trap "clean_exit ${MONGO_DATA}" EXIT
|
|
mkfifo ${MONGO_DATA}/out
|
|
mongod --maxConns 32 --nojournal --noprealloc --smallfiles --quiet --noauth --port ${MONGO_PORT} --dbpath "${MONGO_DATA}" --bind_ip localhost --config /dev/null &>${MONGO_DATA}/out &
|
|
# Wait for Mongo to start listening to connections
|
|
wait_for_line "waiting for connections on port ${MONGO_PORT}" ${MONGO_DATA}/out
|
|
# Read the fifo for ever otherwise mongod would block
|
|
cat ${MONGO_DATA}/out > /dev/null &
|
|
export CEILOMETER_TEST_STORAGE_URL="mongodb://localhost:${MONGO_PORT}/ceilometer"
|
|
|
|
# Yield execution to venv command
|
|
$*
|