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.
31 lines
488 B
31 lines
488 B
7 months ago
|
#!/usr/bin/env bats
|
||
|
|
||
7 months ago
|
|
||
7 months ago
|
|
||
|
RANDOM_NUMBER=$RANDOM
|
||
|
|
||
|
setup() {
|
||
7 months ago
|
cd "${WORKING_DIR}/install" || exit 1
|
||
7 months ago
|
./setup.sh
|
||
|
}
|
||
|
|
||
|
teardown() {
|
||
7 months ago
|
if [ -n "$SKIP_TEARDOWN" ]; then
|
||
|
return
|
||
|
fi
|
||
|
|
||
|
cd "${WORKING_DIR}/install" || exit 1
|
||
|
./setup.sh
|
||
7 months ago
|
}
|
||
|
|
||
|
@test "Should create SSL certificates" {
|
||
7 months ago
|
if [ -z "$TEST_SSL" ]
|
||
|
then
|
||
|
skip "Skipping SSL tests"
|
||
|
fi
|
||
|
|
||
7 months ago
|
../expects/install/ssl.sh "$RANDOM_NUMBER"
|
||
|
|
||
|
curl -ksS --head "https://${RANDOM_NUMBER}.ssl.nocodb.dev" > /dev/null
|
||
|
}
|