mirror of
https://github.com/nesquena/hermes-webui.git
synced 2026-05-26 03:30:36 +00:00
31 lines
954 B
Python
31 lines
954 B
Python
"""Regression coverage for issue #2232 legacy CLI toolset aliases."""
|
|
|
|
from unittest import mock
|
|
|
|
|
|
def test_normalize_cli_toolsets_expands_legacy_hermes_alias():
|
|
from api.config import _normalize_cli_toolsets
|
|
|
|
assert _normalize_cli_toolsets(["hermes", "web"]) == [
|
|
"hermes-cli",
|
|
"hermes-api-server",
|
|
"web",
|
|
]
|
|
|
|
|
|
def test_normalize_cli_toolsets_deduplicates_expanded_aliases():
|
|
from api.config import _normalize_cli_toolsets
|
|
|
|
assert _normalize_cli_toolsets(["hermes", "hermes-cli", "hermes-api-server"]) == [
|
|
"hermes-cli",
|
|
"hermes-api-server",
|
|
]
|
|
|
|
|
|
def test_resolve_cli_toolsets_fallback_expands_legacy_hermes_alias():
|
|
import api.config as config
|
|
|
|
cfg = {"platform_toolsets": {"cli": ["hermes", "web"]}}
|
|
with mock.patch("builtins.__import__", side_effect=ImportError("no hermes cli")):
|
|
assert config._resolve_cli_toolsets(cfg) == ["hermes-cli", "hermes-api-server", "web"]
|