Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license
This commit is contained in:
@@ -0,0 +1,169 @@
|
||||
"""Contract tests for the container Dockerfile.
|
||||
|
||||
These tests assert invariants about how the Dockerfile composes its runtime —
|
||||
they deliberately avoid snapshotting specific package versions, line numbers,
|
||||
or exact flag choices. What they DO assert is that the Dockerfile maintains
|
||||
the properties required for correct production behaviour:
|
||||
|
||||
- A PID-1 init is installed and wraps the entrypoint, so that orphaned
|
||||
subprocesses (MCP stdio servers, git, bun, browser daemons) get reaped
|
||||
instead of accumulating as zombies (#15012).
|
||||
- Signal forwarding runs through the init so ``docker stop`` triggers
|
||||
hermes's own graceful-shutdown path.
|
||||
|
||||
The init can be any reaper-capable PID-1: the historical lineage was
|
||||
``tini``; the current image uses s6-overlay's ``/init`` (which execs
|
||||
``s6-svscan`` as PID 1, with the same SIGCHLD-reaping property). The
|
||||
checks below accept either family — the contract is behavioural, not
|
||||
nominal.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
REPO_ROOT = Path(__file__).resolve().parents[2]
|
||||
DOCKERFILE = REPO_ROOT / "Dockerfile"
|
||||
DOCKERIGNORE = REPO_ROOT / ".dockerignore"
|
||||
ENTRYPOINT_DISPATCH = REPO_ROOT / "docker" / "entrypoint-dispatch.sh"
|
||||
|
||||
|
||||
# Init-process families this repo accepts as PID 1. ``tini`` /
|
||||
# ``dumb-init`` / ``catatonit`` are classic minimal reapers; s6-overlay
|
||||
# ships ``/init`` which execs ``s6-svscan`` as PID 1 (same reaper
|
||||
# contract, plus supervision of declared services). Either family
|
||||
# satisfies the zombie-reaping invariant — see issue #15012.
|
||||
_KNOWN_INIT_TOKENS: tuple[str, ...] = (
|
||||
"tini",
|
||||
"dumb-init",
|
||||
"catatonit",
|
||||
"s6-overlay",
|
||||
"s6-svscan",
|
||||
"/init",
|
||||
)
|
||||
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
def dockerfile_text() -> str:
|
||||
if not DOCKERFILE.exists():
|
||||
pytest.skip("Dockerfile not present in this checkout")
|
||||
return DOCKERFILE.read_text()
|
||||
|
||||
|
||||
def _dockerfile_instructions(dockerfile_text: str) -> list[str]:
|
||||
instructions: list[str] = []
|
||||
current = ""
|
||||
|
||||
for raw_line in dockerfile_text.splitlines():
|
||||
line = raw_line.strip()
|
||||
if not line or line.startswith("#"):
|
||||
continue
|
||||
|
||||
continued = line.removesuffix("\\").strip()
|
||||
current = f"{current} {continued}".strip()
|
||||
if not line.endswith("\\"):
|
||||
instructions.append(current)
|
||||
current = ""
|
||||
|
||||
return instructions
|
||||
|
||||
|
||||
def _run_steps(dockerfile_text: str) -> list[str]:
|
||||
return [
|
||||
instruction
|
||||
for instruction in _dockerfile_instructions(dockerfile_text)
|
||||
if instruction.startswith("RUN ")
|
||||
]
|
||||
|
||||
|
||||
def _instruction_text(dockerfile_text: str) -> str:
|
||||
"""Join every non-comment Dockerfile instruction into one searchable
|
||||
string. Crucially excludes comments — otherwise the historical
|
||||
explanation of "we used to use tini" would silently satisfy a
|
||||
substring check long after tini was removed from the build.
|
||||
"""
|
||||
return "\n".join(_dockerfile_instructions(dockerfile_text))
|
||||
|
||||
|
||||
def test_dockerfile_installs_an_init_for_zombie_reaping(dockerfile_text):
|
||||
"""Some init (tini, dumb-init, catatonit, s6-overlay) must be installed.
|
||||
|
||||
Without a PID-1 init that handles SIGCHLD, hermes accumulates zombie
|
||||
processes from MCP stdio subprocesses, git operations, browser
|
||||
daemons, etc. In long-running Docker deployments this eventually
|
||||
exhausts the PID table.
|
||||
"""
|
||||
# Accept any of the common reapers. The contract is behavioural:
|
||||
# something must be installed that reaps orphans.
|
||||
#
|
||||
# Scan instructions only (no comments) so a stale historical mention
|
||||
# in a comment can't masquerade as a current install. Without this,
|
||||
# removing tini from the actual build but leaving the word in a
|
||||
# comment would silently keep the test green.
|
||||
instructions = _instruction_text(dockerfile_text)
|
||||
installed = any(name in instructions for name in _KNOWN_INIT_TOKENS)
|
||||
assert installed, (
|
||||
"No PID-1 init detected in Dockerfile instructions (looked for: "
|
||||
f"{', '.join(_KNOWN_INIT_TOKENS)}). Without an init process to "
|
||||
"reap orphaned subprocesses, hermes accumulates zombies in Docker "
|
||||
"deployments. See issue #15012."
|
||||
)
|
||||
|
||||
|
||||
def test_dockerfile_entrypoint_routes_through_the_init(dockerfile_text):
|
||||
"""The ENTRYPOINT must preserve a PID-1 init path, even with a dispatcher.
|
||||
|
||||
Installing the init is only half the fix — the container must actually
|
||||
run with it as PID 1. A shell dispatcher is fine only if it execs the
|
||||
real init when the image owns PID 1; otherwise the shell would become
|
||||
PID 1 and hermes would run without zombie reaping.
|
||||
"""
|
||||
# Find the last uncommented ENTRYPOINT line — Docker honours the final one.
|
||||
entrypoint_line = None
|
||||
for raw_line in dockerfile_text.splitlines():
|
||||
line = raw_line.strip()
|
||||
if line.startswith("#"):
|
||||
continue
|
||||
if line.startswith("ENTRYPOINT"):
|
||||
entrypoint_line = line
|
||||
|
||||
assert entrypoint_line is not None, "Dockerfile is missing an ENTRYPOINT directive"
|
||||
|
||||
if any(name in entrypoint_line for name in _KNOWN_INIT_TOKENS):
|
||||
return
|
||||
|
||||
assert "/opt/hermes/docker/entrypoint-dispatch.sh" in entrypoint_line, (
|
||||
f"Unexpected Dockerfile ENTRYPOINT: {entrypoint_line!r}"
|
||||
)
|
||||
assert ENTRYPOINT_DISPATCH.exists(), (
|
||||
"Dockerfile points at entrypoint-dispatch.sh but the script is missing."
|
||||
)
|
||||
dispatcher = ENTRYPOINT_DISPATCH.read_text(encoding="utf-8")
|
||||
assert 'if [ "$$" -eq 1 ]; then' in dispatcher
|
||||
assert "exec /init /opt/hermes/docker/main-wrapper.sh" in dispatcher, (
|
||||
"The entrypoint dispatcher must hand PID-1 execution off to /init; "
|
||||
"otherwise the shell becomes PID 1 and zombies will accumulate."
|
||||
)
|
||||
|
||||
|
||||
def test_dispatcher_non_pid1_fallback_restores_s6_helpers_on_path() -> None:
|
||||
"""Skipping /init must still expose s6-setuidgid to stage2/main-wrapper."""
|
||||
dispatcher = ENTRYPOINT_DISPATCH.read_text(encoding="utf-8")
|
||||
assert 'export PATH="/command:/package/admin/s6/command:${PATH}"' in dispatcher, (
|
||||
"The non-PID-1 entrypoint fallback skips /init, so it must restore the "
|
||||
"s6 helper directories on PATH before invoking stage2-hook.sh and "
|
||||
"main-wrapper.sh."
|
||||
)
|
||||
|
||||
|
||||
def test_dockerignore_excludes_nested_dependency_dirs():
|
||||
if not DOCKERIGNORE.exists():
|
||||
pytest.skip(".dockerignore not present in this checkout")
|
||||
|
||||
text = DOCKERIGNORE.read_text()
|
||||
|
||||
assert "**/node_modules" in text
|
||||
assert "**/.venv" in text
|
||||
Reference in New Issue
Block a user