Files
hermes-webui/tests/test_issue1112_csp_google_fonts.py
nesquena-hermes bc6949219d
Some checks failed
Release & Docker / release (push) Has been cancelled
Release v0.51.317 — Release KG (Phase 3 light: align CSP enforcement with report policy, #3727) (#3786)
Phase-3-LOW backend security fix. #3727 (@rodboev, #1909): enforced CSP now honors the same connect-src as report-only (built from one shared template). Full suite 8205 passed, Codex SAFE (live-verified headers), Opus SHIP. Co-authored-by: rodboev <rodboev@users.noreply.github.com>
2026-06-07 10:52:07 -07:00

56 lines
2.2 KiB
Python

"""Tests for #1112 — CSP allows Google Fonts stylesheet and font files."""
import re
from api.helpers import _build_csp_enforced_policy
def _helpers_src() -> str:
with open("api/helpers.py") as f:
return f.read()
def _policy() -> str:
return _build_csp_enforced_policy("")
class TestCSPGoogleFonts:
"""style-src and font-src must allow fonts.googleapis.com / fonts.gstatic.com."""
def test_style_src_includes_google_fonts(self):
"""style-src must include https://fonts.googleapis.com for Google Fonts CSS."""
policy = _policy()
assert "https://fonts.googleapis.com" in policy, \
"style-src must allow fonts.googleapis.com (Google Fonts stylesheets)"
# Must be in the style-src directive, not accidentally elsewhere
style_match = re.search(r"style-src\s+([^;]+);", policy)
assert style_match, "style-src directive must exist"
assert "fonts.googleapis.com" in style_match.group(1), \
"fonts.googleapis.com must be in style-src directive"
def test_font_src_includes_fonts_gstatic(self):
"""font-src must include https://fonts.gstatic.com for Google Font files."""
policy = _policy()
assert "https://fonts.gstatic.com" in policy, \
"font-src must allow fonts.gstatic.com (Google Font WOFF2/WOFF files)"
# Must be in the font-src directive
font_match = re.search(r"font-src\s+([^;]+);", policy)
assert font_match, "font-src directive must exist"
assert "fonts.gstatic.com" in font_match.group(1), \
"fonts.gstatic.com must be in font-src directive"
def test_existing_csp_directives_preserved(self):
"""All pre-existing CSP directives must still be present after the fix."""
policy = _policy()
for directive in (
"default-src 'self'",
"script-src 'self' 'unsafe-inline'",
"style-src 'self' 'unsafe-inline'",
"img-src 'self' data:",
"font-src 'self' data:",
"connect-src 'self'",
"manifest-src 'self'",
"base-uri 'self'",
"form-action 'self'",
):
assert directive in policy, f"CSP must still contain: {directive}"