forked from HAL9000/cleveragents-core
d430d671a0
Extended `_print_actor()` to render the full spec-required output for `agents actor add`: the Actor Added panel now includes a Type field, and three additional panels (Config, Capabilities, Tools) plus a success status line are rendered when `show_add_panels=True`. - Add `Type:` field to the Actor Added panel (from `config_blob["type"]`) - Implement Config panel: Path, Hash, Options count, Nodes count, Edges count - Implement Capabilities panel: bulleted list (rendered only when non-empty) - Implement Tools panel: Rich table with Tool, Read-Only, Safe columns (rendered only when non-empty; string tool entries default to yes/yes) - Add `✓ OK Actor added` success status line after all panels - Pass `config_path` and `show_add_panels=True` from `add()` command - Add Behave BDD scenarios covering each new panel and the success line - Add Robot Framework integration test verifying the full rich output ISSUES CLOSED: #1499
275 lines
9.6 KiB
Python
275 lines
9.6 KiB
Python
"""Step definitions for actor add rich output panels feature."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import tempfile
|
|
from pathlib import Path
|
|
from typing import Any
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
from behave import given, then, when
|
|
from typer.testing import CliRunner
|
|
|
|
from cleveragents.cli.commands.actor import app as actor_app
|
|
from cleveragents.domain.models.core.actor import Actor
|
|
|
|
|
|
def _make_actor(
|
|
*,
|
|
name: str = "local/rich-actor",
|
|
provider: str = "openai",
|
|
model: str = "gpt-4",
|
|
config: dict[str, Any] | None = None,
|
|
graph_descriptor: dict[str, Any] | None = None,
|
|
unsafe: bool = False,
|
|
is_default: bool = False,
|
|
is_built_in: bool = False,
|
|
) -> Actor:
|
|
blob = config or {}
|
|
return Actor(
|
|
id=1,
|
|
name=name,
|
|
provider=provider,
|
|
model=model,
|
|
config_blob=blob,
|
|
config_hash=Actor.compute_hash(blob),
|
|
graph_descriptor=graph_descriptor,
|
|
unsafe=unsafe,
|
|
is_built_in=is_built_in,
|
|
is_default=is_default,
|
|
)
|
|
|
|
|
|
def _register_cleanup(context: Any, path: Path) -> None:
|
|
context._cleanup_handlers.append(lambda: path.unlink(missing_ok=True))
|
|
|
|
|
|
@given("an actor add CLI runner with a typed config")
|
|
def step_impl(context: Any) -> None:
|
|
context.runner = CliRunner()
|
|
context.actor_config_data = {
|
|
"name": "local/rich-actor",
|
|
"provider": "openai",
|
|
"model": "gpt-4",
|
|
"type": "graph",
|
|
}
|
|
with tempfile.NamedTemporaryFile(
|
|
delete=False, suffix=".json", mode="w", encoding="utf-8"
|
|
) as handle:
|
|
json.dump(context.actor_config_data, handle)
|
|
handle.flush()
|
|
context.actor_config_path = Path(handle.name)
|
|
_register_cleanup(context, context.actor_config_path)
|
|
|
|
graph_descriptor = {
|
|
"nodes": [{"id": "n1"}, {"id": "n2"}, {"id": "n3"}],
|
|
"edges": [{"from": "n1", "to": "n2"}, {"from": "n2", "to": "n3"}],
|
|
}
|
|
context.mock_actor = _make_actor(
|
|
config=context.actor_config_data,
|
|
graph_descriptor=graph_descriptor,
|
|
)
|
|
|
|
|
|
@given("an actor add CLI runner with capabilities in config")
|
|
def step_impl(context: Any) -> None:
|
|
context.runner = CliRunner()
|
|
context.actor_config_data = {
|
|
"name": "local/cap-actor",
|
|
"provider": "openai",
|
|
"model": "gpt-4",
|
|
"type": "llm",
|
|
"capabilities": ["code review", "diff summarization", "lint guidance"],
|
|
}
|
|
with tempfile.NamedTemporaryFile(
|
|
delete=False, suffix=".json", mode="w", encoding="utf-8"
|
|
) as handle:
|
|
json.dump(context.actor_config_data, handle)
|
|
handle.flush()
|
|
context.actor_config_path = Path(handle.name)
|
|
_register_cleanup(context, context.actor_config_path)
|
|
context.mock_actor = _make_actor(config=context.actor_config_data)
|
|
|
|
|
|
@given("an actor add CLI runner with tools in config")
|
|
def step_impl(context: Any) -> None:
|
|
context.runner = CliRunner()
|
|
context.actor_config_data = {
|
|
"name": "local/tool-actor",
|
|
"provider": "openai",
|
|
"model": "gpt-4",
|
|
"type": "llm",
|
|
"tools": [
|
|
{"name": "read_file", "read_only": True, "safe": True},
|
|
{"name": "write_file", "read_only": False, "safe": False},
|
|
],
|
|
}
|
|
with tempfile.NamedTemporaryFile(
|
|
delete=False, suffix=".json", mode="w", encoding="utf-8"
|
|
) as handle:
|
|
json.dump(context.actor_config_data, handle)
|
|
handle.flush()
|
|
context.actor_config_path = Path(handle.name)
|
|
_register_cleanup(context, context.actor_config_path)
|
|
context.mock_actor = _make_actor(config=context.actor_config_data)
|
|
|
|
|
|
@when("I run actor add with the typed config")
|
|
def step_impl(context: Any) -> None:
|
|
with patch("cleveragents.cli.commands.actor._get_services") as mock_svc:
|
|
registry = MagicMock()
|
|
registry.upsert_actor.return_value = context.mock_actor
|
|
mock_svc.return_value = (MagicMock(), registry)
|
|
context.result = context.runner.invoke(
|
|
actor_app,
|
|
["add", "--config", str(context.actor_config_path)],
|
|
)
|
|
|
|
|
|
@when("I run actor add with the capabilities config")
|
|
def step_impl(context: Any) -> None:
|
|
with patch("cleveragents.cli.commands.actor._get_services") as mock_svc:
|
|
registry = MagicMock()
|
|
registry.upsert_actor.return_value = context.mock_actor
|
|
mock_svc.return_value = (MagicMock(), registry)
|
|
context.result = context.runner.invoke(
|
|
actor_app,
|
|
["add", "--config", str(context.actor_config_path)],
|
|
)
|
|
|
|
|
|
@when("I run actor add with the tools config")
|
|
def step_impl(context: Any) -> None:
|
|
with patch("cleveragents.cli.commands.actor._get_services") as mock_svc:
|
|
registry = MagicMock()
|
|
registry.upsert_actor.return_value = context.mock_actor
|
|
mock_svc.return_value = (MagicMock(), registry)
|
|
context.result = context.runner.invoke(
|
|
actor_app,
|
|
["add", "--config", str(context.actor_config_path)],
|
|
)
|
|
|
|
|
|
@when("I run actor add with the typed config in json format")
|
|
def step_impl(context: Any) -> None:
|
|
with patch("cleveragents.cli.commands.actor._get_services") as mock_svc:
|
|
registry = MagicMock()
|
|
registry.upsert_actor.return_value = context.mock_actor
|
|
mock_svc.return_value = (MagicMock(), registry)
|
|
context.result = context.runner.invoke(
|
|
actor_app,
|
|
["add", "--config", str(context.actor_config_path), "--format", "json"],
|
|
)
|
|
|
|
|
|
@then("the actor added panel should contain the Type field")
|
|
def step_impl(context: Any) -> None:
|
|
assert context.result.exit_code == 0, (
|
|
f"exit_code={context.result.exit_code}, output={context.result.output}"
|
|
)
|
|
assert "Type:" in context.result.output, (
|
|
f"Expected 'Type:' in output:\n{context.result.output}"
|
|
)
|
|
assert "graph" in context.result.output, (
|
|
f"Expected actor type value 'graph' in output:\n{context.result.output}"
|
|
)
|
|
|
|
|
|
@then("the output should contain a Config panel")
|
|
def step_impl(context: Any) -> None:
|
|
assert context.result.exit_code == 0, (
|
|
f"exit_code={context.result.exit_code}, output={context.result.output}"
|
|
)
|
|
assert "Config" in context.result.output, (
|
|
f"Expected 'Config' panel in output:\n{context.result.output}"
|
|
)
|
|
|
|
|
|
@then("the Config panel should show Path Hash Options Nodes and Edges")
|
|
def step_impl(context: Any) -> None:
|
|
assert context.result.exit_code == 0, (
|
|
f"exit_code={context.result.exit_code}, output={context.result.output}"
|
|
)
|
|
output = context.result.output
|
|
for field in ("Path:", "Hash:", "Options:", "Nodes:", "Edges:"):
|
|
assert field in output, f"Expected '{field}' in Config panel output:\n{output}"
|
|
|
|
|
|
@then("the output should contain a Capabilities panel with the capability list")
|
|
def step_impl(context: Any) -> None:
|
|
assert context.result.exit_code == 0, (
|
|
f"exit_code={context.result.exit_code}, output={context.result.output}"
|
|
)
|
|
output = context.result.output
|
|
assert "Capabilities" in output, (
|
|
f"Expected 'Capabilities' panel in output:\n{output}"
|
|
)
|
|
for cap in context.actor_config_data.get("capabilities", []):
|
|
assert cap in output, f"Expected capability '{cap}' in output:\n{output}"
|
|
|
|
|
|
@then("the output should contain a Tools panel with tool rows")
|
|
def step_impl(context: Any) -> None:
|
|
assert context.result.exit_code == 0, (
|
|
f"exit_code={context.result.exit_code}, output={context.result.output}"
|
|
)
|
|
output = context.result.output
|
|
assert "Tools" in output, f"Expected 'Tools' panel in output:\n{output}"
|
|
for tool_entry in context.actor_config_data.get("tools", []):
|
|
if isinstance(tool_entry, dict):
|
|
tool_name = tool_entry.get("name", "")
|
|
else:
|
|
tool_name = str(tool_entry)
|
|
assert tool_name in output, f"Expected tool '{tool_name}' in output:\n{output}"
|
|
|
|
|
|
@then("the output should end with the actor added success line")
|
|
def step_impl(context: Any) -> None:
|
|
assert context.result.exit_code == 0, (
|
|
f"exit_code={context.result.exit_code}, output={context.result.output}"
|
|
)
|
|
assert "✓ OK" in context.result.output, (
|
|
f"Expected '✓ OK' in output:\n{context.result.output}"
|
|
)
|
|
assert "Actor added" in context.result.output, (
|
|
f"Expected 'Actor added' in output:\n{context.result.output}"
|
|
)
|
|
|
|
|
|
@then("the output should not contain a Capabilities panel")
|
|
def step_impl(context: Any) -> None:
|
|
assert context.result.exit_code == 0, (
|
|
f"exit_code={context.result.exit_code}, output={context.result.output}"
|
|
)
|
|
assert "Capabilities" not in context.result.output, (
|
|
f"Did not expect 'Capabilities' panel in output:\n{context.result.output}"
|
|
)
|
|
|
|
|
|
@then("the output should not contain a Tools panel")
|
|
def step_impl(context: Any) -> None:
|
|
assert context.result.exit_code == 0, (
|
|
f"exit_code={context.result.exit_code}, output={context.result.output}"
|
|
)
|
|
assert "Tools" not in context.result.output, (
|
|
f"Did not expect 'Tools' panel in output:\n{context.result.output}"
|
|
)
|
|
|
|
|
|
@then("the output should be valid JSON without panels")
|
|
def step_impl(context: Any) -> None:
|
|
assert context.result.exit_code == 0, (
|
|
f"exit_code={context.result.exit_code}, output={context.result.output}"
|
|
)
|
|
output = context.result.output.strip()
|
|
data = json.loads(output)
|
|
assert isinstance(data, dict), f"Expected JSON object, got: {type(data)}"
|
|
assert "name" in data, f"Expected 'name' field in JSON output: {data}"
|
|
assert "Config" not in output, (
|
|
f"Did not expect 'Config' panel in JSON output:\n{output}"
|
|
)
|
|
assert "✓ OK" not in output, (
|
|
f"Did not expect success line in JSON output:\n{output}"
|
|
)
|