15 lines
472 B
Bash
Executable File
15 lines
472 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cloudron_app_origin=${CLOUDRON_APP_ORIGIN:-http://localhost}
|
|
|
|
http_code=$(curl --silent --show-error --output /tmp/smoke.log --write-out "%{http_code}" "${cloudron_app_origin}/")
|
|
|
|
if [[ "${http_code}" != "200" ]]; then
|
|
>&2 echo "Smoke test failed for Database Gateway: expected HTTP 200 from ${cloudron_app_origin}/, got ${http_code}"
|
|
>&2 cat /tmp/smoke.log
|
|
exit 1
|
|
fi
|
|
|
|
echo "Smoke test placeholder passed for Database Gateway"
|