Standalone per-card browser model/security/view modules for HUX-01..10 plus node+pytest suites that read the hux.v1 contract schemas directly. Reconciled drift found on integration: the activity model now accepts all 32 hux.event.v1 kinds (delegation.*, memory.suppressed, memory.retrieval_removed, budget.exhausted, side_effect.*), the autonomy model carries the external_side_effect capability, and the foundation boundary test now asserts the shipped static HUX surface exists on disk and that images never bake activated HUX_FLAGS. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BvMSXH8VH2tMWXanb8SJdf
100 lines
4.0 KiB
Python
100 lines
4.0 KiB
Python
"""Executable and static quality gates for the isolated HUX-03 frontend."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import subprocess
|
|
from pathlib import Path
|
|
|
|
|
|
ROOT = Path(__file__).resolve().parents[2]
|
|
ORGANIZATION = ROOT / "dockerfiles" / "hermes-webui-hux" / "organization"
|
|
|
|
|
|
def test_hux_organization_node_suite_and_line_branch_coverage():
|
|
result = subprocess.run(
|
|
[
|
|
"node",
|
|
"--test",
|
|
"--experimental-strip-types",
|
|
"--experimental-test-coverage",
|
|
"--test-coverage-lines=95",
|
|
"--test-coverage-branches=95",
|
|
"--test-coverage-functions=95",
|
|
"--test-coverage-include=dockerfiles/hermes-webui-hux/organization/client.ts",
|
|
"--test-coverage-include=dockerfiles/hermes-webui-hux/organization/model.ts",
|
|
"--test-coverage-include=dockerfiles/hermes-webui-hux/organization/security.ts",
|
|
"testing/tests/test_hermes_hux_ui_organization.mjs",
|
|
],
|
|
cwd=ROOT,
|
|
check=False,
|
|
capture_output=True,
|
|
text=True,
|
|
timeout=30,
|
|
)
|
|
assert result.returncode == 0, result.stdout + result.stderr
|
|
|
|
|
|
def test_hux_organization_component_is_flagged_accessible_and_scope_safe():
|
|
component = (ORGANIZATION / "OrganizationWorkspace.tsx").read_text(encoding="utf-8")
|
|
model = (ORGANIZATION / "model.ts").read_text(encoding="utf-8")
|
|
client = (ORGANIZATION / "client.ts").read_text(encoding="utf-8")
|
|
contracts = (ORGANIZATION / "contracts.ts").read_text(encoding="utf-8")
|
|
styles = (ORGANIZATION / "styles.css").read_text(encoding="utf-8")
|
|
assert "if (!enabled) return null" in component
|
|
assert "projectsEnabled(props.flags)" in component
|
|
assert "FOUNDATION_FLAG" in model and "PROJECTS_FLAG" in model
|
|
assert 'role="search"' in component
|
|
assert 'role="status"' in component and 'aria-live="polite"' in component
|
|
assert 'aria-label="Project folders"' in component
|
|
assert 'aria-label="Conversations"' in component
|
|
assert 'aria-labelledby="hux-org-lineage-title"' in component
|
|
assert 'aria-labelledby="hux-org-attachments-title"' in component
|
|
assert "Edit tags" in component and 'role="alert"' in component
|
|
assert "encodeURIComponent(conversation.id)" in component
|
|
assert "dangerouslySetInnerHTML" not in component
|
|
assert all(token not in client for token in ("localStorage", "sessionStorage", "indexedDB", "document.cookie"))
|
|
assert 'credentials: "same-origin"' in client and 'cache: "no-store"' in client
|
|
assert "expected_updated_at" in client and "preservesConversation" in client
|
|
assert "tenant_ref" in contracts and "MUST NOT be accepted" in contracts
|
|
assert ".hux-organization" in styles
|
|
assert "body" not in styles and ":root" not in styles
|
|
assert "prefers-reduced-motion" in styles
|
|
|
|
|
|
def test_hux_organization_sources_respect_size_and_scope_boundaries():
|
|
sources = sorted(ORGANIZATION.glob("*"))
|
|
assert {path.name for path in sources} == {
|
|
"OrganizationWorkspace.tsx",
|
|
"client.ts",
|
|
"contracts.ts",
|
|
"index.ts",
|
|
"model.ts",
|
|
"security.ts",
|
|
"styles.css",
|
|
"types.ts",
|
|
}
|
|
for path in sources:
|
|
assert len(path.read_text(encoding="utf-8").splitlines()) <= 500
|
|
assert "dockerfiles/hermes-webui-hux/organization" not in (
|
|
ROOT / "dockerfiles" / "Dockerfile.hermes-agent"
|
|
).read_text(encoding="utf-8")
|
|
|
|
|
|
def test_hux_organization_declares_exact_backend_contracts():
|
|
contracts = (ORGANIZATION / "contracts.ts").read_text(encoding="utf-8")
|
|
expected = (
|
|
"GET /hux/v1/projects?cursor=&limit=",
|
|
"GET /hux/v1/projects/{prj_id}/conversations?cursor=&limit=",
|
|
"GET /hux/v1/conversations/search?q=&project_id=&tag=&pinned=&cursor=&limit=",
|
|
"PATCH /hux/v1/projects/{prj_id}",
|
|
"PATCH /hux/v1/conversations/{conv_id}",
|
|
'api_version="hux.v1"',
|
|
"next_cursor",
|
|
"expected_updated_at",
|
|
"branch",
|
|
"artifact_ids",
|
|
"409",
|
|
)
|
|
for value in expected:
|
|
assert value in contracts
|