view schema/run_tests.sh @ 714:ebe6799623cb

client: improve preparation to request profile * Add hardcoded examples for bottleneck and data properties, to complete the GeoJSON towards the server. * Simplify code.
author Bernhard Reiter <bernhard@intevation.de>
date Fri, 21 Sep 2018 13:23:32 +0200
parents ad07846b09d1
children 6590208e3ee1
line wrap: on
line source

#!/bin/sh -e

dropdb --if-exists gemma_test

./install-db.sh -d gemma_test
psql -qv ON_ERROR_STOP= -c 'CREATE EXTENSION pgtap' -d gemma_test

# Collect test roles to be dropped
# Concatenate with dummy role to prevent syntax error if there is no test role
TEST_ROLES=$(psql -qtc \
    "SELECT concat_ws(',', 'test', string_agg(rolname, ',')) FROM pg_roles
         WHERE rolname LIKE 'test%'")

# Drop test roles, add test data and run tests
psql -qXv ON_ERROR_STOP= -v -d gemma_test \
    -c 'SET client_min_messages TO WARNING' \
    -c "DROP ROLE IF EXISTS $TEST_ROLES" \
    -f tap_tests_data.sql \
    -c 'SELECT plan(45)' \
    -f isrs_tests.sql \
    -f auth_tests.sql \
    -f manage_users_tests.sql \
    -c 'SELECT * FROM finish()'