Files
cleveragents-core/features/tui_commands_coverage.feature
T
freemo 051ee7c290
CI / benchmark-publish (pull_request) Has been skipped
CI / lint (pull_request) Successful in 21s
CI / quality (pull_request) Successful in 31s
CI / typecheck (pull_request) Successful in 47s
CI / security (pull_request) Successful in 52s
CI / build (pull_request) Successful in 56s
CI / e2e_tests (pull_request) Successful in 5m1s
CI / integration_tests (pull_request) Successful in 5m30s
CI / unit_tests (pull_request) Successful in 5m42s
CI / docker (pull_request) Successful in 58s
CI / coverage (pull_request) Successful in 7m35s
CI / build (push) Successful in 21s
CI / docker (push) Has been skipped
CI / benchmark-regression (pull_request) Failing after 49m24s
CI / lint (push) Successful in 22s
CI / quality (push) Successful in 39s
CI / security (push) Successful in 48s
CI / typecheck (push) Successful in 1m26s
CI / benchmark-regression (push) Has been skipped
CI / e2e_tests (push) Successful in 5m53s
CI / coverage (push) Successful in 9m4s
CI / benchmark-publish (push) Successful in 19m10s
CI / integration_tests (push) Failing after 19m18s
CI / unit_tests (push) Failing after 19m20s
test(coverage): add Behave BDD tests to improve coverage across 52 source files
Added 52 new .feature files and corresponding _steps.py files targeting
previously uncovered code paths in the following areas:

- TUI layer: app, commands, persona (state/schema/registry), widgets,
  input (shell_exec, reference_parser)
- Application services: plan lifecycle/service/executor, session,
  project, repo indexing, correction, checkpoint, actor, llm_actors,
  strategy coordinator, resource file watcher, service retry wiring
- CLI commands: session, resource, repl, plan, db, automation_profile
- Domain models: retry_policy, resource_type, cost_budget,
  docker_compose_analyzer, detail_level, _sql_string_aware,
  _postgresql_helpers
- Core: circuit_breaker, retry_service_patterns
- Infrastructure: repositories, transaction_sandbox, strategy_registry,
  plugins/loader, container
- Config: settings
- Agents: plan_generation, context_analysis, auto_debug
- A2A: facade

All new tests follow the Behave/Gherkin BDD standard. Resolved step
definition collisions with unique prefixes. Fixed Alembic fileConfig
logger disabling issue (disable_existing_loggers=False).

ISSUES CLOSED: #1068
2026-03-20 21:22:10 +00:00

86 lines
3.7 KiB
Gherkin

Feature: TUI Command Router and run_tui coverage
Exercises previously uncovered code paths in
cleveragents.tui.commands (lines 22-64).
Background:
Given the TUI commands module is imported
# ---------- TuiCommandRouter.handle() ----------
Scenario: handle returns empty command for whitespace-only input
Given a TuiCommandRouter with a mock registry and state
When I call handle with raw input " "
Then the handle result should be "Empty command"
Scenario: handle dispatches persona list command
Given a TuiCommandRouter with a mock registry and state
When I call handle with raw input "persona list"
Then the handle result should contain persona listing
Scenario: handle dispatches persona set command
Given a TuiCommandRouter with a mock registry and state that supports set
When I call handle with raw input "persona set testpersona"
Then the handle result should start with "Active persona:"
Scenario: handle dispatches session show command
Given a TuiCommandRouter with a mock registry and state
When I call handle with raw input "session show"
Then the handle result should be "Current session: test-session"
Scenario: handle returns help text
Given a TuiCommandRouter with a mock registry and state
When I call handle with raw input "help"
Then the handle result should be "Commands: /persona, /session, /help"
Scenario: handle returns unknown command for unrecognised input
Given a TuiCommandRouter with a mock registry and state
When I call handle with raw input "foobar"
Then the handle result should be "Unknown command: /foobar"
# ---------- _persona_command() ----------
Scenario: persona command with no subcommand lists personas
Given a TuiCommandRouter with a mock registry containing two personas
When I call handle with raw input "persona"
Then the handle result should be "Alice, Bob"
Scenario: persona list returns No personas when registry is empty
Given a TuiCommandRouter with an empty mock registry
When I call handle with raw input "persona list"
Then the handle result should be "No personas"
Scenario: persona set without a name returns usage
Given a TuiCommandRouter with a mock registry and state
When I call handle with raw input "persona set"
Then the handle result should be "Usage: /persona set <name>"
Scenario: persona unknown subcommand returns error
Given a TuiCommandRouter with a mock registry and state
When I call handle with raw input "persona delete all"
Then the handle result should be "Unknown persona command: delete all"
# ---------- _session_command() ----------
Scenario: session command with no subcommand shows current session
Given a TuiCommandRouter with a mock registry and state
When I call handle with raw input "session"
Then the handle result should be "Current session: test-session"
Scenario: session unknown subcommand returns error
Given a TuiCommandRouter with a mock registry and state
When I call handle with raw input "session reset abc"
Then the handle result should be "Unknown session command: reset abc"
# ---------- run_tui() ----------
Scenario: run_tui headless mode prints JSON payload and returns zero
When I call run_tui in headless mode with mocked dependencies
Then the run_tui return code should be 0
And the printed JSON should contain textual_available key
And the printed JSON should contain help key
Scenario: run_tui non-headless mode creates app and returns zero
When I call run_tui in non-headless mode with mocked dependencies
Then the run_tui return code should be 0
And the mocked app run method should have been called