128 lines
3.9 KiB
Bash
Executable file
128 lines
3.9 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Config
|
|
FRONTEND_PORT="${FRONTEND_PORT:-4180}"
|
|
FRONTEND_HOST="${FRONTEND_HOST:-127.0.0.1}"
|
|
BACKEND_PORT="${BACKEND_PORT:-3310}"
|
|
BACKEND_HOST="${BACKEND_HOST:-127.0.0.1}"
|
|
BACKEND_URL="${BACKEND_URL:-http://${BACKEND_HOST}:${BACKEND_PORT}}"
|
|
BACKEND_HEALTH="${BACKEND_URL}/api/health"
|
|
APP_URL_DEFAULT="http://${FRONTEND_HOST}:${FRONTEND_PORT}"
|
|
FRONTEND_URL="${APP_URL:-$APP_URL_DEFAULT}"
|
|
FRONTEND_ORIGIN="${FRONTEND_ORIGIN:-$FRONTEND_URL}"
|
|
|
|
# Colors
|
|
red() { printf "\033[31m%s\033[0m\n" "$*"; }
|
|
green() { printf "\033[32m%s\033[0m\n" "$*"; }
|
|
yellow() { printf "\033[33m%s\033[0m\n" "$*"; }
|
|
|
|
# Ensure dependencies in root
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
|
|
E2E_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
ROOT_DIR="$(cd "$E2E_DIR/.." && pwd)"
|
|
|
|
cd "$ROOT_DIR"
|
|
|
|
# Check if Playwright is installed
|
|
if ! npx playwright --version >/dev/null 2>&1; then
|
|
yellow "Installing Playwright browsers..."
|
|
npx playwright install --with-deps
|
|
fi
|
|
|
|
# Start backend and frontend
|
|
cd "$ROOT_DIR"
|
|
|
|
# Remove old test database to start fresh
|
|
yellow "Removing old test database..."
|
|
rm -f backend/db/test.sqlite3
|
|
|
|
yellow "Starting backend with test database..."
|
|
(cd backend && \
|
|
NODE_ENV=test \
|
|
PORT=$BACKEND_PORT \
|
|
HOST=$BACKEND_HOST \
|
|
DB_FILE=db/test.sqlite3 \
|
|
TUDUDI_USER_EMAIL="${E2E_EMAIL:-test@tududi.com}" \
|
|
TUDUDI_USER_PASSWORD="${E2E_PASSWORD:-password123}" \
|
|
SEQUELIZE_LOGGING=false \
|
|
./cmd/start.sh) >/dev/null 2>&1 &
|
|
BACKEND_PID=$!
|
|
|
|
cleanup() {
|
|
yellow "Stopping background processes..."
|
|
# Attempt graceful group termination
|
|
if [ -n "${FRONTEND_PID:-}" ]; then kill -TERM -$FRONTEND_PID >/dev/null 2>&1 || true; fi
|
|
if [ -n "${BACKEND_PID:-}" ]; then kill -TERM -$BACKEND_PID >/dev/null 2>&1 || true; fi
|
|
|
|
# Kill by known ports (best-effort)
|
|
if command -v lsof >/dev/null 2>&1; then
|
|
FRONTEND_PIDS_KILL=$(lsof -ti tcp:${FRONTEND_PORT} || true)
|
|
BACKEND_PIDS_KILL=$(lsof -ti tcp:${BACKEND_PORT} || true)
|
|
if [ -n "${FRONTEND_PIDS_KILL:-}" ]; then kill ${FRONTEND_PIDS_KILL} >/dev/null 2>&1 || true; fi
|
|
if [ -n "${BACKEND_PIDS_KILL:-}" ]; then kill ${BACKEND_PIDS_KILL} >/dev/null 2>&1 || true; fi
|
|
fi
|
|
|
|
# Direct child processes as fallback
|
|
if [ -n "${FRONTEND_PID:-}" ] && ps -p $FRONTEND_PID >/dev/null 2>&1; then kill $FRONTEND_PID || true; fi
|
|
if [ -n "${BACKEND_PID:-}" ] && ps -p $BACKEND_PID >/dev/null 2>&1; then kill $BACKEND_PID || true; fi
|
|
|
|
# Remove test database
|
|
yellow "Cleaning up test database..."
|
|
rm -f "$ROOT_DIR/backend/db/test.sqlite3"
|
|
}
|
|
trap cleanup EXIT INT TERM
|
|
|
|
# Wait for backend health
|
|
yellow "Waiting for backend to be ready at ${BACKEND_HEALTH}..."
|
|
for i in {1..60}; do
|
|
if curl -sf "$BACKEND_HEALTH" >/dev/null; then
|
|
green "Backend is ready"
|
|
break
|
|
fi
|
|
sleep 1
|
|
if [ "$i" -eq 60 ]; then
|
|
red "Backend did not become ready in time"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
yellow "Starting frontend dev server..."
|
|
BACKEND_URL="$BACKEND_URL" \
|
|
FRONTEND_PORT="$FRONTEND_PORT" \
|
|
FRONTEND_HOST="$FRONTEND_HOST" \
|
|
FRONTEND_ORIGIN="$FRONTEND_ORIGIN" \
|
|
npm run frontend:dev >/dev/null 2>&1 &
|
|
FRONTEND_PID=$!
|
|
|
|
# Wait for frontend
|
|
yellow "Waiting for frontend at ${FRONTEND_URL}..."
|
|
for i in {1..60}; do
|
|
if curl -sf "$FRONTEND_URL" >/dev/null; then
|
|
green "Frontend is ready"
|
|
break
|
|
fi
|
|
sleep 1
|
|
if [ "$i" -eq 60 ]; then
|
|
red "Frontend did not become ready in time"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
# Run tests (specify config file since we're running from root)
|
|
cd "$ROOT_DIR"
|
|
|
|
yellow "Running Playwright tests..."
|
|
APP_URL="$FRONTEND_URL" \
|
|
E2E_EMAIL="${E2E_EMAIL:-test@tududi.com}" \
|
|
E2E_PASSWORD="${E2E_PASSWORD:-password123}" \
|
|
bash -c '
|
|
if [ "${E2E_MODE:-}" = "ui" ]; then
|
|
npx playwright test --ui --config=e2e/playwright.config.ts
|
|
elif [ "${E2E_MODE:-}" = "headed" ]; then
|
|
# Respect E2E_SLOWMO and run only Chromium sequentially
|
|
npx playwright test --headed --project=Chromium --workers=1 --config=e2e/playwright.config.ts
|
|
else
|
|
npx playwright test --config=e2e/playwright.config.ts
|
|
fi
|
|
'
|