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
Build Skills Index / trigger-deploy (push) Waiting to run
CI / Deny unrelated histories (push) Has been skipped
CI / CI timing report (push) Blocked by required conditions
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 / All required checks pass (push) Waiting to run
59 lines
2.2 KiB
Python
59 lines
2.2 KiB
Python
"""Env integration tests — managed .env applied last with override."""
|
|
import os
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def env_homes(tmp_path, monkeypatch):
|
|
home = tmp_path / "home"
|
|
home.mkdir()
|
|
managed = tmp_path / "managed"
|
|
managed.mkdir()
|
|
monkeypatch.setenv("HERMES_MANAGED_DIR", str(managed))
|
|
from hermes_cli import managed_scope
|
|
|
|
managed_scope.invalidate_managed_cache()
|
|
return home, managed
|
|
|
|
|
|
def test_managed_env_beats_user_env(env_homes, monkeypatch):
|
|
from hermes_cli.env_loader import load_hermes_dotenv
|
|
|
|
home, managed = env_homes
|
|
(home / ".env").write_text("OPENAI_API_BASE=https://user.example/v1\n", encoding="utf-8")
|
|
(managed / ".env").write_text("OPENAI_API_BASE=https://org.example/v1\n", encoding="utf-8")
|
|
load_hermes_dotenv(hermes_home=str(home))
|
|
assert os.environ["OPENAI_API_BASE"] == "https://org.example/v1"
|
|
|
|
|
|
def test_managed_env_beats_shell(env_homes, monkeypatch):
|
|
from hermes_cli.env_loader import load_hermes_dotenv
|
|
|
|
home, managed = env_homes
|
|
monkeypatch.setenv("OPENAI_API_BASE", "https://shell.example/v1")
|
|
(managed / ".env").write_text("OPENAI_API_BASE=https://org.example/v1\n", encoding="utf-8")
|
|
load_hermes_dotenv(hermes_home=str(home))
|
|
assert os.environ["OPENAI_API_BASE"] == "https://org.example/v1"
|
|
|
|
|
|
def test_managed_env_leaves_unmanaged_keys_alone(env_homes, monkeypatch):
|
|
from hermes_cli.env_loader import load_hermes_dotenv
|
|
|
|
home, managed = env_homes
|
|
(home / ".env").write_text("USER_ONLY=keepme\n", encoding="utf-8")
|
|
(managed / ".env").write_text("OPENAI_API_BASE=https://org.example/v1\n", encoding="utf-8")
|
|
load_hermes_dotenv(hermes_home=str(home))
|
|
assert os.environ["USER_ONLY"] == "keepme"
|
|
assert os.environ["OPENAI_API_BASE"] == "https://org.example/v1"
|
|
|
|
|
|
def test_no_managed_env_is_noop(env_homes, monkeypatch):
|
|
from hermes_cli.env_loader import load_hermes_dotenv
|
|
|
|
home, managed = env_homes # managed dir exists but has no .env
|
|
monkeypatch.setenv("SOME_VALUE", "from_shell")
|
|
(home / ".env").write_text("SOME_VALUE=from_user\n", encoding="utf-8")
|
|
load_hermes_dotenv(hermes_home=str(home))
|
|
assert os.environ["SOME_VALUE"] == "from_user"
|