Add caddy-autogen app, tests, and agent policy updates
This commit is contained in:
@@ -0,0 +1,151 @@
|
||||
#!/usr/bin/env python3
|
||||
import importlib.util
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
ROOT_DIR = Path(__file__).resolve().parents[1]
|
||||
AGENT_PATH = ROOT_DIR / "agent" / "discovery_agent.py"
|
||||
|
||||
|
||||
def load_agent_module():
|
||||
spec = importlib.util.spec_from_file_location("discovery_agent", AGENT_PATH)
|
||||
module = importlib.util.module_from_spec(spec)
|
||||
assert spec.loader is not None
|
||||
spec.loader.exec_module(module)
|
||||
return module
|
||||
|
||||
|
||||
def assert_true(condition, message):
|
||||
if not condition:
|
||||
raise AssertionError(message)
|
||||
|
||||
|
||||
def test_optin_route_selection(module):
|
||||
containers = [
|
||||
{"Id": "frigate123", "Names": ["/frigate"], "Image": "ghcr.io/blakeblackshear/frigate:stable"},
|
||||
{"Id": "hidden123", "Names": ["/hidden-service"], "Image": "nginx:1.27"},
|
||||
]
|
||||
inspect_map = {
|
||||
"frigate123": {
|
||||
"Config": {
|
||||
"Env": [
|
||||
"LABEL_CADDY_ENABLE=true",
|
||||
"LABEL_CADDY_TARGET_PORT=5000",
|
||||
"LABEL_CADDY_SCHEME=http",
|
||||
]
|
||||
},
|
||||
"NetworkSettings": {
|
||||
"Ports": {
|
||||
"5000/tcp": [{"HostIp": "0.0.0.0", "HostPort": "5000"}],
|
||||
"8554/tcp": [{"HostIp": "0.0.0.0", "HostPort": "8554"}],
|
||||
"8555/tcp": [{"HostIp": "0.0.0.0", "HostPort": "8555"}],
|
||||
"8555/udp": [{"HostIp": "0.0.0.0", "HostPort": "8555"}],
|
||||
}
|
||||
},
|
||||
},
|
||||
"hidden123": {
|
||||
"Config": {
|
||||
"Env": [
|
||||
"LABEL_CADDY_ENABLE=false",
|
||||
"LABEL_CADDY_TARGET_PORT=8080",
|
||||
]
|
||||
},
|
||||
"NetworkSettings": {
|
||||
"Ports": {
|
||||
"8080/tcp": [{"HostIp": "0.0.0.0", "HostPort": "8080"}],
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
def fake_get_json(url: str):
|
||||
if url.endswith("/containers/json?all=0"):
|
||||
return containers
|
||||
if "/containers/" in url and url.endswith("/json"):
|
||||
container_id = url.rsplit("/containers/", 1)[1].rsplit("/json", 1)[0]
|
||||
return inspect_map[container_id]
|
||||
raise AssertionError(f"unexpected URL in test: {url}")
|
||||
|
||||
original = module._get_json
|
||||
module._get_json = fake_get_json
|
||||
try:
|
||||
routes = module._collect_routes(
|
||||
docker_api_url="http://docker.test",
|
||||
env_prefix="LABEL_CADDY_",
|
||||
denylist={"caddy-autogen", "caddy-autogen-discovery", "caddy-autogen-socket-proxy"},
|
||||
base_domain="home.example.test",
|
||||
default_scheme="http",
|
||||
default_path="/",
|
||||
default_health_uri="",
|
||||
)
|
||||
finally:
|
||||
module._get_json = original
|
||||
|
||||
assert_true(len(routes) == 1, f"expected 1 route, got {len(routes)}")
|
||||
route = routes[0]
|
||||
assert_true(route["fqdn"] == "frigate.home.example.test", f"unexpected fqdn: {route['fqdn']}")
|
||||
assert_true(route["upstream"] == "host.docker.internal:5000", f"unexpected upstream: {route['upstream']}")
|
||||
|
||||
caddyfile = module._generate_caddyfile(
|
||||
routes=routes,
|
||||
token="dummy-token",
|
||||
require_cloudflare=True,
|
||||
allow_internal_tls_fallback=False,
|
||||
wildcard_domain="home.example.test",
|
||||
cert_email="",
|
||||
)
|
||||
|
||||
assert_true("frigate.home.example.test" in caddyfile, "expected frigate host in caddyfile")
|
||||
assert_true("reverse_proxy http://host.docker.internal:5000" in caddyfile, "expected web port route")
|
||||
assert_true("8554" not in caddyfile and "8555" not in caddyfile, "media ports must not be routed")
|
||||
assert_true("hidden-service.home.example.test" not in caddyfile, "non opt-in container must stay hidden")
|
||||
|
||||
|
||||
def test_fail_closed_and_internal_fallback(module):
|
||||
routes = [
|
||||
{
|
||||
"name": "demo",
|
||||
"fqdn": "demo.home.example.test",
|
||||
"scheme": "http",
|
||||
"upstream": "host.docker.internal:5000",
|
||||
"path": "/",
|
||||
"health_uri": "",
|
||||
}
|
||||
]
|
||||
|
||||
failed = False
|
||||
try:
|
||||
module._generate_caddyfile(
|
||||
routes=routes,
|
||||
token="",
|
||||
require_cloudflare=True,
|
||||
allow_internal_tls_fallback=False,
|
||||
wildcard_domain="",
|
||||
cert_email="",
|
||||
)
|
||||
except RuntimeError as exc:
|
||||
failed = True
|
||||
assert_true("CLOUDFLARE_API_TOKEN" in str(exc), "expected explicit token error")
|
||||
assert_true(failed, "expected fail-closed RuntimeError without Cloudflare token")
|
||||
|
||||
fallback_caddyfile = module._generate_caddyfile(
|
||||
routes=routes,
|
||||
token="",
|
||||
require_cloudflare=False,
|
||||
allow_internal_tls_fallback=True,
|
||||
wildcard_domain="",
|
||||
cert_email="",
|
||||
)
|
||||
assert_true("local_certs" in fallback_caddyfile, "expected local_certs in fallback mode")
|
||||
assert_true("tls internal" in fallback_caddyfile, "expected internal tls in fallback mode")
|
||||
|
||||
|
||||
def main():
|
||||
module = load_agent_module()
|
||||
test_optin_route_selection(module)
|
||||
test_fail_closed_and_internal_fallback(module)
|
||||
print("Integration tests passed")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
||||
PYTHONDONTWRITEBYTECODE=1 python3 "$ROOT_DIR/tests/integration_tests.py"
|
||||
Reference in New Issue
Block a user