#!/usr/bin/env bash set -euo pipefail cd "$(dirname "$0")/.." npm run build PORT=4399 node --env-file=.env ./dist/server/entry.mjs & SRV=$! trap 'kill $SRV' EXIT sleep 2 fail=0 for path in / /about /training /programs /programs/performance-class /programs/rehab /blog /contact /admin/login /robots.txt; do code=$(curl -s -o /dev/null -w '%{http_code}' "http://localhost:4399$path") echo "$code $path" [ "$code" = "200" ] || fail=1 done code=$(curl -s -o /dev/null -w '%{http_code}' http://localhost:4399/admin) echo "$code /admin (atteso 302)" [ "$code" = "302" ] || fail=1 # Contenuti taggati code=$(curl -s -o /dev/null -w '%{http_code}' http://localhost:4399/sitemap.xml) echo "$code /sitemap.xml" [ "$code" = "200" ] || fail=1 locs=$(curl -s http://localhost:4399/sitemap.xml | grep -c '') echo "$locs in sitemap (atteso >= 12)" [ "$locs" -ge 12 ] || fail=1 tags=$(curl -s http://localhost:4399/ | grep -c 'data-tag=') echo "$tags righe con data-tag= in home (atteso >= 1)" [ "$tags" -ge 1 ] || fail=1 badges=$(curl -s 'http://localhost:4399/?annotate=1' | grep -c 'tag-badge' || true) echo "$badges tag-badge da anonimo con ?annotate=1 (atteso 0)" [ "$badges" = "0" ] || fail=1 exit $fail