83 lines
2.7 KiB
Bash
83 lines
2.7 KiB
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
FRONTEND_URL="${1:-http://localhost:1202}"
|
|
BACKEND_HEALTH_URL="${2:-}"
|
|
API_URL="${FRONTEND_URL%/}/api/v1/auth/session"
|
|
PROJECTS_API_URL="${FRONTEND_URL%/}/api/v1/projects"
|
|
ICON_URL="${FRONTEND_URL%/}/geointel-icon.png"
|
|
|
|
if ! command -v curl >/dev/null 2>&1; then
|
|
echo "curl is required for browser runtime verification" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "== GeoIntel browser runtime verification =="
|
|
echo "Frontend: ${FRONTEND_URL}"
|
|
echo "API through frontend proxy: ${API_URL}"
|
|
echo "Protected API through frontend proxy: ${PROJECTS_API_URL}"
|
|
echo "Icon: ${ICON_URL}"
|
|
|
|
frontend_status=""
|
|
api_response=""
|
|
projects_status=""
|
|
icon_status=""
|
|
|
|
for attempt in $(seq 1 60); do
|
|
frontend_status="$(curl -fsS -o /dev/null -w "%{http_code}" "${FRONTEND_URL}" 2>/dev/null || true)"
|
|
icon_status="$(curl -fsS -o /dev/null -w "%{http_code}" "${ICON_URL}" 2>/dev/null || true)"
|
|
api_response="$(curl -fsS "${API_URL}" 2>/dev/null || true)"
|
|
projects_status="$(curl -sS -o /dev/null -w "%{http_code}" "${PROJECTS_API_URL}" 2>/dev/null || true)"
|
|
|
|
if [ "${frontend_status}" = "200" ] \
|
|
&& [ "${icon_status}" = "200" ] \
|
|
&& { [ "${projects_status}" = "200" ] || [ "${projects_status}" = "401" ]; } \
|
|
&& printf '%s' "${api_response}" | grep -q '"data"'; then
|
|
break
|
|
fi
|
|
|
|
echo "Browser runtime not ready yet (${attempt}/60): frontend=${frontend_status:-none} icon=${icon_status:-none}"
|
|
sleep 2
|
|
done
|
|
|
|
if [ "${frontend_status}" != "200" ]; then
|
|
echo "Frontend returned HTTP ${frontend_status:-none}, expected 200" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if [ "${projects_status}" != "200" ] && [ "${projects_status}" != "401" ]; then
|
|
echo "Protected API returned HTTP ${projects_status:-none}, expected 200 (auth disabled) or 401 (auth enabled)" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if [ "${icon_status}" != "200" ]; then
|
|
echo "Icon returned HTTP ${icon_status:-none}, expected 200" >&2
|
|
exit 1
|
|
fi
|
|
|
|
case "${api_response}" in
|
|
*"<!doctype html"*|*"<html"*)
|
|
echo "Frontend API proxy returned HTML instead of the backend JSON envelope." >&2
|
|
echo "Rebuild/restart the frontend container so Vite loads the /api proxy config." >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
if ! printf '%s' "${api_response}" | grep -q '"data"'; then
|
|
echo "API response does not look like the canonical GeoIntel envelope:" >&2
|
|
printf '%s\n' "${api_response}" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if [ -n "${BACKEND_HEALTH_URL}" ]; then
|
|
echo "Backend health: ${BACKEND_HEALTH_URL}"
|
|
backend_health="$(curl -fsS "${BACKEND_HEALTH_URL}")"
|
|
if ! printf '%s' "${backend_health}" | grep -q '"status":"ok"'; then
|
|
echo "Backend health response is not healthy:" >&2
|
|
printf '%s\n' "${backend_health}" >&2
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
echo "Browser runtime verification passed"
|