mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 03:16:44 +00:00
update : refactor auto-upstall and installation methods
This commit is contained in:
30
docker-compose/1_Auto_Upstall/tests/install/ssl.bats
Normal file
30
docker-compose/1_Auto_Upstall/tests/install/ssl.bats
Normal file
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env bats
|
||||
|
||||
|
||||
|
||||
RANDOM_NUMBER=$RANDOM
|
||||
|
||||
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 "Should create SSL certificates" {
|
||||
if [ -z "$TEST_SSL" ]
|
||||
then
|
||||
skip "Skipping SSL tests"
|
||||
fi
|
||||
|
||||
../expects/install/ssl.sh "$RANDOM_NUMBER"
|
||||
|
||||
curl -ksS --head "https://${RANDOM_NUMBER}.ssl.nocodb.dev" > /dev/null
|
||||
}
|
||||
Reference in New Issue
Block a user