mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
Use providers keys as the canonical custom-provider identity while accepting legacy bare keys, display-name slugs, bare custom fallback, and doubled custom prefixes across resolution, pickers, doctor, and runtime reverse lookup. Co-authored-by: Bakhtier Sizhaev <bakhtiersizhaev@users.noreply.github.com>
121 lines
3.5 KiB
Python
121 lines
3.5 KiB
Python
"""Unit tests for find_custom_provider_identity (base_url → custom:<name>).
|
|
|
|
Reverse lookup used by tui_gateway session persistence to recover a named
|
|
``providers:`` / ``custom_providers:`` entry from the only durable fact the
|
|
session row keeps once the provider has been resolved to the literal string
|
|
"custom": the endpoint URL. See
|
|
tests/tui_gateway/test_custom_provider_session_persistence.py for the
|
|
end-to-end persist/resume round-trip.
|
|
"""
|
|
|
|
import hermes_cli.runtime_provider as rp
|
|
|
|
|
|
def test_matches_legacy_custom_providers_list(monkeypatch):
|
|
monkeypatch.setattr(
|
|
rp,
|
|
"load_config",
|
|
lambda: {
|
|
"custom_providers": [
|
|
{"name": "MiMo v2.5 Pro", "base_url": "https://api.mimo.example/v1"}
|
|
]
|
|
},
|
|
)
|
|
assert (
|
|
rp.find_custom_provider_identity("https://api.mimo.example/v1")
|
|
== "custom:mimo-v2.5-pro"
|
|
)
|
|
|
|
|
|
def test_matches_providers_dict_by_key(monkeypatch):
|
|
monkeypatch.setattr(
|
|
rp,
|
|
"load_config",
|
|
lambda: {"providers": {"local": {"api": "http://127.0.0.1:8000/v1"}}},
|
|
)
|
|
assert (
|
|
rp.find_custom_provider_identity("http://127.0.0.1:8000/v1")
|
|
== "custom:local"
|
|
)
|
|
|
|
|
|
def test_matches_providers_dict_by_stable_key_not_display_name(monkeypatch):
|
|
config = {
|
|
"providers": {
|
|
"local-127.0.0.1:8000": {
|
|
"name": "Local Ollama",
|
|
"api": "http://127.0.0.1:8000/v1",
|
|
}
|
|
}
|
|
}
|
|
monkeypatch.setattr(
|
|
rp,
|
|
"load_config",
|
|
lambda: config,
|
|
)
|
|
slug = rp.find_custom_provider_identity("http://127.0.0.1:8000/v1")
|
|
assert slug == "custom:local-127.0.0.1:8000"
|
|
|
|
entry = rp._get_named_custom_provider(slug)
|
|
assert entry is not None
|
|
assert entry["name"] == "Local Ollama"
|
|
|
|
|
|
def test_match_ignores_trailing_slash_and_case(monkeypatch):
|
|
monkeypatch.setattr(
|
|
rp,
|
|
"load_config",
|
|
lambda: {
|
|
"custom_providers": [
|
|
{"name": "local", "base_url": "http://Localhost:8000/v1/"}
|
|
]
|
|
},
|
|
)
|
|
assert (
|
|
rp.find_custom_provider_identity("http://localhost:8000/v1")
|
|
== "custom:local"
|
|
)
|
|
|
|
|
|
def test_no_match_returns_none(monkeypatch):
|
|
monkeypatch.setattr(
|
|
rp,
|
|
"load_config",
|
|
lambda: {
|
|
"custom_providers": [
|
|
{"name": "other", "base_url": "https://elsewhere.example/v1"}
|
|
]
|
|
},
|
|
)
|
|
assert rp.find_custom_provider_identity("https://api.mimo.example/v1") is None
|
|
|
|
|
|
def test_empty_base_url_returns_none(monkeypatch):
|
|
monkeypatch.setattr(
|
|
rp, "load_config", lambda: {"custom_providers": [{"name": "x"}]}
|
|
)
|
|
assert rp.find_custom_provider_identity("") is None
|
|
assert rp.find_custom_provider_identity(None) is None
|
|
|
|
|
|
def test_identity_resolves_back_through_named_lookup(monkeypatch):
|
|
"""The returned slug must be accepted by _get_named_custom_provider —
|
|
that is the whole point of persisting it."""
|
|
config = {
|
|
"custom_providers": [
|
|
{
|
|
"name": "mimo-v2.5-pro",
|
|
"base_url": "https://api.mimo.example/v1",
|
|
"api_key": "sk-entry",
|
|
}
|
|
]
|
|
}
|
|
monkeypatch.setattr(rp, "load_config", lambda: config)
|
|
|
|
slug = rp.find_custom_provider_identity("https://api.mimo.example/v1")
|
|
assert slug == "custom:mimo-v2.5-pro"
|
|
|
|
entry = rp._get_named_custom_provider(slug)
|
|
assert entry is not None
|
|
assert entry["base_url"] == "https://api.mimo.example/v1"
|
|
assert entry["api_key"] == "sk-entry"
|