Files
cleveragents-core/features/tui_persona_schema_coverage.feature
freemo 051ee7c290 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

50 lines
2.4 KiB
Gherkin

Feature: TUI Persona Schema Coverage
Scenarios that exercise uncovered code paths in
cleveragents.tui.persona.schema (lines 39, 66, 68, 73-82).
Background:
Given the persona schema module is imported
# --- Validator: actor must contain "/" (line 39) ---
Scenario: Creating a Persona with an un-namespaced actor raises ValueError
When I create a Persona with actor "plain_actor"
Then tpschcov a ValueError should be raised with message containing "actor must be namespaced"
# --- Model validator: exactly one default preset (line 66) ---
Scenario: Multiple default presets raises ValueError
When I create a Persona with two default presets
Then tpschcov a ValueError should be raised with message containing "must contain exactly one default preset"
Scenario: Zero default presets when presets are provided raises ValueError
When I create a Persona with presets but no default preset
Then tpschcov a ValueError should be raised with message containing "must contain exactly one default preset"
# --- Model validator: default preset overrides must be empty (line 68) ---
Scenario: Default preset with non-empty overrides raises ValueError
When I create a Persona whose default preset has overrides
Then tpschcov a ValueError should be raised with message containing "default preset overrides must be empty"
# --- effective_arguments: no preset name returns base_arguments (lines 73-75) ---
Scenario: effective_arguments without a preset name returns base arguments
Given I have a valid Persona with base arguments
When I call effective_arguments with no preset name
Then the result should equal the base arguments
# --- effective_arguments: unknown preset name returns base_arguments (lines 76-80) ---
Scenario: effective_arguments with an unknown preset name returns base arguments
Given I have a valid Persona with base arguments
When I call effective_arguments with preset name "nonexistent"
Then the result should equal the base arguments
# --- effective_arguments: known preset merges overrides (lines 76-77, 81-82) ---
Scenario: effective_arguments with a known preset merges overrides onto base
Given I have a valid Persona with base arguments and a custom preset
When I call effective_arguments with preset name "fast"
Then the result should contain the base arguments merged with the preset overrides