test: test for configure/start

This commit is contained in:
Rohit T P
2024-05-02 12:24:27 +00:00
parent 635ab81d01
commit f18655e9c1
9 changed files with 73 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/bash
if [ -z "$NOCO_HOME" ]; then
NOCO_HOME="${HOME}/.nocodb"
fi
if [ -d "$NOCO_HOME" ]; then
cd "$NOCO_HOME" || exit
docker compose down
fi
cd /tmp || exit
rm -rf "$NOCO_HOME"
../noco.sh <<< $'\n\nN\n'
cd "$NOCO_HOME" || exit
docker compose down

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 up" {
../expects/configure/start.sh
cd "${NOCO_HOME}" || exit 1
# Verify container is running
docker compose ps | grep -q 'redis'
docker compose ps | grep -q 'watchtower'
docker compose ps | grep -q 'nocodb'
}

View File

@@ -0,0 +1,18 @@
#!/usr/bin/expect -f
# Configure timeout for each expect command
set timeout 10
# Start your main script
spawn bash ../../noco.sh
expect "Do you want to reinstall NocoDB*"
send "N\r"
expect "Enter your choice: "
send "1\r"
expect "Enter your choice: "
send "0\r"
expect EOF

View File

@@ -7,12 +7,12 @@ WORKING_DIR="$(pwd)"
setup() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
teardown() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
@test "Check Redis, WatchTower and NocoDB are up" {

View File

@@ -7,12 +7,12 @@ WORKING_DIR="$(pwd)"
setup() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
teardown() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
@test "Check Redis, WatchTower and NocoDB are up with custom ip" {

View File

@@ -7,12 +7,12 @@ WORKING_DIR="$(pwd)"
setup() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
teardown() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
@test "Check Redis is enabled when specified" {

View File

@@ -7,12 +7,12 @@ WORKING_DIR="$(pwd)"
setup() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
teardown() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
@test "Check if two instances of NoCoDB can be run" {

View File

@@ -7,12 +7,12 @@ WORKING_DIR="$(pwd)"
setup() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
teardown() {
cd "${WORKING_DIR}" || exit 1
../setup.sh
setup.sh
}
@test "Check WatchTower is enabled when specified" {