mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-29 18:46:59 +00:00
The Photon iMessage sidecar needs node_modules under plugins/platforms/photon/sidecar/, but hosted/managed images keep the whole install tree under an immutable /opt/hermes — every install and self-heal path (setup CLI, stale-deps reinstall, cold install) died on EROFS, and hosted users have no shell to work around it. Three-layer fix, mirroring the WhatsApp bridge resolver pattern: 1. Bake the deps into the image. The Dockerfile now runs npm ci for the sidecar in the layer-cached dependency stage (deterministic installs from the committed lockfile; the postinstall spectrum-ts patch runs at build time). Hosted happy path needs no runtime install at all. 2. New sidecar_paths.resolve_sidecar_dir() decides where the sidecar runs from: PHOTON_SIDECAR_DIR override > writable source dir (dev installs, unchanged) > read-only dir with baked fresh deps (managed image) > mirror to $HERMES_HOME/photon/sidecar (writable data volume) when deps are missing or stale in a read-only tree. The mirror refreshes changed source files on image updates while keeping node_modules, so the existing lockfile-staleness self-heal works there. 3. connect() can now cold-install: _start_sidecar() runs the bounded npm ci bootstrap when node_modules is missing instead of raising immediately, and check_requirements() reports available when a self-install is possible (npm present + writable resolved dir) so the gateway actually creates the adapter on hosted instances. A failed bootstrap still raises the actionable error, which connect() surfaces as the retryable SIDECAR_FAILED fatal state on the dashboard. Tests: resolver decision table (env override, in-place, mirror, refresh, fail-open), cold-install lifecycle paths, and a Dockerfile contract test guarding the baked-deps + no-chown invariants. Fixes NS-606.
149 lines
5.6 KiB
Python
149 lines
5.6 KiB
Python
"""Tests for the Photon sidecar directory resolver (NS-606).
|
|
|
|
Hosted/managed images keep the plugin tree under an immutable
|
|
``/opt/hermes``; ``resolve_sidecar_dir`` must run in place when the deps are
|
|
baked and current, and mirror the sidecar to the writable ``HERMES_HOME``
|
|
volume when a runtime install is unavoidable.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
import plugins.platforms.photon.sidecar_paths as sidecar_paths
|
|
|
|
|
|
def _seed_source(source: Path, *, with_node_modules: bool = False) -> None:
|
|
source.mkdir(parents=True, exist_ok=True)
|
|
for name in sidecar_paths._MIRROR_FILES:
|
|
(source / name).write_text(f"// {name}\n", encoding="utf-8")
|
|
if with_node_modules:
|
|
(source / "node_modules").mkdir()
|
|
(source / "node_modules" / ".package-lock.json").write_text(
|
|
"{}", encoding="utf-8"
|
|
)
|
|
|
|
|
|
def _freeze_writability(monkeypatch, *, writable: bool) -> None:
|
|
monkeypatch.setattr(sidecar_paths, "_dir_writable", lambda _p: writable)
|
|
|
|
|
|
def test_env_override_wins(tmp_path, monkeypatch) -> None:
|
|
override = tmp_path / "custom"
|
|
monkeypatch.setenv("PHOTON_SIDECAR_DIR", str(override))
|
|
assert sidecar_paths.resolve_sidecar_dir(tmp_path / "src") == override
|
|
|
|
|
|
def test_writable_source_runs_in_place(tmp_path, monkeypatch) -> None:
|
|
"""Dev installs: writable tree keeps today's behavior exactly."""
|
|
monkeypatch.delenv("PHOTON_SIDECAR_DIR", raising=False)
|
|
source = tmp_path / "src"
|
|
_seed_source(source)
|
|
_freeze_writability(monkeypatch, writable=True)
|
|
assert sidecar_paths.resolve_sidecar_dir(source) == source
|
|
|
|
|
|
def test_readonly_source_with_baked_fresh_deps_runs_in_place(
|
|
tmp_path, monkeypatch
|
|
) -> None:
|
|
"""Managed-image happy path: deps baked at build time, no mirror needed."""
|
|
monkeypatch.delenv("PHOTON_SIDECAR_DIR", raising=False)
|
|
source = tmp_path / "src"
|
|
_seed_source(source, with_node_modules=True)
|
|
# Marker newer than lockfile == fresh install.
|
|
lock = source / "package-lock.json"
|
|
marker = source / "node_modules" / ".package-lock.json"
|
|
os.utime(lock, (1000.0, 1000.0))
|
|
os.utime(marker, (2000.0, 2000.0))
|
|
_freeze_writability(monkeypatch, writable=False)
|
|
assert sidecar_paths.resolve_sidecar_dir(source) == source
|
|
|
|
|
|
def test_readonly_source_missing_deps_mirrors_to_hermes_home(
|
|
tmp_path, monkeypatch
|
|
) -> None:
|
|
"""Immutable tree without baked deps must relocate to the data volume."""
|
|
monkeypatch.delenv("PHOTON_SIDECAR_DIR", raising=False)
|
|
home = tmp_path / "home"
|
|
monkeypatch.setenv("HERMES_HOME", str(home))
|
|
source = tmp_path / "src"
|
|
_seed_source(source) # no node_modules
|
|
_freeze_writability(monkeypatch, writable=False)
|
|
|
|
resolved = sidecar_paths.resolve_sidecar_dir(source)
|
|
|
|
assert resolved == home / "photon" / "sidecar"
|
|
for name in sidecar_paths._MIRROR_FILES:
|
|
assert (resolved / name).read_text(encoding="utf-8") == f"// {name}\n"
|
|
|
|
|
|
def test_readonly_source_stale_baked_deps_mirrors(tmp_path, monkeypatch) -> None:
|
|
"""Baked deps older than the lockfile (image skew) must not run in place."""
|
|
monkeypatch.delenv("PHOTON_SIDECAR_DIR", raising=False)
|
|
home = tmp_path / "home"
|
|
monkeypatch.setenv("HERMES_HOME", str(home))
|
|
source = tmp_path / "src"
|
|
_seed_source(source, with_node_modules=True)
|
|
lock = source / "package-lock.json"
|
|
marker = source / "node_modules" / ".package-lock.json"
|
|
os.utime(lock, (2000.0, 2000.0))
|
|
os.utime(marker, (1000.0, 1000.0))
|
|
_freeze_writability(monkeypatch, writable=False)
|
|
|
|
assert sidecar_paths.resolve_sidecar_dir(source) == home / "photon" / "sidecar"
|
|
|
|
|
|
def test_mirror_refresh_updates_changed_files_and_keeps_node_modules(
|
|
tmp_path, monkeypatch
|
|
) -> None:
|
|
"""Image update changes index.mjs → re-copied; installed deps survive."""
|
|
monkeypatch.delenv("PHOTON_SIDECAR_DIR", raising=False)
|
|
home = tmp_path / "home"
|
|
monkeypatch.setenv("HERMES_HOME", str(home))
|
|
source = tmp_path / "src"
|
|
_seed_source(source)
|
|
_freeze_writability(monkeypatch, writable=False)
|
|
|
|
mirror = sidecar_paths.resolve_sidecar_dir(source)
|
|
# Simulate a completed npm install in the mirror.
|
|
(mirror / "node_modules").mkdir()
|
|
(mirror / "node_modules" / "installed.txt").write_text("x", encoding="utf-8")
|
|
|
|
# Image update rewrites a source file.
|
|
(source / "index.mjs").write_text("// index.mjs v2\n", encoding="utf-8")
|
|
|
|
resolved = sidecar_paths.resolve_sidecar_dir(source)
|
|
|
|
assert resolved == mirror
|
|
assert (mirror / "index.mjs").read_text(encoding="utf-8") == "// index.mjs v2\n"
|
|
assert (mirror / "node_modules" / "installed.txt").exists()
|
|
|
|
|
|
def test_mirror_failure_falls_back_to_source(tmp_path, monkeypatch) -> None:
|
|
"""If HERMES_HOME is unusable too, return the source dir (fail-open)."""
|
|
monkeypatch.delenv("PHOTON_SIDECAR_DIR", raising=False)
|
|
# Point HERMES_HOME at a path under a file so mkdir fails.
|
|
blocker = tmp_path / "blocker"
|
|
blocker.write_text("", encoding="utf-8")
|
|
monkeypatch.setenv("HERMES_HOME", str(blocker / "home"))
|
|
source = tmp_path / "src"
|
|
_seed_source(source)
|
|
_freeze_writability(monkeypatch, writable=False)
|
|
|
|
assert sidecar_paths.resolve_sidecar_dir(source) == source
|
|
|
|
|
|
def test_dir_writable_probe(tmp_path) -> None:
|
|
assert sidecar_paths.dir_writable(tmp_path) is True
|
|
ro = tmp_path / "ro"
|
|
ro.mkdir()
|
|
ro.chmod(0o555)
|
|
try:
|
|
if os.geteuid() == 0: # pragma: no cover - root ignores perms
|
|
pytest.skip("root bypasses directory permissions")
|
|
assert sidecar_paths.dir_writable(ro) is False
|
|
finally:
|
|
ro.chmod(0o755)
|