Spaces:
Sleeping
Sleeping
File size: 9,402 Bytes
f774338 6aa62ca f774338 2ab31b4 f774338 2ab31b4 f774338 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | """Behavior tests for the sandboxed Python executor.
The process-level fallback must enforce: scrubbed env (no secrets), scratch
cwd (no repo-root writes from relative paths), wall-clock timeout, and bounded
output. The Docker backend is tested separately via argv-mocking; actual
docker runs require docker on PATH and are skipped otherwise.
"""
from __future__ import annotations
import os
import shutil
from pathlib import Path
import pytest
from lilith_agent.tools.python_exec import run_python
@pytest.fixture(autouse=True)
def _force_process_backend(monkeypatch):
"""Default every test to the process backend. Docker-selection tests
override this by re-setting ``LILITH_SANDBOX`` inside the test body.
The docker integration test near the bottom of this file explicitly opts in.
"""
monkeypatch.setenv("LILITH_SANDBOX", "process")
def test_simple_expression_returns_value():
result = run_python("2 + 2")
assert "4" in result
def test_print_output_captured():
result = run_python("print('hello'); print('world')")
assert "hello" in result
assert "world" in result
def test_exception_returns_traceback_with_numbered_code():
result = run_python("x = 1\ny = 2\nraise ValueError('boom')")
assert "ValueError" in result
assert "boom" in result
# Numbered code assists debugging by pinpointing the failing line.
assert " 3: raise ValueError" in result
def test_api_key_env_vars_are_scrubbed(monkeypatch):
"""Secrets in the parent env must not leak into subprocess-exec'd code."""
monkeypatch.setenv("ANTHROPIC_API_KEY", "sk-anthropic-should-not-leak")
monkeypatch.setenv("GOOGLE_API_KEY", "goog-should-not-leak")
monkeypatch.setenv("OPENAI_API_KEY", "oai-should-not-leak")
monkeypatch.setenv("AWS_SECRET_ACCESS_KEY", "aws-should-not-leak")
monkeypatch.setenv("GAIA_HUGGINGFACE_API_KEY", "hf-should-not-leak")
result = run_python(
"import os\n"
"print('A=' + str(os.environ.get('ANTHROPIC_API_KEY')))\n"
"print('G=' + str(os.environ.get('GOOGLE_API_KEY')))\n"
"print('O=' + str(os.environ.get('OPENAI_API_KEY')))\n"
"print('W=' + str(os.environ.get('AWS_SECRET_ACCESS_KEY')))\n"
"print('H=' + str(os.environ.get('GAIA_HUGGINGFACE_API_KEY')))\n"
)
assert "should-not-leak" not in result
assert "A=None" in result
assert "G=None" in result
assert "O=None" in result
assert "W=None" in result
assert "H=None" in result
def test_allowlisted_env_passes_through():
result = run_python(
"import os\nprint('HAS_PATH=' + str(bool(os.environ.get('PATH'))))"
)
assert "HAS_PATH=True" in result
def test_blas_thread_env_defaults_are_forced_in_sandbox(monkeypatch):
from lilith_agent.tools import python_exec as pe
for key in pe.BLAS_THREAD_ENV_DEFAULTS:
monkeypatch.delenv(key, raising=False)
env = pe._scrubbed_env()
for key, value in pe.BLAS_THREAD_ENV_DEFAULTS.items():
assert env[key] == value
def test_cwd_is_not_repo_root():
"""Subprocess runs in a scratch dir so relative-path writes cannot hit the repo."""
repo_root = str(Path(__file__).resolve().parent.parent)
result = run_python("import os\nprint('CWD=' + os.getcwd())")
cwd_lines = [ln for ln in result.splitlines() if ln.startswith("CWD=")]
assert cwd_lines, f"no CWD= line in output: {result!r}"
cwd = cwd_lines[0][len("CWD="):].strip()
assert cwd != repo_root
assert not cwd.startswith(repo_root + "/")
def test_relative_write_goes_to_scratch_not_repo():
"""A relative-path write from inside run_python must not land in the repo."""
canary = "canary-relative-write-" + os.urandom(4).hex()
# Attempt a relative write
run_python(f"open('leak.txt', 'w').write({canary!r})")
repo_root = Path(__file__).resolve().parent.parent
assert not (repo_root / "leak.txt").exists(), (
"relative-path write escaped the sandbox into the repo root"
)
def test_timeout_terminates_infinite_loop():
result = run_python("while True:\n pass", timeout=2)
assert "timed out" in result.lower()
def test_output_is_capped():
"""A runaway print loop must not blow the caller's context budget."""
# 2MB of output; cap should hold it well below that.
result = run_python("print('x' * (2 * 1024 * 1024))")
assert len(result) < 512 * 1024, f"output not capped: {len(result)} chars"
# --- Docker backend tests (mocked subprocess, no docker required) ---
def test_docker_backend_argv_contains_isolation_flags(monkeypatch):
"""The docker invocation must include every isolation flag from the design."""
from lilith_agent.tools import python_exec as pe
captured: dict = {}
class FakeProc:
def __init__(self) -> None:
self.stdout = "ok\n"
self.stderr = ""
self.returncode = 0
def fake_run(argv, **kwargs):
captured["argv"] = argv
captured["kwargs"] = kwargs
return FakeProc()
monkeypatch.setattr(pe.subprocess, "run", fake_run)
pe._run_docker_sandbox("print('hi')", timeout=30, image="lilith-pysandbox:latest")
argv = captured["argv"]
assert argv[0] == "docker"
assert argv[1] == "run"
assert "--rm" in argv
assert "--network=bridge" in argv
assert "--read-only" in argv
assert "--cap-drop=ALL" in argv
assert "--security-opt=no-new-privileges" in argv
# tmpfs mount for /sandbox, mounted mode=1777 so the non-root container user can write.
tmpfs_idx = argv.index("--tmpfs")
tmpfs_spec = argv[tmpfs_idx + 1]
assert tmpfs_spec.startswith("/sandbox")
assert "mode=1777" in tmpfs_spec
# cwd is /sandbox (the tmpfs); /scratch is a user workspace dir name and must not be used
w_idx = argv.index("-w")
assert argv[w_idx + 1] == "/sandbox"
# memory + cpu caps present
assert any(a.startswith("--memory=") for a in argv)
assert any(a.startswith("--pids-limit=") for a in argv)
# image name is the last positional before args to the entrypoint
assert "lilith-pysandbox:latest" in argv
def test_docker_backend_does_not_pass_secrets_via_env(monkeypatch):
"""We must not forward the host's env into the container."""
from lilith_agent.tools import python_exec as pe
monkeypatch.setenv("ANTHROPIC_API_KEY", "sk-should-not-leak")
captured: dict = {}
class FakeProc:
stdout = "ok\n"
stderr = ""
returncode = 0
def fake_run(argv, **kwargs):
captured["argv"] = argv
captured["kwargs"] = kwargs
return FakeProc()
monkeypatch.setattr(pe.subprocess, "run", fake_run)
pe._run_docker_sandbox("print('hi')", timeout=30, image="lilith-pysandbox:latest")
argv = captured["argv"]
# No --env / -e flag injecting the secret.
for i, a in enumerate(argv):
assert "sk-should-not-leak" not in a
if a in ("-e", "--env"):
assert "ANTHROPIC_API_KEY" not in argv[i + 1]
def test_auto_select_falls_back_to_process_when_docker_unavailable(monkeypatch):
"""`auto` mode must pick process backend if docker is not on PATH."""
from lilith_agent.tools import python_exec as pe
monkeypatch.setattr(pe, "_docker_available", lambda: False)
# Run with auto — should succeed via process fallback.
monkeypatch.setenv("LILITH_SANDBOX", "auto")
result = run_python("print('via-process')")
assert "via-process" in result
def test_force_docker_errors_clearly_when_unavailable(monkeypatch):
"""Explicit docker mode must not silently fall back — fail loudly."""
from lilith_agent.tools import python_exec as pe
monkeypatch.setattr(pe, "_docker_available", lambda: False)
monkeypatch.setenv("LILITH_SANDBOX", "docker")
result = run_python("print('should-not-run')")
assert "ERROR" in result
assert "docker" in result.lower()
def test_force_process_runs_locally_even_if_docker_present(monkeypatch):
"""Explicit process mode must not invoke docker."""
from lilith_agent.tools import python_exec as pe
called = {"docker": False}
def fake_run_docker(*a, **kw):
called["docker"] = True
return "unused"
monkeypatch.setattr(pe, "_docker_available", lambda: True)
monkeypatch.setattr(pe, "_run_docker_sandbox", fake_run_docker)
monkeypatch.setenv("LILITH_SANDBOX", "process")
result = run_python("print('local')")
assert "local" in result
assert called["docker"] is False
# --- Integration test: actually runs docker if it's available ---
@pytest.mark.skipif(
shutil.which("docker") is None or os.getenv("LILITH_SKIP_DOCKER_INTEGRATION") == "1",
reason="docker not installed or integration tests disabled",
)
def test_docker_integration_if_available(monkeypatch):
"""Smoke test: if docker is on PATH and the image exists, run a simple program.
This test is permissive: it skips if the image isn't built (common in CI).
"""
import subprocess as sp
image = "lilith-pysandbox:latest"
inspect = sp.run(
["docker", "image", "inspect", image],
capture_output=True,
)
if inspect.returncode != 0:
pytest.skip(f"docker image {image} not built; run `docker build -t {image} sandbox/`")
monkeypatch.setenv("LILITH_SANDBOX", "docker")
result = run_python("print(2 + 2)")
assert "4" in result
|