save progress
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
# Messaging Valkey Transport Tests Agent Charter
|
||||
|
||||
## Mission
|
||||
- Validate Valkey transport behavior with integration coverage for queues and idempotency.
|
||||
|
||||
## Responsibilities
|
||||
- Keep tests opt-in and skip cleanly when Docker/Valkey is unavailable.
|
||||
- Ensure tests are deterministic and avoid non-ASCII output.
|
||||
|
||||
## Required Reading
|
||||
- docs/07_HIGH_LEVEL_ARCHITECTURE.md
|
||||
- docs/modules/router/architecture.md
|
||||
|
||||
## Working Directory & Scope
|
||||
- Primary: src/Router/__Tests/StellaOps.Messaging.Transport.Valkey.Tests
|
||||
- Allowed shared projects: src/Router/__Libraries/StellaOps.Messaging.Transport.Valkey
|
||||
|
||||
## Testing Expectations
|
||||
- Use the Valkey container fixture with opt-in env gating.
|
||||
- Add tests for cache, event streams, rate limiting, sorted index, and token store as needed.
|
||||
|
||||
## Working Agreement
|
||||
- Update sprint status in docs/implplan/SPRINT_*.md and local TASKS.md.
|
||||
- Keep outputs deterministic and avoid non-ASCII logs.
|
||||
@@ -0,0 +1,10 @@
|
||||
# StellaOps.Messaging.Transport.Valkey.Tests Task Board
|
||||
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| AUDIT-0384-M | DONE | Maintainability audit for Valkey transport tests. |
|
||||
| AUDIT-0384-T | DONE | Test coverage audit for Valkey transport tests. |
|
||||
| AUDIT-0384-A | DONE | Waived (test project). |
|
||||
@@ -0,0 +1,23 @@
|
||||
# Microservice SourceGen Tests Agent Charter
|
||||
|
||||
## Mission
|
||||
- Validate the source generator diagnostics and generated output.
|
||||
|
||||
## Responsibilities
|
||||
- Keep tests deterministic and compiler-independent.
|
||||
- Exercise schema generation and duplicate detection paths.
|
||||
|
||||
## Required Reading
|
||||
- docs/07_HIGH_LEVEL_ARCHITECTURE.md
|
||||
- docs/modules/platform/architecture-overview.md
|
||||
|
||||
## Working Directory & Scope
|
||||
- Primary: src/Router/__Tests/StellaOps.Microservice.SourceGen.Tests
|
||||
|
||||
## Testing Expectations
|
||||
- Cover diagnostics, schema provider output, and edge cases.
|
||||
- Avoid wall-clock or random IDs in assertions.
|
||||
|
||||
## Working Agreement
|
||||
- Update sprint status in docs/implplan/SPRINT_*.md and local TASKS.md.
|
||||
- Keep outputs deterministic and avoid non-ASCII logs.
|
||||
@@ -0,0 +1,10 @@
|
||||
# StellaOps.Microservice.SourceGen.Tests Task Board
|
||||
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| AUDIT-0391-M | DONE | Maintainability audit for StellaOps.Microservice.SourceGen.Tests. |
|
||||
| AUDIT-0391-T | DONE | Test coverage audit for StellaOps.Microservice.SourceGen.Tests. |
|
||||
| AUDIT-0391-A | DONE | Waived (test project). |
|
||||
23
src/Router/__Tests/StellaOps.Microservice.Tests/AGENTS.md
Normal file
23
src/Router/__Tests/StellaOps.Microservice.Tests/AGENTS.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Router Microservice SDK Tests Agent Charter
|
||||
|
||||
## Mission
|
||||
- Validate Router microservice SDK primitives and validation behavior.
|
||||
|
||||
## Responsibilities
|
||||
- Keep tests deterministic and minimize timing-based assertions.
|
||||
- Cover schema validation and connection manager behaviors.
|
||||
|
||||
## Required Reading
|
||||
- docs/07_HIGH_LEVEL_ARCHITECTURE.md
|
||||
- docs/modules/platform/architecture-overview.md
|
||||
|
||||
## Working Directory & Scope
|
||||
- Primary: src/Router/__Tests/StellaOps.Microservice.Tests
|
||||
|
||||
## Testing Expectations
|
||||
- Prefer deterministic inputs; avoid Task.Delay for timing checks where possible.
|
||||
- Avoid wall-clock and random IDs in assertions.
|
||||
|
||||
## Working Agreement
|
||||
- Update sprint status in docs/implplan/SPRINT_*.md and local TASKS.md.
|
||||
- Keep outputs deterministic and avoid non-ASCII logs.
|
||||
10
src/Router/__Tests/StellaOps.Microservice.Tests/TASKS.md
Normal file
10
src/Router/__Tests/StellaOps.Microservice.Tests/TASKS.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# StellaOps.Microservice.Tests (Router) Task Board
|
||||
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| AUDIT-0393-M | DONE | Maintainability audit for Router StellaOps.Microservice.Tests. |
|
||||
| AUDIT-0393-T | DONE | Test coverage audit for Router StellaOps.Microservice.Tests. |
|
||||
| AUDIT-0393-A | DONE | Waived (test project). |
|
||||
@@ -0,0 +1,24 @@
|
||||
# Messaging Testing Library Agent Charter
|
||||
|
||||
## Mission
|
||||
- Provide reusable fixtures and builders for messaging transport tests.
|
||||
|
||||
## Responsibilities
|
||||
- Keep fixtures deterministic and offline-friendly.
|
||||
- Ensure container-based fixtures have clear skip or opt-in behavior.
|
||||
|
||||
## Required Reading
|
||||
- docs/07_HIGH_LEVEL_ARCHITECTURE.md
|
||||
- docs/modules/router/architecture.md
|
||||
|
||||
## Working Directory & Scope
|
||||
- Primary: src/Router/__Tests/__Libraries/StellaOps.Messaging.Testing
|
||||
- Allowed shared projects: src/Router/__Libraries/StellaOps.Messaging.Transport.*
|
||||
|
||||
## Testing Expectations
|
||||
- Provide stable fixtures with fixed time or IDs when possible.
|
||||
- Keep tests and fixtures free of network dependencies unless explicitly required.
|
||||
|
||||
## Working Agreement
|
||||
- Update sprint status in docs/implplan/SPRINT_*.md and local TASKS.md.
|
||||
- Keep outputs deterministic and avoid non-ASCII logs.
|
||||
@@ -0,0 +1,10 @@
|
||||
# StellaOps.Messaging.Testing Task Board
|
||||
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| AUDIT-0380-M | DONE | Maintainability audit for StellaOps.Messaging.Testing. |
|
||||
| AUDIT-0380-T | DONE | Test coverage audit for StellaOps.Messaging.Testing. |
|
||||
| AUDIT-0380-A | DONE | Waived (test project). |
|
||||
Reference in New Issue
Block a user