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 / quality (push) Has been cancelled
ci / container (push) Has been cancelled

This commit is contained in:
2026-08-09 16:07:13 +00:00
parent 46038e31ab
commit bc3c6cca8b

View File

@@ -2,51 +2,75 @@ import httpx
import pytest import pytest
from app.checker import EndpointChecker from app.checker import EndpointChecker
from app.config import Settings
pytestmark = pytest.mark.anyio from app.models import MonitorState
from app.security import UnsafeTarget
async def test_blocks_private_dns_before_http_call(): async def public_resolver(host: str, port: int) -> list[str]:
return ["93.184.216.34"]
@pytest.mark.anyio
async def test_http_results_and_redirect_are_checked() -> None:
seen: list[str] = []
async def resolver(host: str, port: int) -> list[str]:
seen.append(host)
return ["93.184.216.34"]
def handler(request: httpx.Request) -> httpx.Response:
if request.url.host == "example.com":
return httpx.Response(302, headers={"location": "https://other.example/final"})
return httpx.Response(503)
checker = EndpointChecker(Settings(), transport=httpx.MockTransport(handler), resolver=resolver)
result = await checker.check("id", "https://example.com/start?token=secret")
assert result.state is MonitorState.DOWN
assert result.http_status == 503
assert result.latency_ms is not None
assert seen == ["example.com", "other.example"]
@pytest.mark.anyio
async def test_transport_error_becomes_error_status() -> None:
def handler(request: httpx.Request) -> httpx.Response:
raise httpx.ConnectTimeout("timed out", request=request)
checker = EndpointChecker(Settings(), transport=httpx.MockTransport(handler), resolver=public_resolver)
result = await checker.check("id", "https://example.com")
assert result.state is MonitorState.ERROR
assert "timed out" in (result.error or "")
@pytest.mark.anyio
async def test_private_dns_is_blocked_before_transport() -> None:
called = False called = False
def handler(request):
async def private_resolver(host: str, port: int) -> list[str]:
return ["127.0.0.1"]
def handler(request: httpx.Request) -> httpx.Response:
nonlocal called nonlocal called
called = True called = True
return httpx.Response(200, request=request) return httpx.Response(200)
async def private(host, port):
return ["127.0.0.1"] checker = EndpointChecker(Settings(), transport=httpx.MockTransport(handler), resolver=private_resolver)
async with httpx.AsyncClient(transport=httpx.MockTransport(handler)) as client: with pytest.raises(UnsafeTarget):
result = await EndpointChecker(client, 1, 2, 100, private).check("id", "http://public.test") await checker.check("id", "https://internal.example")
assert result.status == "error" assert called is False
assert result.error == "non_public_target"
assert not called
async def test_blocks_redirect_to_private_target(): @pytest.mark.anyio
calls = [] async def test_redirect_to_private_address_is_blocked() -> None:
def handler(request): calls = 0
calls.append(str(request.url))
return httpx.Response(302, headers={"location": "http://internal.test/admin"}, request=request)
async def resolver(host, port):
return ["10.0.0.1"] if host == "internal.test" else ["93.184.216.34"]
async with httpx.AsyncClient(transport=httpx.MockTransport(handler)) as client:
result = await EndpointChecker(client, 1, 2, 100, resolver).check("id", "https://example.com")
assert result.error == "non_public_target"
assert calls == ["https://example.com"]
def handler(request: httpx.Request) -> httpx.Response:
nonlocal calls
calls += 1
return httpx.Response(302, headers={"location": "http://127.0.0.1/admin"})
async def test_rejects_if_any_dns_answer_is_private(): checker = EndpointChecker(Settings(), transport=httpx.MockTransport(handler), resolver=public_resolver)
async def mixed(host, port): with pytest.raises(UnsafeTarget):
return ["93.184.216.34", "169.254.169.254"] await checker.check("id", "https://example.com")
async with httpx.AsyncClient(transport=httpx.MockTransport(lambda request: httpx.Response(200))) as client: assert calls == 1
result = await EndpointChecker(client, 1, 1, 100, mixed).check("id", "http://example.com")
assert result.error == "non_public_target"
async def test_redirect_limit():
def handler(request):
return httpx.Response(302, headers={"location": "/again"}, request=request)
async def public(host, port):
return ["93.184.216.34"]
async with httpx.AsyncClient(transport=httpx.MockTransport(handler)) as client:
result = await EndpointChecker(client, 1, 1, 100, public).check("id", "https://example.com")
assert result.error == "too_many_redirects"