bb3ba13799
Now we have seperate setup test environment script for mongodb, mysql and postgresql, this patch adds debug env for mysql and postgresql backend. Change-Id: I4bff7f7443d0a5c073840b699dd15034c63b90eb
30 lines
707 B
Bash
Executable File
30 lines
707 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 pg_config
|
|
|
|
# Start PostgreSQL process for tests
|
|
PGSQL_DATA=`mktemp -d /tmp/CEILO-PGSQL-XXXXX`
|
|
PGSQL_PATH=`pg_config --bindir`
|
|
PGSQL_PORT=9823
|
|
${PGSQL_PATH}/initdb -E UTF8 ${PGSQL_DATA}
|
|
LANGUAGE=C ${PGSQL_PATH}/pg_ctl -w -D ${PGSQL_DATA} -o "-N 100 -F -k ${PGSQL_DATA} -p ${PGSQL_PORT}" start
|
|
export CEILOMETER_TEST_PGSQL_URL="postgresql:///?host=${PGSQL_DATA}&port=${PGSQL_PORT}&dbname=template1"
|
|
|
|
# Yield execution to venv command
|
|
$*
|
|
|
|
ret=$?
|
|
${PGSQL_PATH}/pg_ctl -w -D ${PGSQL_DATA} -o "-p ${PGSQL_PORT}" stop
|
|
rm -rf ${PGSQL_DATA}
|
|
exit ${ret}
|