view schema/run_tests.sh @ 209:9585982180ab

Remove obsolete TODO comment Users can write in this table only through user management functions which ensure consistency.
author Tom Gottfried <tom@intevation.de>
date Mon, 23 Jul 2018 16:14:36 +0200
parents 88d21c29cf04
children cfde876fbaf9
line wrap: on
line source

#!/bin/sh -e

dropdb --if-exists gemma_test
createdb gemma_test
psql -qv ON_ERROR_STOP= -c 'CREATE EXTENSION pgtap' -d gemma_test

psql -qv ON_ERROR_STOP= -d gemma_test \
    -f gemma.sql \
    -f auth.sql \
    -f manage_users.sql

# Add test data, run tests and ROLLBACK to prevent test roles to stay
# in cluster, which would prevent tests from being repeatable
psql -qXv ON_ERROR_STOP= -v AUTOCOMMIT=off -d gemma_test \
    -f tap_tests_data.sql \
    -c 'SELECT plan(23)' \
    -f auth_tests.sql \
    -f manage_users_tests.sql \
    -c 'SELECT * FROM finish()' \
    -c 'ROLLBACK'