#!/usr/bin/env bash # Test the app on port 80. Run after: sudo scripts/setup-port80.sh # Usage: ./scripts/test-port80.sh set -e cd "$(dirname "$0")/.." APP_URL="${APP_URL:-http://127.0.0.1:80}" echo "Starting app on port 80 in background..." pipenv run run & PID=$! trap "kill $PID 2>/dev/null; exit" EXIT echo "Waiting for server to start..." for i in 1 2 3 4 5 6 7 8 9 10; do if curl -s -o /dev/null -w "%{http_code}" "$APP_URL/" 2>/dev/null | grep -q 200; then echo "Server is up." break fi sleep 1 done echo "Requesting $APP_URL/ ..." CODE=$(curl -s -o /dev/null -w "%{http_code}" "$APP_URL/") if [ "$CODE" = "200" ]; then echo "OK: GET / returned HTTP $CODE" curl -s "$APP_URL/" | head -5 echo "..." exit 0 else echo "FAIL: GET / returned HTTP $CODE (expected 200)" exit 1 fi