decomposer: generate deliverable files for Define the service contract and project architecture for the FastAPI endpoint monitoring service.; Implement the typed monitor CRUD API and concurrency-safe in-memory state according to the service design.; Implement secure on-demand endpoint checks with status updates, latency measurement, robust error handling, and redacted structured logs.; Add operational API endpoints and environment-driven runtime configuration to the monitoring service.; Create automated tests for the monitoring service.; Package the service with Docker and developer documentation.; Validate the complete project.
Some checks failed
ci / validate (push) Has been cancelled

This commit is contained in:
2026-08-09 15:49:45 +00:00
parent ae9cdc3427
commit 3b87f26a90

View File

@@ -1,32 +1,51 @@
from uuid import uuid4 from collections.abc import AsyncIterator
from fastapi.testclient import TestClient import httpx
import pytest
from app.checker import EndpointChecker, Fetcher, HopResponse
from app.config import Settings
from app.main import create_app
from app.security import ValidatedTarget
def create(client: TestClient, url: str = "https://example.com/health") -> dict[str, object]: class OkayFetcher(Fetcher):
response = client.post("/v1/monitors", json={"name": "site", "url": url}) async def fetch(self, target: ValidatedTarget, settings: Settings, remaining: float) -> HopResponse:
assert response.status_code == 201 return HopResponse(204, None)
return response.json()
def test_crud_and_operational_routes(client: TestClient) -> None: async def public_resolver(host: str, port: int) -> list[tuple[object, ...]]:
assert client.get("/healthz").json() == {"status": "ok"} return [(2, 1, 6, "", ("93.184.216.34", port))]
assert client.get("/readyz").json() == {"status": "ready"}
item = create(client)
monitor_id = item["id"]
assert item["current_status"]["state"] == "unknown"
assert len(client.get("/v1/monitors").json()) == 1
updated = client.patch(f"/v1/monitors/{monitor_id}", json={"name": "new"})
assert updated.status_code == 200
assert updated.json()["name"] == "new"
assert client.get(f"/v1/monitors/{monitor_id}/status").json()["state"] == "unknown"
assert client.delete(f"/v1/monitors/{monitor_id}").status_code == 204
assert client.get(f"/v1/monitors/{monitor_id}").status_code == 404
def test_validation_and_missing(client: TestClient) -> None: @pytest.fixture
assert client.post("/v1/monitors", json={"name": "", "url": "file:///tmp/x"}).status_code == 422 async def client() -> AsyncIterator[httpx.AsyncClient]:
missing = uuid4() settings = Settings(total_timeout_seconds=2, connect_timeout_seconds=1, read_timeout_seconds=1)
assert client.get(f"/v1/monitors/{missing}").json() == {"detail": "monitor not found"} checker = EndpointChecker(settings, fetcher=OkayFetcher(), resolver=public_resolver)
item = create(client) app = create_app(settings=settings, checker=checker)
assert client.patch(f"/v1/monitors/{item['id']}", json={}).status_code == 422 async with httpx.AsyncClient(transport=httpx.ASGITransport(app=app), base_url="http://test") as value:
yield value
@pytest.mark.asyncio
async def test_crud_check_status_and_operations(client: httpx.AsyncClient) -> None:
assert (await client.get("/health")).json() == {"status": "ok"}
assert (await client.get("/ready")).json()["storage"] == "process-local-memory"
created = await client.post("/monitors", json={"name": "site", "url": "https://example.com/x?secret=yes"})
assert created.status_code == 201
monitor_id = created.json()["id"]
assert len((await client.get("/monitors")).json()) == 1
checked = await client.post(f"/monitors/{monitor_id}/check")
assert checked.json()["status"]["state"] == "up"
assert checked.json()["applied"] is True
assert (await client.get(f"/monitors/{monitor_id}/status")).json()["http_status"] == 204
updated = await client.put(f"/monitors/{monitor_id}", json={"name": "new", "url": "https://example.com/new"})
assert updated.json()["current_status"] is None
assert (await client.delete(f"/monitors/{monitor_id}")).status_code == 204
assert (await client.get(f"/monitors/{monitor_id}")).status_code == 404
@pytest.mark.asyncio
async def test_validation_and_missing(client: httpx.AsyncClient) -> None:
assert (await client.post("/monitors", json={"name": "", "url": "ftp://x"})).status_code == 422
assert (await client.get("/monitors/00000000-0000-0000-0000-000000000000")).status_code == 404