test: test for configure/stop

This commit is contained in:
Rohit T P
2024-05-02 12:46:03 +00:00
parent 0e9c96ab02
commit 6610f30213
3 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#!/usr/bin/env bats
NOCO_HOME="${HOME}/.nocodb"
export NOCO_HOME
WORKING_DIR="$(pwd)"
setup() {
cd "${WORKING_DIR}" || exit 1
./setup.sh
}
teardown() {
cd "${WORKING_DIR}" || exit 1
./setup.sh
}
@test "Check Redis, WatchTower and NocoDB are down" {
../expects/configure/stop.sh
cd "${NOCO_HOME}" || exit 1
# Verify container is not running
docker compose ps | grep -q 'redis' && fail "Redis is running"
docker compose ps | grep -q 'watchtower' && fail "WatchTower is running"
docker compose ps | grep -q 'nocodb' && fail "NocoDB is running"
}