Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
+199
View File
@@ -0,0 +1,199 @@
"""Unit tests for hermes_cli.toolset_validation (see #38798).
Pure logic — the validity predicate is injected, so these tests need neither the
tool registry nor a running Hermes.
"""
import pytest
from hermes_cli.toolset_validation import validate_platform_toolsets
# A representative set of real toolset names. `hermes` is deliberately absent —
# that is the corruption #38798 reported (`hermes-cli` rewritten to `hermes`).
_KNOWN = {
"hermes-cli",
"hermes-telegram",
"hermes-discord",
"hermes-whatsapp",
"discord",
"terminal",
"web",
}
def _is_valid(name):
return name in _KNOWN
def test_38798_corruption_warns_and_suggests_correct_name():
# The exact reported shape: cli holds 'hermes' instead of 'hermes-cli'.
warnings = validate_platform_toolsets({"cli": ["hermes"]}, _is_valid)
unknown = [w for w in warnings if "unknown toolset 'hermes'" in w]
assert len(unknown) == 1
# Actionable: points at the valid name the entry should have been.
assert "did you mean 'hermes-cli'?" in unknown[0]
# And the zero-valid-toolsets safety net fires.
assert any("zero valid toolsets" in w for w in warnings)
def test_mixed_valid_and_invalid_flags_only_the_invalid():
cfg = {"cli": ["hermes-cli"], "discord": ["bogus"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
# One valid entry exists, so no zero-valid warning.
assert not any("zero valid toolsets" in w for w in warnings)
assert any(
"platform 'discord'" in w and "unknown toolset 'bogus'" in w
for w in warnings
)
assert any(
"platform 'discord'" in w and "no valid toolsets" in w
for w in warnings
)
def test_empty_list_on_a_platform_warns_even_when_others_are_valid():
# The #89050 shape: the active platform is wiped to [] while every other
# platform stays populated. The global zero-valid-toolsets net does not fire
# (telegram/discord are valid), so without a per-platform check this config
# produces no warning at all and the agent silently starts with no tools.
cfg = {
"cli": [],
"telegram": ["hermes-telegram"],
"discord": ["hermes-discord"],
}
warnings = validate_platform_toolsets(cfg, _is_valid)
empty = [w for w in warnings if "empty toolset list" in w]
assert len(empty) == 1
assert "platform 'cli'" in empty[0]
assert "no tools" in empty[0]
# Populated platforms must not be implicated.
assert "telegram" not in empty[0]
# The global net is genuinely suppressed here — the per-platform warning is
# the only thing standing between the user and a silent zero-tool agent.
assert not any("zero valid toolsets" in w for w in warnings)
def test_empty_list_warns_for_each_affected_platform():
cfg = {"cli": [], "discord": [], "telegram": ["hermes-telegram"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
empty = [w for w in warnings if "empty toolset list" in w]
assert len(empty) == 2
assert {"cli", "discord"} == {
p for p in ("cli", "discord") if any(f"platform '{p}'" in w for w in empty)
}
def test_empty_list_does_not_mask_unknown_names_on_other_platforms():
cfg = {"cli": [], "discord": ["bogus"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
assert any("empty toolset list" in w and "platform 'cli'" in w for w in warnings)
assert any("unknown toolset 'bogus'" in w for w in warnings)
# Nothing valid anywhere, so the global net still fires too.
assert any("zero valid toolsets" in w for w in warnings)
def test_null_platform_warns_even_when_others_are_valid():
# YAML's ``cli:`` parses as None. The resolver treats it as absent and uses
# the platform default, so the warning must not claim that tools disappear.
cfg = {"cli": None, "telegram": ["hermes-telegram"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
assert any(
"platform 'cli'" in w
and "null toolset value" in w
and "falling back to 'hermes-cli'" in w
for w in warnings
)
assert not any("zero valid toolsets" in w for w in warnings)
def test_null_platform_uses_canonical_default_for_alias():
cfg = {"whatsapp_cloud": None, "telegram": ["hermes-telegram"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
assert any(
"platform 'whatsapp_cloud'" in w
and "falling back to 'hermes-whatsapp'" in w
for w in warnings
)
assert not any("zero valid toolsets" in w for w in warnings)
def test_scalar_platform_value_warns_but_uses_platform_default():
cfg = {"cli": "bogus", "telegram": ["hermes-telegram"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
assert any(
"platform 'cli'" in w
and "invalid toolset value 'bogus'" in w
and "falling back to 'hermes-cli'" in w
for w in warnings
)
assert not any("zero valid toolsets" in w for w in warnings)
def test_platform_restricted_toolset_warns_when_other_platform_is_valid():
cfg = {"telegram": ["discord"], "cli": ["hermes-cli"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
assert any(
"platform 'telegram'" in w
and "toolset 'discord'" in w
and "not available" in w
for w in warnings
)
assert not any("zero valid toolsets" in w for w in warnings)
def test_null_plugin_platform_uses_synthetic_default():
from gateway.platform_registry import PlatformEntry, platform_registry
from toolsets import resolve_toolset
platform = "toolset_validation_plugin"
platform_registry.register(
PlatformEntry(
name=platform,
label="Toolset Validation Plugin",
adapter_factory=lambda _config: object(),
check_fn=lambda: True,
)
)
try:
cfg = {platform: None, "telegram": ["hermes-telegram"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
assert resolve_toolset(f"hermes-{platform}")
assert any(
f"platform '{platform}'" in w
and f"falling back to 'hermes-{platform}'" in w
for w in warnings
)
assert not any("zero valid toolsets" in w for w in warnings)
finally:
platform_registry.unregister(platform)
def test_all_invalid_platform_warns_even_when_others_are_valid():
cfg = {"cli": ["bogus"], "telegram": ["hermes-telegram"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
assert any("unknown toolset 'bogus'" in w for w in warnings)
assert any(
"platform 'cli'" in w and "no valid toolsets" in w for w in warnings
)
assert not any("zero valid toolsets" in w for w in warnings)
def test_populated_platforms_produce_no_empty_list_warning():
cfg = {"cli": ["hermes-cli"], "telegram": ["hermes-telegram"]}
warnings = validate_platform_toolsets(cfg, _is_valid)
assert warnings == []