b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
48 lines
1.6 KiB
Python
48 lines
1.6 KiB
Python
"""Runtime smoke test for Docker $HERMES_HOME/logs/gateways seeding.
|
|
|
|
Build the real image and verify logs/ and logs/gateways/ exist and are
|
|
owned by the hermes user after container boot.
|
|
|
|
Regression guard for #45258: if the first gateway log service runs in
|
|
root context, logs/gateways/ is created root-owned; every profile
|
|
registered later runs its log service as the dropped hermes user and
|
|
s6-log crash-loops on mkdir: Permission denied.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from tests.docker.conftest import docker_exec_sh, start_container
|
|
|
|
|
|
def test_logs_gateways_seeded_and_hermes_owned(
|
|
built_image: str, container_name: str,
|
|
) -> None:
|
|
"""logs/ and logs/gateways/ must exist and be owned by hermes after boot."""
|
|
start_container(built_image, container_name)
|
|
|
|
# Both directories must exist
|
|
r = docker_exec_sh(
|
|
container_name,
|
|
"test -d /opt/data/logs && "
|
|
"test -d /opt/data/logs/gateways && "
|
|
"echo DIRS_OK || echo DIRS_MISSING",
|
|
timeout=10,
|
|
)
|
|
assert "DIRS_OK" in r.stdout, (
|
|
f"logs/ or logs/gateways/ not seeded: {r.stdout}"
|
|
)
|
|
|
|
# Both must be owned by hermes
|
|
r = docker_exec_sh(
|
|
container_name,
|
|
'logs_owner=$(stat -c "%U" /opt/data/logs); '
|
|
'gateways_owner=$(stat -c "%U" /opt/data/logs/gateways); '
|
|
'echo "logs=$logs_owner gateways=$gateways_owner"',
|
|
timeout=10,
|
|
)
|
|
assert "logs=hermes" in r.stdout, (
|
|
f"logs/ not owned by hermes: {r.stdout}"
|
|
)
|
|
assert "gateways=hermes" in r.stdout, (
|
|
f"logs/gateways/ not owned by hermes: {r.stdout}"
|
|
)
|