mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
509 B
34 lines
509 B
7 months ago
|
#!/usr/bin/env bats
|
||
|
|
||
7 months ago
|
NOCO_HOME="./nocodb"
|
||
7 months ago
|
export NOCO_HOME
|
||
|
|
||
7 months ago
|
|
||
7 months ago
|
|
||
|
setup() {
|
||
7 months ago
|
cd "${WORKING_DIR}/configure" || exit 1
|
||
7 months ago
|
./setup.sh "setup"
|
||
|
}
|
||
|
|
||
|
teardown() {
|
||
7 months ago
|
if [ -n "$SKIP_TEARDOWN" ]; then
|
||
|
return
|
||
|
fi
|
||
|
|
||
|
cd "${WORKING_DIR}/install" || exit 1
|
||
|
./setup.sh
|
||
7 months ago
|
}
|
||
|
|
||
|
@test "Check NocoDB is scaled to 3 instances" {
|
||
7 months ago
|
nproc() {
|
||
|
echo 4
|
||
|
}
|
||
|
|
||
7 months ago
|
../expects/configure/scale.sh
|
||
|
|
||
|
cd "${NOCO_HOME}" || exit 1
|
||
|
|
||
7 months ago
|
result=$(docker compose ps | grep -c "nocodb/nocodb")
|
||
7 months ago
|
[ "${result}" -eq 3 ]
|
||
|
}
|