b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
124 lines
3.3 KiB
Python
124 lines
3.3 KiB
Python
"""Unit tests for extracted subcommand parser builders (profile, gateway).
|
|
|
|
Confirms the builders attach the same subactions and ``func=`` dispatch that
|
|
lived inline in ``main()`` before the god-file Phase 2 extraction.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import argparse
|
|
|
|
from hermes_cli.subcommands.gateway import build_gateway_parser
|
|
from hermes_cli.subcommands.profile import build_profile_parser
|
|
|
|
|
|
def _h_gateway(args): # pragma: no cover - identity only
|
|
return "gateway"
|
|
|
|
|
|
def _h_proxy(args): # pragma: no cover - identity only
|
|
return "proxy"
|
|
|
|
|
|
def _h_gateway_enroll(args): # pragma: no cover - identity only
|
|
return "gateway_enroll"
|
|
|
|
|
|
def _h_profile(args): # pragma: no cover - identity only
|
|
return "profile"
|
|
|
|
|
|
def _profile_parser():
|
|
p = argparse.ArgumentParser(prog="hermes")
|
|
sub = p.add_subparsers(dest="command")
|
|
build_profile_parser(sub, cmd_profile=_h_profile)
|
|
return p
|
|
|
|
|
|
def _gateway_parser():
|
|
p = argparse.ArgumentParser(prog="hermes")
|
|
sub = p.add_subparsers(dest="command")
|
|
build_gateway_parser(
|
|
sub,
|
|
cmd_gateway=_h_gateway,
|
|
cmd_proxy=_h_proxy,
|
|
cmd_gateway_enroll=_h_gateway_enroll,
|
|
)
|
|
return p
|
|
|
|
|
|
def test_profile_subactions_and_dispatch():
|
|
p = _profile_parser()
|
|
ns = p.parse_args(["profile", "list"])
|
|
assert ns.command == "profile"
|
|
assert ns.profile_action == "list"
|
|
assert ns.func is _h_profile
|
|
# a representative arg-taking subaction
|
|
ns2 = p.parse_args(["profile", "show", "work"])
|
|
assert ns2.profile_action == "show"
|
|
|
|
|
|
def test_profile_has_expected_actions():
|
|
p = _profile_parser()
|
|
# Map each subaction to a minimal valid argv suffix.
|
|
cases = {
|
|
"list": [],
|
|
"use": ["work"],
|
|
"create": ["work"],
|
|
"delete": ["work"],
|
|
"show": ["work"],
|
|
"rename": ["old", "new"],
|
|
"export": ["work"],
|
|
"import": ["/tmp/x.zip"],
|
|
}
|
|
for action, extra in cases.items():
|
|
ns = p.parse_args(["profile", action, *extra])
|
|
assert ns.profile_action == action
|
|
|
|
|
|
def test_gateway_and_proxy_dispatch():
|
|
p = _gateway_parser()
|
|
gw = p.parse_args(["gateway", "run"])
|
|
assert gw.command == "gateway"
|
|
assert gw.func is _h_gateway
|
|
px = p.parse_args(["proxy"])
|
|
assert px.command == "proxy"
|
|
assert px.func is _h_proxy
|
|
|
|
|
|
def test_gateway_accept_hooks_flag():
|
|
p = _gateway_parser()
|
|
ns = p.parse_args(["gateway", "run", "--accept-hooks"])
|
|
assert ns.accept_hooks is True
|
|
|
|
|
|
def test_gateway_lifecycle_accepts_legacy_platform_flag():
|
|
p = _gateway_parser()
|
|
for action in ("start", "restart", "status"):
|
|
ns = p.parse_args(["gateway", action, "--platform", "photon"])
|
|
assert ns.gateway_command == action
|
|
assert ns.platform == "photon"
|
|
assert ns.func is _h_gateway
|
|
|
|
|
|
def test_gateway_enroll_dispatch():
|
|
p = _gateway_parser()
|
|
ns = p.parse_args(
|
|
[
|
|
"gateway",
|
|
"enroll",
|
|
"--token",
|
|
"tok",
|
|
"--connector-url",
|
|
"wss://connector.example.com/relay",
|
|
"--gateway-id",
|
|
"gw-1",
|
|
]
|
|
)
|
|
assert ns.command == "gateway"
|
|
assert ns.gateway_command == "enroll"
|
|
assert ns.func is _h_gateway_enroll
|
|
assert ns.token == "tok"
|
|
assert ns.connector_url == "wss://connector.example.com/relay"
|
|
assert ns.gateway_id == "gw-1"
|