mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
Systematic prune per AGENTS.md test policy, one pass over every major test tree (gateway, hermes_cli, tools, agent, run_agent, plugins, cli, cron, tui_gateway, honcho/openviking, root-level): - DELETE: source-reading tests (read_text/getsource on prod files), change-detector tests (exact catalog counts, model-name snapshots, config version literals), mock-echo tests (assert a mock returns what it was told), assertion-free/trivial tests, near-duplicate parametrizations (boundaries + one representative kept), async/sync twin duplicates, cosmetic within-file variations. - KEEP (mandatory): security/redaction/approval guards, message-role alternation invariants, prompt-caching/deterministic-call-id invariants, issue-number regression tests (deduped), E2E tests. - 6 test files deleted outright (script-style/no-assert or fully redundant); conftest.py, fakes/, fixtures/ untouched. - tests/acp/conftest.py added: autouse fixture stubs the live models.dev/GitHub/Copilot/Anthropic inventory fetches that ACP server tests performed on every session create — test_server.py 147s → 3.4s, and the tests are now genuinely hermetic. - Sleep-based slowness shrunk where safe (codex_ttfb_watchdog, compression_concurrent_fork, etc.); no wall-clock assertion tightened. Verification: full hermetic suite via scripts/run_tests.sh — 2439 files, 31,130 tests passed, 0 failed, 0 flaky retries, 315s wall (baseline: 583s wall, 13,564s subprocess CPU).
178 lines
6.7 KiB
Python
178 lines
6.7 KiB
Python
"""Unit tests for the Z.AI / GLM provider profile's reasoning wiring.
|
|
|
|
Z.AI's GLM-4.5-and-later chat models default to thinking-mode ON when the
|
|
request omits ``thinking``. Before the profile emitted the parameter,
|
|
``reasoning_config = {"enabled": False}`` was a silent no-op on the direct
|
|
Z.AI route — users who turned thinking off kept burning thinking tokens on
|
|
every turn (the desktop "thinking reverts to medium" report).
|
|
|
|
GLM-5.2 additionally exposes a native ``reasoning_effort`` knob with two
|
|
enabled levels (high / max) on the OpenAI-compatible ``/api/paas/v4``
|
|
endpoint; the Hermes effort scale is collapsed onto those.
|
|
|
|
These tests pin the profile's wire-shape contract so Z.AI requests stay
|
|
correctly shaped without going live.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def zai_profile():
|
|
"""Resolve the registered Z.AI profile through the real discovery path."""
|
|
# ``model_tools`` triggers plugin discovery on import, which is what
|
|
# registers the Z.AI profile in the global provider registry.
|
|
import model_tools # noqa: F401
|
|
import providers
|
|
|
|
profile = providers.get_provider_profile("zai")
|
|
assert profile is not None, "zai provider profile must be registered"
|
|
return profile
|
|
|
|
|
|
class TestZaiThinkingWireShape:
|
|
"""``build_api_kwargs_extras`` produces Z.AI's exact wire format."""
|
|
|
|
def test_no_preference_omits_thinking(self, zai_profile):
|
|
"""No reasoning_config → omit ``thinking`` so the server default
|
|
applies (matches prior behavior for users with no preference)."""
|
|
extra_body, top_level = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config=None, model="glm-5"
|
|
)
|
|
assert extra_body == {}
|
|
assert top_level == {}
|
|
|
|
def test_enabled_sends_enabled_marker(self, zai_profile):
|
|
extra_body, top_level = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config={"enabled": True, "effort": "medium"}, model="glm-5"
|
|
)
|
|
assert extra_body == {"thinking": {"type": "enabled"}}
|
|
assert top_level == {}
|
|
|
|
def test_explicitly_disabled_sends_disabled_marker(self, zai_profile):
|
|
"""``reasoning_config.enabled=False`` → ``thinking.type=disabled``.
|
|
|
|
The crucial bit is that the parameter is *sent* at all — GLM defaults
|
|
to thinking-on when ``thinking`` is absent, so an unsent disable
|
|
burns thinking tokens forever.
|
|
"""
|
|
extra_body, top_level = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config={"enabled": False}, model="glm-5"
|
|
)
|
|
assert extra_body == {"thinking": {"type": "disabled"}}
|
|
assert top_level == {}
|
|
|
|
|
|
class TestZaiGLM52ReasoningEffort:
|
|
"""GLM-5.2's native ``reasoning_effort`` knob (two enabled levels)."""
|
|
|
|
def test_high_maps_to_high(self, zai_profile):
|
|
extra_body, top_level = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config={"enabled": True, "effort": "high"},
|
|
model="glm-5.2",
|
|
)
|
|
assert extra_body == {"thinking": {"type": "enabled"}}
|
|
assert top_level == {"reasoning_effort": "high"}
|
|
|
|
@pytest.mark.parametrize("effort", ["low", "medium", "minimal"])
|
|
def test_lower_efforts_clamp_up_to_high(self, zai_profile, effort):
|
|
"""GLM-5.2's minimum thinking level is high — lower Hermes levels
|
|
clamp onto it."""
|
|
extra_body, top_level = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config={"enabled": True, "effort": effort},
|
|
model="glm-5.2",
|
|
)
|
|
assert extra_body == {"thinking": {"type": "enabled"}}
|
|
assert top_level == {"reasoning_effort": "high"}
|
|
|
|
@pytest.mark.parametrize("effort", ["xhigh", "max"])
|
|
def test_strong_efforts_map_to_max(self, zai_profile, effort):
|
|
extra_body, top_level = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config={"enabled": True, "effort": effort},
|
|
model="glm-5.2",
|
|
)
|
|
assert extra_body == {"thinking": {"type": "enabled"}}
|
|
assert top_level == {"reasoning_effort": "max"}
|
|
|
|
def test_disabled_sends_no_effort(self, zai_profile):
|
|
"""Disabled reasoning still sends the thinking-off marker but never
|
|
an effort level."""
|
|
extra_body, top_level = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config={"enabled": False, "effort": "high"},
|
|
model="glm-5.2",
|
|
)
|
|
assert extra_body == {"thinking": {"type": "disabled"}}
|
|
assert top_level == {}
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
"z-ai/glm-5.2",
|
|
"glm-5-2",
|
|
"glm-5p2",
|
|
"accounts/fireworks/models/glm-5p2",
|
|
"zai-org-glm-5-2",
|
|
],
|
|
)
|
|
def test_alias_spellings_recognized(self, zai_profile, model):
|
|
_, top_level = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config={"enabled": True, "effort": "max"},
|
|
model=model,
|
|
)
|
|
assert top_level == {"reasoning_effort": "max"}
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
["glm-5.1", "glm-5", "glm-4.7", "glm-4-9b", "", None],
|
|
)
|
|
def test_non_glm_5_2_models_get_no_effort(self, zai_profile, model):
|
|
_, top_level = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config={"enabled": True, "effort": "high"},
|
|
model=model,
|
|
)
|
|
assert top_level == {}
|
|
|
|
|
|
class TestZaiModelGating:
|
|
"""GLM 4.5+ get thinking; earlier GLM models are left untouched."""
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
"glm-4.5",
|
|
"glm-4.5-air",
|
|
"glm-4.5-flash",
|
|
"glm-4.6",
|
|
"glm-5",
|
|
"glm-5.2",
|
|
"GLM-5", # case-insensitive
|
|
],
|
|
)
|
|
def test_thinking_capable_models_emit_thinking(self, zai_profile, model):
|
|
extra_body, _ = zai_profile.build_api_kwargs_extras(
|
|
reasoning_config={"enabled": False}, model=model
|
|
)
|
|
assert extra_body == {"thinking": {"type": "disabled"}}
|
|
|
|
|
|
class TestZaiFullKwargsIntegration:
|
|
"""End-to-end: the transport's full kwargs carry the reasoning wiring."""
|
|
|
|
|
|
def test_glm_5_2_effort_reaches_top_level(self, zai_profile):
|
|
from agent.transports.chat_completions import ChatCompletionsTransport
|
|
|
|
kwargs = ChatCompletionsTransport().build_kwargs(
|
|
model="glm-5.2",
|
|
messages=[{"role": "user", "content": "ping"}],
|
|
tools=None,
|
|
provider_profile=zai_profile,
|
|
reasoning_config={"enabled": True, "effort": "max"},
|
|
base_url="https://api.z.ai/api/paas/v4",
|
|
provider_name="zai",
|
|
)
|
|
assert kwargs["reasoning_effort"] == "max"
|
|
assert kwargs["extra_body"]["thinking"] == {"type": "enabled"}
|