Files
Charon/.archive/legacy-tests-phase3/frontend-e2e/waf.spec.ts
GitHub Actions af7a942162 fix(e2e):end-to-end tests for Security Dashboard and WAF functionality
- Implemented mobile and tablet responsive tests for the Security Dashboard, covering layout, touch targets, and navigation.
- Added WAF blocking and monitoring tests to validate API responses under different conditions.
- Created smoke tests for the login page to ensure no console errors on load.
- Updated README with migration options for various configurations.
- Documented Phase 3 blocker remediation, including frontend coverage generation and test results.
- Temporarily skipped failing Security tests due to WebSocket mock issues, with clear documentation for future resolution.
- Enhanced integration test timeout for complex scenarios and improved error handling in TestDataManager.
2026-02-02 22:55:41 +00:00

35 lines
1.4 KiB
TypeScript

import { test, expect } from '@bgotink/playwright-coverage'
const base = process.env.CHARON_BASE_URL || 'http://localhost:8080'
// Hit an API route inside /api/v1 to ensure Cerberus middleware executes.
const targetPath = '/api/v1/system/my-ip'
test.describe('WAF blocking and monitoring', () => {
test('blocks malicious query when mode=block', async ({ request }) => {
// Use literal '<script>' to trigger naive WAF check
const res = await request.get(`${base}${targetPath}?<script>=x`)
expect([400, 401]).toContain(res.status())
// When WAF runs before auth, expect 400; if auth runs first, we still validate that the server rejects
if (res.status() === 400) {
const body = await res.json()
expect(body?.error).toMatch(/WAF: suspicious payload/i)
}
})
test('does not block when mode=monitor (returns 401 due to auth)', async ({ request }) => {
const res = await request.get(`${base}${targetPath}?safe=yes`)
// Unauthenticated → expect 401, not 400; proves WAF did not block
expect([401, 403]).toContain(res.status())
})
test('metrics endpoint exposes Prometheus counters', async ({ request }) => {
const res = await request.get(`${base}/metrics`)
expect(res.status()).toBe(200)
const text = await res.text()
expect(text).toContain('charon_waf_requests_total')
expect(text).toContain('charon_waf_blocked_total')
expect(text).toContain('charon_waf_monitored_total')
})
})