mirror of https://github.com/nocodb/nocodb
Rohit T P
7 months ago
4 changed files with 103 additions and 0 deletions
@ -0,0 +1,19 @@
|
||||
#!/usr/bin/expect -f |
||||
|
||||
# Configure timeout for each expect command |
||||
set timeout 10 |
||||
|
||||
# Start your main script |
||||
spawn bash ../../noco.sh |
||||
|
||||
# Respond to script prompts |
||||
expect "Enter the IP address or domain name for the NocoDB instance (default: localhost):" |
||||
send "\r" |
||||
|
||||
expect "Show Advanced Options*" |
||||
send "\r" |
||||
|
||||
expect "Do you want to start the management menu*" |
||||
send "N\r" |
||||
|
||||
expect eof |
@ -0,0 +1,20 @@
|
||||
#!/usr/bin/expect -f |
||||
# shellcheck shell=bash |
||||
|
||||
# Configure timeout for each expect command |
||||
set timeout 10 |
||||
|
||||
# Start your main script |
||||
spawn bash ../../noco.sh |
||||
|
||||
# Respond to script prompts |
||||
expect "Enter the IP address or domain name for the NocoDB instance (default: localhost):" |
||||
send "192.168.1.10\r" |
||||
|
||||
expect "Show Advanced Options*" |
||||
send "\r" |
||||
|
||||
expect "Do you want to start the management menu*" |
||||
send "N\r" |
||||
|
||||
expect eof |
@ -0,0 +1,32 @@
|
||||
#!/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 up" { |
||||
../expects/install/default.sh |
||||
|
||||
cd "${NOCO_HOME}" |
||||
|
||||
# Check Docker Compose file to verify configuration |
||||
grep -q 'redis' docker-compose.yml |
||||
grep -q 'watchtower' docker-compose.yml |
||||
grep -q 'nocodb' docker-compose.yml |
||||
|
||||
# Verify container is running |
||||
docker compose ps | grep -q 'redis' |
||||
docker compose ps | grep -q 'watchtower' |
||||
docker compose ps | grep -q 'nocodb' |
||||
} |
@ -0,0 +1,32 @@
|
||||
#!/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 up with custom ip" { |
||||
../expects/install/ip.sh |
||||
|
||||
cd "${NOCO_HOME}" |
||||
|
||||
# Check Docker Compose file to verify configuration |
||||
grep -q 'redis' docker-compose.yml |
||||
grep -q 'watchtower' docker-compose.yml |
||||
grep -q 'nocodb' docker-compose.yml |
||||
|
||||
# Verify container is running |
||||
docker compose ps | grep -q 'redis' |
||||
docker compose ps | grep -q 'watchtower' |
||||
docker compose ps | grep -q 'nocodb' |
||||
} |
Loading…
Reference in new issue