mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-31 06:51:29 +00:00
Remove unused imports (F401) and duplicate/shadowed import redefinitions (F811) across the codebase using ruff's safe autofixes. No behavioral changes -- imports only. - ~1400 safe autofixes applied across 644 files (net -1072 lines) - __init__.py re-exports preserved (excluded from F401 removal so public re-export surfaces stay intact) - Re-exports that are imported or monkeypatched by tests but look unused in their defining module are kept with explicit # noqa: F401 (gateway/run.py load_dotenv; run_agent re-exports from agent.message_sanitization, agent.context_compressor, agent.retry_utils, agent.prompt_builder, agent.process_bootstrap, agent.codex_responses_adapter) - Unsafe F841 (unused-variable) fixes deliberately skipped -- those can change behavior when the RHS has side effects - ruff lints remain disabled in pyproject.toml (only PLW1514 is selected); this is a one-time cleanup, not a config change Verification: - python -m compileall: clean - pytest --collect-only: all 27161 tests collect (zero import errors) - core entry points import clean (run_agent, model_tools, cli, toolsets, hermes_state, batch_runner, gateway) - static scan: every name any test imports directly from an edited module still resolves
84 lines
3.2 KiB
Python
84 lines
3.2 KiB
Python
"""Tests for is_provider_explicitly_configured()."""
|
|
|
|
import json
|
|
import pytest
|
|
|
|
|
|
def _write_config(tmp_path, config: dict) -> None:
|
|
hermes_home = tmp_path / "hermes"
|
|
hermes_home.mkdir(parents=True, exist_ok=True)
|
|
import yaml
|
|
(hermes_home / "config.yaml").write_text(yaml.dump(config))
|
|
|
|
|
|
def _write_auth_store(tmp_path, payload: dict) -> None:
|
|
hermes_home = tmp_path / "hermes"
|
|
hermes_home.mkdir(parents=True, exist_ok=True)
|
|
(hermes_home / "auth.json").write_text(json.dumps(payload, indent=2))
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _clean_anthropic_env(monkeypatch):
|
|
"""Strip Anthropic env vars so CI secrets don't leak into tests."""
|
|
for key in ("ANTHROPIC_API_KEY", "ANTHROPIC_TOKEN", "CLAUDE_CODE_OAUTH_TOKEN"):
|
|
monkeypatch.delenv(key, raising=False)
|
|
|
|
|
|
def test_returns_false_when_no_config(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / "hermes"))
|
|
(tmp_path / "hermes").mkdir(parents=True, exist_ok=True)
|
|
|
|
from hermes_cli.auth import is_provider_explicitly_configured
|
|
assert is_provider_explicitly_configured("anthropic") is False
|
|
|
|
|
|
def test_returns_true_when_active_provider_matches(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / "hermes"))
|
|
_write_auth_store(tmp_path, {
|
|
"version": 1,
|
|
"providers": {},
|
|
"active_provider": "anthropic",
|
|
})
|
|
|
|
from hermes_cli.auth import is_provider_explicitly_configured
|
|
assert is_provider_explicitly_configured("anthropic") is True
|
|
|
|
|
|
def test_returns_true_when_config_provider_matches(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / "hermes"))
|
|
_write_config(tmp_path, {"model": {"provider": "anthropic", "default": "claude-sonnet-4-6"}})
|
|
|
|
from hermes_cli.auth import is_provider_explicitly_configured
|
|
assert is_provider_explicitly_configured("anthropic") is True
|
|
|
|
|
|
def test_returns_false_when_config_provider_is_different(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / "hermes"))
|
|
_write_config(tmp_path, {"model": {"provider": "kimi-coding", "default": "kimi-k2"}})
|
|
_write_auth_store(tmp_path, {
|
|
"version": 1,
|
|
"providers": {},
|
|
"active_provider": None,
|
|
})
|
|
|
|
from hermes_cli.auth import is_provider_explicitly_configured
|
|
assert is_provider_explicitly_configured("anthropic") is False
|
|
|
|
|
|
def test_returns_true_when_anthropic_env_var_set(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / "hermes"))
|
|
monkeypatch.setenv("ANTHROPIC_API_KEY", "sk-ant-api03-realkey")
|
|
(tmp_path / "hermes").mkdir(parents=True, exist_ok=True)
|
|
|
|
from hermes_cli.auth import is_provider_explicitly_configured
|
|
assert is_provider_explicitly_configured("anthropic") is True
|
|
|
|
|
|
def test_claude_code_oauth_token_does_not_count_as_explicit(tmp_path, monkeypatch):
|
|
"""CLAUDE_CODE_OAUTH_TOKEN is set by Claude Code, not the user — must not gate."""
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path / "hermes"))
|
|
monkeypatch.setenv("CLAUDE_CODE_OAUTH_TOKEN", "sk-ant-oat01-auto-token")
|
|
(tmp_path / "hermes").mkdir(parents=True, exist_ok=True)
|
|
|
|
from hermes_cli.auth import is_provider_explicitly_configured
|
|
assert is_provider_explicitly_configured("anthropic") is False
|