--- phase: 1 slug: infrastructure-foundation status: compliant nyquist_compliant: true wave_0_complete: true created: 2026-05-21 last_audited: 2026-05-30 --- # Phase 1 — Validation Strategy > Per-phase validation contract for feedback sampling during execution. --- ## Test Infrastructure | Property | Value | |----------|-------| | **Framework** | pytest 8.x (asyncio_mode = auto) | | **Config file** | `backend/pytest.ini` | | **Quick run command** | `cd backend && pytest tests/test_health.py -v` | | **Full suite command** | `cd backend && pytest -v` | | **Estimated runtime** | ~40 seconds | --- ## Sampling Rate - **After every task commit:** Run `cd backend && pytest tests/test_health.py -v` - **After every plan wave:** Run `cd backend && pytest -v` - **Before `/gsd:verify-work`:** Full suite must be green - **Max feedback latency:** 30 seconds --- ## Per-Task Verification Map | Task ID | Plan | Wave | Requirement | Threat Ref | Secure Behavior | Test Type | Automated Command | File Exists | Status | |---------|------|------|-------------|------------|-----------------|-----------|-------------------|-------------|--------| | 1-01-01 | 01 | 1 | STORE-01 | — | N/A | unit | `cd backend && pytest tests/test_health.py -v` | ✅ | ✅ green | | 1-01-02 | 01 | 1 | STORE-01 | — | MinIO key never contains human filename | unit | `cd backend && pytest tests/test_storage.py::test_filename_not_in_object_key -v` | ✅ | ✅ green | | 1-02-01 | 02 | 1 | STORE-01 | — | Alembic migration creates all 11 tables | manual-only | See Manual-Only table | ✅ | manual-only | | 1-02-02 | 02 | 1 | STORE-02 | — | Object key is UUID-based, not filename | unit | `cd backend && pytest tests/test_storage.py::test_object_key_schema -v` | ✅ | ✅ green | | 1-03-01 | 03 | 2 | STORE-07 | — | No file locks; multiple workers can run concurrently | unit | `cd backend && pytest tests/test_storage.py::test_concurrent_put_objects -v` | ✅ | ✅ green | | 1-03-02 | 03 | 2 | STORE-01 | — | End-to-end confirm flow updates quota atomically | integration | `cd backend && pytest tests/test_documents.py::test_confirm_endpoint -v` | ✅ | ✅ green | *Status: ⬜ pending · ✅ green · ❌ red · ⚠️ flaky · manual-only* --- ## Wave 0 Requirements - [x] `tests/test_health.py` — probes health endpoint - [x] `tests/test_storage.py` — unit tests for StorageBackend ABC, MinIO key schema (STORE-02), concurrent ops (STORE-07) - [x] `tests/test_alembic.py` — alembic migration tests (run with live PostgreSQL via INTEGRATION=1; see Manual-Only table) - [x] `tests/test_documents.py` — async integration tests using in-memory SQLite + mocked MinIO - [x] `tests/conftest.py` — async SQLAlchemy test engine fixture (in-memory SQLite for unit tests) --- ## Manual-Only Verifications | Behavior | Requirement | Why Manual | Test Instructions | |----------|-------------|------------|-------------------| | `docker compose up` starts all services cleanly | STORE-01 | Requires Docker daemon | Run `docker compose up --build` and confirm all health checks pass in the `docker ps` output | | `alembic upgrade head` completes with no errors | STORE-01 | Requires live PostgreSQL | Run `cd backend && alembic upgrade head` against the Docker PostgreSQL instance; confirm zero errors and all tables created | | Alembic migration creates all 11 tables (test_alembic.py) | STORE-01 | `test_alembic.py` skips on SQLite due to PostgreSQL-only migration syntax; tests pass with `INTEGRATION=1` against a live PG instance | Run `cd backend && INTEGRATION=1 pytest tests/test_alembic.py -v` against Docker Compose | | Celery worker starts and processes a task | STORE-07 | Requires running Redis + worker | Trigger a document upload; confirm extraction + classification completes via Celery (check worker logs) | | Existing document upload workflow works end-to-end | STORE-01 | Full integration | Upload a PDF through the UI; confirm it appears in the document list with extracted text and AI classification | --- ## Validation Sign-Off - [x] All tasks have automated verify or manual-only justification - [x] Sampling continuity: no 3 consecutive tasks without automated verify - [x] Wave 0 covers all MISSING references - [x] No watch-mode flags - [x] Feedback latency < 30s - [x] `nyquist_compliant: true` set in frontmatter **Approval:** 2026-05-30 --- ## Validation Audit 2026-05-30 **Auditor:** gsd-nyquist-auditor (adversarial stance) **Gaps closed:** 3/3 ### Gap Resolution Summary | Gap | Task ID | Requirement | Resolution | Test Result | |-----|---------|-------------|------------|-------------| | PARTIAL — alembic tests skip on SQLite | 1-02-01 | STORE-01 | Moved to Manual-Only: tests are correct but require live PostgreSQL via `INTEGRATION=1`. Automated map updated to reflect manual-only status. | N/A (manual) | | PARTIAL — test_confirm_endpoint was xfail | 1-03-02 | STORE-01 | Fixed `api/documents.py` lines 348 and 356: `str(doc.user_id)` → `str(doc.user_id).replace("-", "")` so SQLite CHAR(32) UUID columns match. Removed `@pytest.mark.xfail` decorator. | PASSED | | MISSING — no concurrent put_object test | 1-03-01 | STORE-07 | Added `test_concurrent_put_objects` to `tests/test_storage.py`: runs two `put_object` calls via `asyncio.gather`, asserts both complete without error, return distinct keys matching STORE-02 schema, and the SDK is called exactly twice. | PASSED | ### Final Automated Test Counts (post-audit) ``` tests/test_storage.py 7 tests — 7 passed tests/test_documents.py 25 tests — 21 passed, 4 xfailed (legacy endpoints removed in Plan 03-02) tests/test_alembic.py 3 tests — 3 skipped (require live PostgreSQL; see Manual-Only table) ``` ### Commands Verified ``` python3 -m pytest tests/test_storage.py tests/test_documents.py::test_confirm_endpoint -v --tb=short # Result: 8 passed python3 -m pytest tests/ -v --tb=short -q # Result: 295 passed, 5 skipped, 21 xfailed, 2 xpassed, 1 failed (test_extract_docx — pre-existing, missing python-docx module, unrelated to Phase 1) ```