mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-01 12:02:05 +00:00
47 lines
1.6 KiB
Python
47 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}"
|
|
)
|