31 lines
726 B
Bash
Executable File
31 lines
726 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
POSTGRES_URL=${POSTGRES_URL:-"postgresql://postgres:postgres@localhost:5432"}
|
|
|
|
if ! command -v cargo-nextest > /dev/null 2>&1; then
|
|
echo "Command not found cargo-nextest"
|
|
echo "Try installing with cargo install cargo-nextest"
|
|
exit 1
|
|
fi
|
|
|
|
psql "$POSTGRES_URL" -f ./scripts/create_test_db.sql
|
|
|
|
if [ "$?" -ne "0" ]; then
|
|
echo "Unable to connect to database, make sure it is started"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
if [ ! -d logs ]; then
|
|
mkdir logs
|
|
fi
|
|
|
|
# ensure server is not started
|
|
curl -s -X POST localhost:7001/admin/shutdown 2>&1 > /dev/null
|
|
|
|
# start server
|
|
cargo run -- --port 7001 --postgres-url "$POSTGRES_URL" 2>&1 > logs/nuchat.log &
|
|
|
|
# run tests
|
|
cargo nextest run --color=always 2>&1 | tee logs/test-output.log
|