1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
#!/bin/bash
# /*PGR-GNU*****************************************************************
# File: tapest.sh
# Copyright (c) 2018 pgRouting developers
# Mail: project@pgrouting.org
# ------
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# ********************************************************************PGR-GNU*/
set -e
if [[ -z $1 ]]; then
echo "Usage:"
echo "taptest.sh <pgtap directory> [<postgresql options>]";
echo "Examples:"
echo "taptest.sh withPoints/undirected_equalityDD.sql -p 5432"
exit 1;
fi
DIR="$1"
shift
PGFLAGS=$*
echo "dir ${DIR}"
echo "pgflags ${PGFLAGS}"
QUIET="-v"
QUIET="-q"
PGDATABASE="___pgr___test___"
PGRVERSION="3.4.0 3.3.0 3.2.0 3.1.0 3.0.0"
for v in ${PGRVERSION}
do
pushd tools/testers/
echo "--------------------------"
echo " Running with version ${v}"
echo "--------------------------"
dropdb --if-exists "${PGFLAGS}" "${PGDATABASE}"
createdb "${PGFLAGS}" "${PGDATABASE}"
psql "$PGFLAGS" -d "$PGDATABASE" -X -q --set client_min_messages=WARNING --set ON_ERROR_STOP=1 --pset pager=off \
-c "CREATE EXTENSION IF NOT EXISTS pgtap; CREATE EXTENSION IF NOT EXISTS pgrouting WITH VERSION '${v}' CASCADE;"
psql "${PGFLAGS}" -d "$PGDATABASE" -c "SELECT * FROM pgr_full_version();"
psql "${PGFLAGS}" -d "$PGDATABASE" -X -q --set client_min_messages=WARNING --set ON_ERROR_STOP=1 --pset pager=off \
-f sampledata_pgtap.sql \
-f vrppdtw_data.sql \
-f solomon_100_rc101.data.sql \
-f innerQuery.sql \
-f innerQuery_old.sql \
-f inner_styles.sql \
-f old_inner_styles.sql \
-f no_crash_test.sql \
-f alphaShapeTester.sql \
-f binaryBreadthFirstSearch_pgtap_data.sql \
-f general_pgtap_tests.sql \
-f no_crash_general.sql \
-f dijkstra_pgtap_tests.sql \
-f tmp_net.sql \
-f flow_pgtap_tests.sql \
-f trsp_tests.sql \
-f spanningtree.sql \
-f types_check.sql \
-f via_compare.sql \
-f astar_pgtap_tests.sql \
-f tsp_pgtap_tests.sql
popd
pg_prove "$QUIET" --normalize --directives --recurse "${PGFLAGS}" -d "${PGDATABASE}" "pgtap/${DIR}"
#pg_prove "$QUIET" --normalize --directive --recurse "${PGFLAGS}" -d "${PGDATABASE}" "../../pgtap/"
#dropdb --if-exists "${PGFLAGS}" "${PGDATABASE}"
done
|