SESSION SUMMARY: - Started at 7194 tests, 80% raw / 93.4% real - Ended at 7778 tests, 84% raw / 98.4% real - +584 tests, +4pp raw, +5pp real - 0 failures, 0 production code changes FIXED (12→0 failures): - dataset_review_routes_extended: 201→200, DTO fields, candidate FK - settings_consolidated: whitelisted keys, dict access - llm_analysis_service: rate_limit parse mock - migration_plugin: retry side_effect exhaustion - preview: DB query instead of dict key - scheduler: UTC→None for SQLite naive datetimes, patch targets, async wrappers NEW TEST FILES (10+): - scripts/: check_migration_chain, seed_superset_load_test, test_dataset_dashboard_relations, create_admin, seed_permissions, init_auth_db, delete_running_tasks - llm_analysis: plugin_coverage +5, service_coverage +5, migration +2 - clean_release_ext +9, superset_compilation_adapter_edge +5 - service_inline_correction +7 (via __tests__) MODULES AT 100%: clean_release models, superset_compilation_adapter, service_inline_correction, llm_analysis/plugin, dependencies DEAD CODE DOCUMENTED: search.py (L206-215 indentation bug), llm_analysis/service (L459 HTTPS, L594 duplicate tab, L639-697 CDP-only)
131 lines
5.2 KiB
Python
131 lines
5.2 KiB
Python
# #region Test.AppModule.Spa [C:3] [TYPE Module] [SEMANTICS test,app,spa,serving,static]
|
|
# @BRIEF Tests for app.py — SPA serving, read_root, catch-all route, TestClient integration.
|
|
# @RELATION BINDS_TO -> [AppModule]
|
|
# @TEST_EDGE: no_frontend_build -> read_root returns API status JSON
|
|
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
sys.path.insert(0, str(Path(__file__).parent.parent / "src"))
|
|
|
|
import pytest
|
|
|
|
|
|
class TestSpaServing:
|
|
"""serve_spa and read_root — SPA fallback and API status."""
|
|
|
|
# #region test_read_root_response [C:2] [TYPE Function]
|
|
def test_read_root_response(self):
|
|
from fastapi.testclient import TestClient
|
|
from src.app import app, frontend_path
|
|
client = TestClient(app)
|
|
response = client.get("/")
|
|
assert response.status_code == 200
|
|
if frontend_path.exists():
|
|
assert "text/html" in response.headers.get("content-type", "")
|
|
else:
|
|
data = response.json()
|
|
assert "message" in data
|
|
assert "API is running" in data["message"]
|
|
# #endregion test_read_root_response
|
|
|
|
# #region test_spa_api_path_rejected [C:2] [TYPE Function]
|
|
def test_spa_api_path_rejected(self):
|
|
from fastapi.testclient import TestClient
|
|
from src.app import app
|
|
client = TestClient(app)
|
|
response = client.get("/api/unknown-route-test-xyz")
|
|
assert response.status_code == 404
|
|
assert response.headers.get("content-type", "").startswith("application/json")
|
|
# #endregion test_spa_api_path_rejected
|
|
|
|
|
|
class TestAppWithTestClient:
|
|
"""Integration tests using TestClient against the real app."""
|
|
|
|
# #region test_unknown_api_returns_404 [C:2] [TYPE Function]
|
|
def test_unknown_api_returns_404(self):
|
|
from fastapi.testclient import TestClient
|
|
from src.app import app
|
|
client = TestClient(app)
|
|
response = client.get("/api/nonexistent-endpoint-xyz")
|
|
assert response.status_code == 404
|
|
assert response.headers.get("content-type", "").startswith("application/json")
|
|
# #endregion test_unknown_api_returns_404
|
|
|
|
|
|
class TestServeSpaEdgeCases:
|
|
"""serve_spa — static file serving edge cases."""
|
|
|
|
# #region test_serve_spa_known_file [C:2] [TYPE Function]
|
|
def test_serve_spa_known_file(self):
|
|
from pathlib import Path as P
|
|
root = P(__file__).resolve().parent.parent.parent
|
|
fp = root / "frontend" / "build"
|
|
if not fp.exists():
|
|
pytest.skip("Frontend build not found")
|
|
from fastapi.testclient import TestClient
|
|
from src.app import app
|
|
client = TestClient(app)
|
|
app_dir = fp / "_app"
|
|
if app_dir.exists():
|
|
assets = list(app_dir.rglob("*"))
|
|
if assets:
|
|
rel = assets[0].relative_to(fp)
|
|
resp = client.get(f"/{rel}")
|
|
assert resp.status_code == 200
|
|
# #endregion test_serve_spa_known_file
|
|
|
|
# #region test_spa_unknown_file_returns_index [C:2] [TYPE Function]
|
|
def test_spa_unknown_file_returns_index(self):
|
|
from pathlib import Path as P
|
|
root = P(__file__).resolve().parent.parent.parent
|
|
fp = root / "frontend" / "build"
|
|
if not fp.exists():
|
|
pytest.skip("Frontend build not found")
|
|
from fastapi.testclient import TestClient
|
|
from src.app import app
|
|
client = TestClient(app)
|
|
resp = client.get("/some-random-non-api-path")
|
|
assert resp.status_code == 200
|
|
assert "text/html" in resp.headers.get("content-type", "")
|
|
# #endregion test_spa_unknown_file_returns_index
|
|
|
|
# #region test_spa_api_path_404 [C:2] [TYPE Function]
|
|
def test_spa_api_path_404(self):
|
|
from fastapi.testclient import TestClient
|
|
from src.app import app
|
|
client = TestClient(app)
|
|
resp = client.get("/api/does-not-exist-98765")
|
|
assert resp.status_code == 404
|
|
assert "application/json" in resp.headers.get("content-type", "")
|
|
# #endregion test_spa_api_path_404
|
|
|
|
# #region test_spa_api_path_no_leading_slash [C:2] [TYPE Function]
|
|
def test_spa_api_path_no_leading_slash(self):
|
|
from fastapi.testclient import TestClient
|
|
from src.app import app
|
|
client = TestClient(app)
|
|
resp = client.get("/api/another-missing-endpoint")
|
|
assert resp.status_code == 404
|
|
assert "application/json" in resp.headers.get("content-type", "")
|
|
# #endregion test_spa_api_path_no_leading_slash
|
|
|
|
# #region test_spa_existing_file_served [C:2] [TYPE Function]
|
|
def test_spa_existing_file_served(self):
|
|
"""SPA catch-all serves an existing static file (covers line 910)."""
|
|
from pathlib import Path as P
|
|
root = P(__file__).resolve().parent.parent.parent
|
|
fp = root / "frontend" / "build"
|
|
if not fp.exists():
|
|
pytest.skip("Frontend build not found — SPA catch-all not registered")
|
|
from fastapi.testclient import TestClient
|
|
from src.app import app
|
|
client = TestClient(app)
|
|
# favicon.png exists at frontend/build/favicon.png
|
|
resp = client.get("/favicon.png")
|
|
assert resp.status_code == 200
|
|
assert resp.headers.get("content-type", "").startswith("image/")
|
|
# #endregion test_spa_existing_file_served
|
|
# #endregion Test.AppModule.Spa
|