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
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
102 lines
5.0 KiB
Gherkin
102 lines
5.0 KiB
Gherkin
Feature: Application Container coverage boost round 2
|
|
Exercise helper functions in container.py whose bodies remain uncovered:
|
|
- _build_repo_indexing_service (lines 201-206)
|
|
- _build_resource_registry_service (line 213-218)
|
|
- _build_namespaced_project_repo (lines 221-230)
|
|
- _resolve_auto_reindex (lines 269-278)
|
|
- _build_analyzer_registry (lines 283-287)
|
|
- _build_resource_file_watcher (lines 290-298)
|
|
- _build_session_service (lines 316-357)
|
|
|
|
Background:
|
|
Given a clean container state for r2 coverage tests
|
|
|
|
# -----------------------------------------------------------------
|
|
# _build_repo_indexing_service (lines 201-206)
|
|
# -----------------------------------------------------------------
|
|
|
|
Scenario: Build repo indexing service creates engine and sessionmaker
|
|
When r2cov- I build a repo indexing service with an in-memory database
|
|
Then r2cov- the result should be a RepoIndexingService instance
|
|
And r2cov- the service should have a session factory
|
|
|
|
# -----------------------------------------------------------------
|
|
# _build_resource_registry_service (lines 213-218)
|
|
# -----------------------------------------------------------------
|
|
|
|
Scenario: Build resource registry service creates engine and sessionmaker
|
|
When r2cov- I build a resource registry service with an in-memory database
|
|
Then r2cov- the result should be a ResourceRegistryService instance
|
|
|
|
# -----------------------------------------------------------------
|
|
# _build_namespaced_project_repo (lines 221-230)
|
|
# -----------------------------------------------------------------
|
|
|
|
Scenario: Build namespaced project repository creates engine and sessionmaker
|
|
When r2cov- I build a namespaced project repo with an in-memory database
|
|
Then r2cov- the result should be a NamespacedProjectRepository instance
|
|
|
|
# -----------------------------------------------------------------
|
|
# _resolve_auto_reindex (lines 269-278)
|
|
# -----------------------------------------------------------------
|
|
|
|
Scenario: Resolve auto-reindex returns True when config value is truthy
|
|
Given r2cov- ConfigService resolve returns a truthy value for auto-reindex
|
|
When r2cov- I call _resolve_auto_reindex
|
|
Then r2cov- the result should be True
|
|
|
|
Scenario: Resolve auto-reindex returns True when config value is None
|
|
Given r2cov- ConfigService resolve returns None for auto-reindex
|
|
When r2cov- I call _resolve_auto_reindex
|
|
Then r2cov- the result should be True
|
|
|
|
Scenario: Resolve auto-reindex returns False when config value is falsy
|
|
Given r2cov- ConfigService resolve returns a falsy value for auto-reindex
|
|
When r2cov- I call _resolve_auto_reindex
|
|
Then r2cov- the result should be False
|
|
|
|
Scenario: Resolve auto-reindex returns True when ConfigService raises an exception
|
|
Given r2cov- ConfigService raises an exception during resolve
|
|
When r2cov- I call _resolve_auto_reindex
|
|
Then r2cov- the result should be True
|
|
|
|
# -----------------------------------------------------------------
|
|
# _build_analyzer_registry (lines 283-287)
|
|
# -----------------------------------------------------------------
|
|
|
|
Scenario: Build analyzer registry creates registry with PythonAnalyzer
|
|
When r2cov- I build an analyzer registry
|
|
Then r2cov- the result should be an AnalyzerRegistry instance
|
|
And r2cov- the registry should have a PythonAnalyzer for .py files
|
|
|
|
# -----------------------------------------------------------------
|
|
# _build_resource_file_watcher (lines 290-298)
|
|
# -----------------------------------------------------------------
|
|
|
|
Scenario: Build resource file watcher with mock event bus
|
|
Given r2cov- a mock event bus for the file watcher
|
|
And r2cov- ConfigService resolve returns a truthy value for auto-reindex
|
|
When r2cov- I build a resource file watcher with the mock event bus
|
|
Then r2cov- the result should be a ResourceFileWatcher instance
|
|
And r2cov- the watcher should have auto_reindex enabled
|
|
|
|
Scenario: Build resource file watcher when auto-reindex config raises
|
|
Given r2cov- a mock event bus for the file watcher
|
|
And r2cov- ConfigService raises an exception during resolve
|
|
When r2cov- I build a resource file watcher with the mock event bus
|
|
Then r2cov- the result should be a ResourceFileWatcher instance
|
|
And r2cov- the watcher should have auto_reindex enabled
|
|
|
|
# -----------------------------------------------------------------
|
|
# _build_session_service (lines 316-357)
|
|
# -----------------------------------------------------------------
|
|
|
|
Scenario: Build session service with in-memory database and no event bus
|
|
When r2cov- I build a session service with an in-memory database and no event bus
|
|
Then r2cov- the result should be a PersistentSessionService instance
|
|
|
|
Scenario: Build session service with in-memory database and mock event bus
|
|
Given r2cov- a mock event bus for the session service
|
|
When r2cov- I build a session service with an in-memory database and the mock event bus
|
|
Then r2cov- the result should be a PersistentSessionService instance
|