Files
taxbaik/.gitea/workflows/browser-e2e.yml
T
kjh2064 700cdaed4f
TaxBaik CI/CD / build-and-deploy (push) Successful in 47s
test: fix E2E base URL for green-blue deployment and use test account
Green-Blue 배포에서 E2E 테스트가 항상 새 버전을 테스트하도록 개선:

Changes:
- E2E_BASE_URL default: http://localhost/taxbaik (Nginx 라우팅 → active 포트)
- 이전: http://localhost:5001/taxbaik (하드코드, 구 버전 테스트 위험)
- CI/E2E 워크플로우: test_admin 계정으로 변경 (실 admin 분리)
- Playwright config 주석 명확화 (Green-Blue 배포 지원)
- 로컬 테스트: Nginx 거쳐서 또는 명시적 포트 설정

Architecture:
┌─────────────────────────┐
│  E2E Test Runner        │
│  (test_admin account)   │
└────────────┬────────────┘
             │
    E2E_BASE_URL (env var)
             │
    ┌────────┴────────┐
    │                 │
 http://localhost/   http://localhost:5001/
  taxbaik (Nginx)    taxbaik (direct)
    │                 │
 ┌──▼──┐             │
 │Nginx├─────────────┘
 └──┬──┘
    │ (active port: 5001 or 5002)
    │
 ┌──▼──────────────┐
 │Active TaxBaik   │
 │(5001 or 5002)   │
 └─────────────────┘

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-28 11:32:23 +09:00

82 lines
2.8 KiB
YAML

name: TaxBaik Browser E2E
on:
workflow_run:
workflows: ["TaxBaik CI/CD"]
types:
- completed
jobs:
browser-e2e:
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- name: Cache Playwright browsers
uses: actions/cache@v4
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Install Playwright dependencies
run: |
set -e
npm ci
npx playwright install chromium --with-deps
- name: Wait for deployment
env:
DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }}
EXPECTED_VERSION: ${{ github.event.workflow_run.head_sha }}
run: |
set -e
# Extract short commit hash (first 7 characters)
SHORT_VERSION=$(echo "$EXPECTED_VERSION" | cut -c1-7)
echo "Expected short version: $SHORT_VERSION"
for i in $(seq 1 30); do
# Suppress stderr and allow failures to handle transition/down periods cleanly
VERSION_BODY="$(curl -fsS "http://${DEPLOY_HOST}/taxbaik/version.json" 2>/dev/null || true)"
BLOG_STATUS="$(curl -s -o /dev/null -w '%{http_code}' "http://${DEPLOY_HOST}/taxbaik/blog/accountant-mistakes-5" || true)"
if echo "$VERSION_BODY" | grep -q "\"version\": \"${SHORT_VERSION}\"" && [ "$BLOG_STATUS" = "200" ]; then
echo "Deployment is ready for ${SHORT_VERSION}"
exit 0
fi
echo "Waiting for deployment ${SHORT_VERSION} (attempt $i/30); blog status=${BLOG_STATUS:-down}; version=${VERSION_BODY:-unknown}"
sleep 5
done
echo "Deployment did not publish expected version ${SHORT_VERSION} in time" >&2
exit 1
- name: Browser E2E verification
env:
# Green-Blue 배포 지원: Nginx를 통해 active 포트로 라우팅
E2E_BASE_URL: http://${{ secrets.DEPLOY_HOST }}/taxbaik
# E2E 테스트는 test_admin 테스트 계정 사용 (실 admin 계정과 분리)
E2E_ADMIN_USERNAME: test_admin
E2E_ADMIN_PASSWORD: test123456
run: npm run test:e2e
- name: Browser E2E summary
if: always()
run: |
echo "Executed tests:"
echo "- admin-login"
echo "- admin-smoke"
echo "- public-smoke"
echo "- blog-seo"
echo "- contact-submit"
echo "- inquiry-detail"
echo "- admin-password-change"