mirror of
https://github.com/ipnet-mesh/meshcore-hub.git
synced 2026-03-28 17:42:56 +01:00
Replace server-side rendered Jinja2 page routes with a client-side SPA using ES modules, lit-html templating, and a custom History API router. All page rendering now happens in the browser with efficient DOM diffing. Key changes: - Add SPA router, API client, shared components, and 14 page modules - Serve single spa.html shell template with catch-all route - Remove server-side page routes (web/routes/) and legacy JS files - Add centralized OKLCH color palette in CSS custom properties - Add colored nav icons, navbar spacing, and loading spinner - Add canonical URL and SEO path exclusions to SPA router - Update charts.js to read from shared color palette - Update tests for SPA architecture (template-agnostic assertions) - Update AGENTS.md and README.md with SPA documentation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
47 lines
1.8 KiB
Python
47 lines
1.8 KiB
Python
"""Tests for the members page route (SPA)."""
|
|
|
|
import json
|
|
|
|
from fastapi.testclient import TestClient
|
|
|
|
|
|
class TestMembersPage:
|
|
"""Tests for the members page."""
|
|
|
|
def test_members_returns_200(self, client: TestClient) -> None:
|
|
"""Test that members page returns 200 status code."""
|
|
response = client.get("/members")
|
|
assert response.status_code == 200
|
|
|
|
def test_members_returns_html(self, client: TestClient) -> None:
|
|
"""Test that members page returns HTML content."""
|
|
response = client.get("/members")
|
|
assert "text/html" in response.headers["content-type"]
|
|
|
|
def test_members_contains_network_name(self, client: TestClient) -> None:
|
|
"""Test that members page contains the network name."""
|
|
response = client.get("/members")
|
|
assert "Test Network" in response.text
|
|
|
|
def test_members_contains_app_config(self, client: TestClient) -> None:
|
|
"""Test that members page contains SPA config."""
|
|
response = client.get("/members")
|
|
assert "window.__APP_CONFIG__" in response.text
|
|
|
|
def test_members_contains_spa_script(self, client: TestClient) -> None:
|
|
"""Test that members page includes SPA application script."""
|
|
response = client.get("/members")
|
|
assert "/static/js/spa/app.js" in response.text
|
|
|
|
def test_members_config_has_network_name(self, client: TestClient) -> None:
|
|
"""Test that SPA config includes network name."""
|
|
response = client.get("/members")
|
|
text = response.text
|
|
config_start = text.find("window.__APP_CONFIG__ = ") + len(
|
|
"window.__APP_CONFIG__ = "
|
|
)
|
|
config_end = text.find(";", config_start)
|
|
config = json.loads(text[config_start:config_end])
|
|
|
|
assert config["network_name"] == "Test Network"
|