Compare commits

..

No commits in common. "16e54b63f2fb29584431d24f07e7e82f1379f391" and "a87e9d2db4b5392e3ee2209f2e8976d4c09d7af8" have entirely different histories.

2 changed files with 3 additions and 57 deletions

View File

@ -30,27 +30,6 @@ def health() -> dict[str, str]:
return {"status": "ok", "service": "stackchain-dashboard"} return {"status": "ok", "service": "stackchain-dashboard"}
@app.get("/readyz")
async def readiness():
"""Return readiness after verifying the configured Gitea connection."""
try:
user = await current_user()
except Exception as exc:
return JSONResponse(
{
"status": "not_ready",
"service": "stackchain-dashboard",
"error": str(exc),
},
status_code=503,
)
return {
"status": "ready",
"service": "stackchain-dashboard",
"gitea_user": user["login"],
}
@app.get("/api/v1/context") @app.get("/api/v1/context")
async def context() -> JSONResponse: async def context() -> JSONResponse:
try: try:

View File

@ -1,39 +1,6 @@
import pytest from src.main import app, health
from src import main
def test_health_endpoint_reports_service_liveness_without_gitea_access(): def test_health_endpoint_reports_service_liveness_without_gitea_access():
assert any(getattr(route, "path", None) == "/healthz" for route in main.app.routes) assert any(getattr(route, "path", None) == "/healthz" for route in app.routes)
assert main.health() == {"status": "ok", "service": "stackchain-dashboard"} assert health() == {"status": "ok", "service": "stackchain-dashboard"}
@pytest.mark.anyio
async def test_readiness_endpoint_reports_connected_gitea_user(monkeypatch):
async def connected_user():
return {"login": "timmy"}
monkeypatch.setattr(main, "current_user", connected_user)
response = await main.readiness()
assert any(getattr(route, "path", None) == "/readyz" for route in main.app.routes)
assert response == {
"status": "ready",
"service": "stackchain-dashboard",
"gitea_user": "timmy",
}
@pytest.mark.anyio
async def test_readiness_endpoint_returns_503_when_gitea_is_unavailable(monkeypatch):
async def unavailable_user():
raise RuntimeError("connection refused")
monkeypatch.setattr(main, "current_user", unavailable_user)
response = await main.readiness()
assert response.status_code == 503
assert b'"status":"not_ready"' in response.body
assert b'"error":"connection refused"' in response.body