mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 19:36:51 +00:00
update : refactor auto-upstall and installation methods
This commit is contained in:
32
docker-compose/1_Auto_Upstall/tests/install/redis.bats
Executable file
32
docker-compose/1_Auto_Upstall/tests/install/redis.bats
Executable file
@@ -0,0 +1,32 @@
|
||||
#!/usr/bin/env bats
|
||||
|
||||
NOCO_HOME="./nocodb"
|
||||
export NOCO_HOME
|
||||
|
||||
|
||||
|
||||
setup() {
|
||||
cd "${WORKING_DIR}/install" || exit 1
|
||||
./setup.sh
|
||||
}
|
||||
|
||||
teardown() {
|
||||
if [ -n "$SKIP_TEARDOWN" ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
cd "${WORKING_DIR}/install" || exit 1
|
||||
./setup.sh
|
||||
}
|
||||
|
||||
@test "Check Redis is enabled when specified" {
|
||||
../expects/install/redis.sh
|
||||
|
||||
cd "${NOCO_HOME}"
|
||||
|
||||
# Check Docker Compose file to verify Redis configuration
|
||||
grep -q 'redis' docker-compose.yml
|
||||
|
||||
# Verify Redis container is running
|
||||
docker compose ps | grep -q 'redis'
|
||||
}
|
||||
Reference in New Issue
Block a user