Some checks failed
CICD / Build CICD Image Failure Postmortem (push) Blocked by required conditions
CICD / Backend Tests (push) Blocked by required conditions
CICD / Pre-commit Checks (push) Blocked by required conditions
CICD / Frontend Tests (push) Blocked by required conditions
CICD / Backend Doctests (push) Blocked by required conditions
CICD / Frontend Dependency Audit (push) Blocked by required conditions
CICD / Backend Dependency Audit (push) Blocked by required conditions
CICD / CICD Tests Complete (push) Blocked by required conditions
CICD / Build Backend Base Image (push) Blocked by required conditions
CICD / Build Frontend Base Image (push) Blocked by required conditions
CICD / Build Integration Tester Image (push) Blocked by required conditions
CICD / Build E2E Tester Image (push) Blocked by required conditions
CICD / Build Backend Main Image (push) Blocked by required conditions
CICD / Build Frontend Main Image (push) Blocked by required conditions
CICD / Production Images Complete (push) Blocked by required conditions
CICD / Production Image Failures Postmortem (push) Blocked by required conditions
CICD / Source Lanes Failure Postmortem (push) Blocked by required conditions
CICD / Build and Publish CICD Base Image (push) Successful in 25s
CICD / Runtime Black-Box Integration Tests (push) Blocked by required conditions
CICD / Integration Tests Failure Postmortem (push) Blocked by required conditions
CICD / End-to-End Tests (push) Blocked by required conditions
CICD / E2E Tests Failure Postmortem (push) Blocked by required conditions
CICD / Build and Publish CICD Base Image (pull_request) Successful in 1m19s
CICD / Build and Push CICD Image (push) Has been cancelled
CICD / Build and Push CICD Image (pull_request) Successful in 1h20m2s
CICD / Build CICD Image Failure Postmortem (pull_request) Has been skipped
CICD / Backend Tests (pull_request) Failing after 2m2s
CICD / Backend Doctests (pull_request) Successful in 47s
CICD / Frontend Dependency Audit (pull_request) Failing after 2m27s
CICD / Backend Dependency Audit (pull_request) Failing after 2m3s
CICD / Pre-commit Checks (pull_request) Failing after 10m36s
CICD / Frontend Tests (pull_request) Failing after 15m32s
CICD / CICD Tests Complete (pull_request) Failing after 34s
CICD / Build Backend Base Image (pull_request) Has been skipped
CICD / Build Frontend Base Image (pull_request) Has been skipped
CICD / Build Integration Tester Image (pull_request) Has been skipped
CICD / Build E2E Tester Image (pull_request) Has been skipped
CICD / Build Backend Main Image (pull_request) Has been skipped
CICD / Build Frontend Main Image (pull_request) Has been skipped
CICD / Source Lanes Failure Postmortem (pull_request) Successful in 31s
CICD / Production Images Complete (pull_request) Failing after 34s
CICD / Production Image Failures Postmortem (pull_request) Has been skipped
CICD / Runtime Black-Box Integration Tests (pull_request) Has been skipped
CICD / End-to-End Tests (pull_request) Has been skipped
CICD / Integration Tests Failure Postmortem (pull_request) Has been skipped
CICD / E2E Tests Failure Postmortem (pull_request) Has been skipped
39 lines
1.7 KiB
Bash
39 lines
1.7 KiB
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
COMPOSE_FILE="${ROOT_DIR}/compose.ci.e2e.yml"
|
|
PROJECT_NAME="${COMPOSE_PROJECT_NAME:-plex-e2e-local}"
|
|
|
|
mkdir -p "${ROOT_DIR}/frontend/.playwright-artifacts"
|
|
|
|
export DEPLOYABLE_BACKEND_IMAGE="${DEPLOYABLE_BACKEND_IMAGE:-deployable-backend:local}"
|
|
export DEPLOYABLE_FRONTEND_IMAGE="${DEPLOYABLE_FRONTEND_IMAGE:-deployable-frontend:local}"
|
|
export DB_PASSWORD="${DB_PASSWORD:-plex_password}"
|
|
export DB_URL="${DB_URL:-postgresql://plex_user:${DB_PASSWORD}@database:5432/plex_playlist}"
|
|
export E2E_ARTIFACT_DIR="${E2E_ARTIFACT_DIR:-${ROOT_DIR}/frontend/.playwright-artifacts}"
|
|
|
|
cleanup() {
|
|
docker compose -p "${PROJECT_NAME}" -f "${COMPOSE_FILE}" down -v --remove-orphans >/dev/null 2>&1 || true
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
echo "Running E2E tests against runtime backend/frontend images via compose"
|
|
echo "DEPLOYABLE_BACKEND_IMAGE=${DEPLOYABLE_BACKEND_IMAGE}"
|
|
echo "DEPLOYABLE_FRONTEND_IMAGE=${DEPLOYABLE_FRONTEND_IMAGE}"
|
|
echo "E2E_ARTIFACT_DIR=${E2E_ARTIFACT_DIR}"
|
|
|
|
docker compose -p "${PROJECT_NAME}" -f "${COMPOSE_FILE}" up -d database backend frontend
|
|
|
|
docker run --rm \
|
|
--network "${PROJECT_NAME}_default" \
|
|
-e CI=true \
|
|
-e PLAYWRIGHT_BASE_URL="http://frontend:80" \
|
|
-e PLAYWRIGHT_OUTPUT_DIR=/tmp/playwright-artifacts \
|
|
-e PLAYWRIGHT_JUNIT_OUTPUT_FILE=/tmp/playwright-artifacts/playwright-results.xml \
|
|
-v "${ROOT_DIR}/frontend:/workspace/frontend" \
|
|
-v "${E2E_ARTIFACT_DIR}:/tmp/playwright-artifacts" \
|
|
mcr.microsoft.com/playwright:v1.56.1-jammy \
|
|
bash -lc "cd /workspace/frontend && corepack enable && yarn install --immutable && yarn test:e2e --reporter=list --timeout=90000"
|