mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 22:06:33 +00:00
2.2 KiB
2.2 KiB
Step 3: Blackbox Test Task Decomposition (default and tests-only modes)
Role: Professional Quality Assurance Engineer Goal: Decompose blackbox test specs into atomic, implementable task specs. Constraints: Behavioral specs only — describe what, not how. No test code.
Numbering
- In default mode: continue sequential numbering from where Step 2 left off.
- In tests-only mode: start from 02 (01 is the test infrastructure bootstrap from Step 1t).
Steps
- Read all test specs from
DOCUMENT_DIR/tests/(blackbox-tests.md,performance-tests.md,resilience-tests.md,security-tests.md,resource-limit-tests.md) - Group related test scenarios into atomic tasks (e.g., one task per test category or per component under test)
- Each task should reference the specific test scenarios it implements and the environment/test-data specs
- Dependencies:
- In default mode: blackbox test tasks depend on the component implementation tasks they exercise
- In tests-only mode: blackbox test tasks depend on the test infrastructure bootstrap task (Step 1t)
- Write each task spec using
templates/task.md - Estimate complexity per task (1, 2, 3, 5, 8 points); no task should exceed 8 points — split if it does
- Note task dependencies (referencing tracker IDs of already-created dependency tasks)
- Immediately after writing each task file: create a work item ticket under the "Blackbox Tests" epic, write the work item ticket ID and Epic ID back into the task header, then rename the file from
todo/[##]_[short_name].mdtotodo/[TRACKER-ID]_[short_name].md.
Self-verification
- Every scenario from
tests/blackbox-tests.mdis covered by a task - Every scenario from
tests/performance-tests.md,tests/resilience-tests.md,tests/security-tests.md, andtests/resource-limit-tests.mdis covered by a task - No task exceeds 8 complexity points
- Dependencies correctly reference the dependency tasks (component tasks in default mode, test infrastructure in tests-only mode)
- Every task has a work item ticket linked to the "Blackbox Tests" epic
Save action
Write each todo/[##]_[short_name].md (temporary numeric name), create work item ticket inline, then rename to todo/[TRACKER-ID]_[short_name].md.