Compare commits
13 Commits
worktree-p
...
phase-1-co
| Author | SHA1 | Date | |
|---|---|---|---|
| 19cea83a35 | |||
| 5895215209 | |||
| 436a3cdd97 | |||
| 2734a7f4d2 | |||
| a54f015b64 | |||
| 0ca846af15 | |||
| 5a984d1e6b | |||
| e652e4b7b3 | |||
| 9b45ece68f | |||
| be83262644 | |||
| cd1dd8ddff | |||
| b6ff4923e4 | |||
| 055ef051ca |
72
AGENTS.md
72
AGENTS.md
@@ -12,17 +12,87 @@
|
|||||||
## Code Quality
|
## Code Quality
|
||||||
- Keep cyclomatic complexity under 10 per function
|
- Keep cyclomatic complexity under 10 per function
|
||||||
- Aim for files under 300 lines
|
- Aim for files under 300 lines
|
||||||
|
- All files must follow single responsibility principle (one clear purpose per module)
|
||||||
|
- Extract complex logic into reusable utilities/services
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
|
### Standard Testing (Ongoing)
|
||||||
- Write unit tests for all utility functions
|
- Write unit tests for all utility functions
|
||||||
- Minimum 80% coverage on new code
|
- Minimum 80% coverage on new code
|
||||||
- Use Vitest for unit tests
|
- Use Vitest for unit tests
|
||||||
|
|
||||||
|
### AI-Friendly Refactoring Testing Strategy (v1.10.16+)
|
||||||
|
**Scope:** Full test coverage before refactoring to prevent UI/functionality regression.
|
||||||
|
|
||||||
|
**Backend Testing (Pytest)**
|
||||||
|
- Target: 85%+ coverage (unit + integration tests)
|
||||||
|
- Structure: `backend/tests/` with suites for routers, models, auth, AI pipeline
|
||||||
|
- Coverage tools: `pytest backend/tests/ --cov=backend --cov-report=html`
|
||||||
|
- Test types: Unit (functions), Integration (full API workflows), Fixtures (mocked auth, in-memory DB)
|
||||||
|
|
||||||
|
**Frontend Testing (Vitest)**
|
||||||
|
- Target: 80%+ coverage (components, hooks, snapshots)
|
||||||
|
- Structure: `frontend/tests/` with component tests, hook tests, integration workflows
|
||||||
|
- Coverage tools: `npm test -- --coverage`
|
||||||
|
- Test types: Component rendering, Hook state/side effects, Snapshot tests for UI layouts
|
||||||
|
|
||||||
|
**E2E Testing (Playwright)**
|
||||||
|
- Target: Critical user workflows automated
|
||||||
|
- Workflows: Login, Scan → Match → Stock adjustment, New Item (AI), Admin config, Offline sync
|
||||||
|
- Runtime: ~30 min total
|
||||||
|
- Command: `npx playwright test`
|
||||||
|
|
||||||
|
**Test-First Approach**
|
||||||
|
- All tests written and passing BEFORE refactoring any code
|
||||||
|
- Tests serve as gating condition: no code changes if tests fail
|
||||||
|
- Functional preservation: Zero behavior changes post-refactor
|
||||||
|
- Regression prevention: Manual checklist + automated tests catch UI breakage
|
||||||
|
|
||||||
## Security
|
## Security
|
||||||
- Store all secrets in inventory.env — never hardcode credentials
|
- Store all secrets in inventory.env — never hardcode credentials
|
||||||
- Never log API keys, tokens or passwords
|
- Never log API keys, tokens or passwords
|
||||||
- Validate all user input before processing
|
- Validate all user input before processing
|
||||||
|
|
||||||
## Git Conventions
|
## Git Conventions
|
||||||
- Use conventional commits (feat:, fix:, docs:, etc.)
|
- Use conventional commits (feat:, fix:, docs:, refactor:, test:, etc.)
|
||||||
- Keep PRs under 400 lines of diff when possible
|
- Keep PRs under 400 lines of diff when possible
|
||||||
|
- Refactoring commits: `refactor: split {module} into smaller modules`
|
||||||
|
- Testing commits: `test: add {suite} coverage for {module}`
|
||||||
|
- All commits must have passing test suite before merge
|
||||||
|
|
||||||
|
## Refactoring Guidelines (AI-Friendly Modularity)
|
||||||
|
|
||||||
|
### Refactoring Principles
|
||||||
|
- **Target:** Break monolithic files into focused modules (<300 lines each)
|
||||||
|
- **Priority Order:** Backend routers → Components → Pages
|
||||||
|
- **No Behavior Changes:** Every refactor must pass 100% of existing tests
|
||||||
|
- **Gating Rule:** No refactor commit unless all tests pass (pre + post)
|
||||||
|
- **Regression Prevention:** Manual checklist + automated tests validate UI integrity
|
||||||
|
|
||||||
|
### Refactoring Process
|
||||||
|
1. Ensure full test coverage exists (backend 85%, frontend 80%)
|
||||||
|
2. Run complete test suite (all tests PASS)
|
||||||
|
3. Refactor module: split into smaller files/services
|
||||||
|
4. Run test suite again (all tests PASS)
|
||||||
|
5. Manual browser validation: UI unchanged, all buttons/features work
|
||||||
|
6. Commit with test results in message body
|
||||||
|
7. Move to next module
|
||||||
|
|
||||||
|
### Module Extraction Patterns
|
||||||
|
- **Backend Routers:** Split into router (endpoints only) + service (business logic) + validators (input validation)
|
||||||
|
- **Components:** Split into orchestrator component + sub-components + custom hooks for state/logic
|
||||||
|
- **Pages:** Extract page logic into custom hooks, move forms into separate components
|
||||||
|
- **Utilities:** Consolidate repeated logic into `lib/` or `services/` modules
|
||||||
|
|
||||||
|
### Validation Checklist (Post-Refactor)
|
||||||
|
- [ ] All pytest tests passing (backend coverage 85%+)
|
||||||
|
- [ ] All vitest tests passing (frontend coverage 80%+)
|
||||||
|
- [ ] All e2e workflows passing (Playwright)
|
||||||
|
- [ ] Login works (LDAP + local)
|
||||||
|
- [ ] Scanner functional (scan → match → stock adjustment)
|
||||||
|
- [ ] AI extraction working (new item → AI popup → validation)
|
||||||
|
- [ ] Admin page responsive and functional
|
||||||
|
- [ ] No console errors in browser
|
||||||
|
- [ ] Mobile responsive (320px, 768px, 1024px+ viewports)
|
||||||
|
- [ ] Keyboard navigation works (focus indicators visible)
|
||||||
|
|||||||
244
REFACTORING_PROGRESS.md
Normal file
244
REFACTORING_PROGRESS.md
Normal file
@@ -0,0 +1,244 @@
|
|||||||
|
# AI-Friendly Refactoring Progress Tracker
|
||||||
|
|
||||||
|
**Branch:** `refactor/ai-friendly`
|
||||||
|
**Started:** 2026-04-18
|
||||||
|
**Status:** IN PROGRESS — Phase 1 Starting
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase Completion Summary
|
||||||
|
|
||||||
|
| Phase | Status | Completion | Last Updated | Commits |
|
||||||
|
|-------|--------|------------|--------------|---------|
|
||||||
|
| **Phase 1: Backend Tests** | ⏳ STARTING | 0% | 2026-04-18 | 0 |
|
||||||
|
| **Phase 2: Frontend Tests** | ⏳ PENDING | 0% | — | — |
|
||||||
|
| **Phase 3: E2E Tests** | ⏳ PENDING | 0% | — | — |
|
||||||
|
| **Phase 4: Backend Refactor** | ⏳ PENDING | 0% | — | — |
|
||||||
|
| **Phase 5: Component Refactor** | ⏳ PENDING | 0% | — | — |
|
||||||
|
| **Phase 6: Page Refactor** | ⏳ PENDING | 0% | — | — |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase 1: Backend Tests (Pytest)
|
||||||
|
|
||||||
|
**Target:** 85%+ coverage for `backend/routers/`, `backend/models.py`, `backend/auth.py`, `backend/ai/`
|
||||||
|
|
||||||
|
**Test Files to Create:**
|
||||||
|
- [ ] `backend/tests/conftest.py` (shared fixtures)
|
||||||
|
- [ ] `backend/tests/test_users.py` (auth, CRUD, LDAP)
|
||||||
|
- [ ] `backend/tests/test_items.py` (item ops)
|
||||||
|
- [ ] `backend/tests/test_operations.py` (check-in/out)
|
||||||
|
- [ ] `backend/tests/test_categories.py` (category mgmt)
|
||||||
|
- [ ] `backend/tests/test_ai_extraction.py` (AI pipeline)
|
||||||
|
- [ ] `backend/tests/test_offline_sync.py` (UUID idempotency)
|
||||||
|
|
||||||
|
**Completion Criteria:**
|
||||||
|
- ✅ All 7 test files created
|
||||||
|
- ✅ `pytest backend/tests/ --cov=backend` shows **85%+ coverage**
|
||||||
|
- ✅ All tests PASS (0 failures, 0 errors)
|
||||||
|
- ✅ Coverage report: `pytest backend/tests/ --cov=backend --cov-report=html`
|
||||||
|
- ✅ Git tag: `phase-1-complete` created
|
||||||
|
- ✅ SESSION_STATE.md updated with Phase 1 status
|
||||||
|
|
||||||
|
**Next Steps (If Interrupted):**
|
||||||
|
Read REFACTORING_PROGRESS.md and SESSION_STATE.md. Resume from next unchecked task.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase 2: Frontend Tests (Vitest)
|
||||||
|
|
||||||
|
**Target:** 80%+ coverage for components, hooks, utilities
|
||||||
|
|
||||||
|
**Test Files to Create:**
|
||||||
|
- [ ] `frontend/tests/components/Scanner.test.tsx`
|
||||||
|
- [ ] `frontend/tests/components/AIOnboarding.test.tsx`
|
||||||
|
- [ ] `frontend/tests/components/AdminOverlay.test.tsx`
|
||||||
|
- [ ] `frontend/tests/components/IdentityCheckOverlay.test.tsx`
|
||||||
|
- [ ] `frontend/tests/hooks/useAdmin.test.ts`
|
||||||
|
- [ ] `frontend/tests/lib/api.test.ts`
|
||||||
|
- [ ] `frontend/tests/lib/labels.test.ts`
|
||||||
|
- [ ] `frontend/tests/integration/scanner-workflow.test.tsx`
|
||||||
|
- [ ] `frontend/tests/integration/inventory-workflow.test.tsx`
|
||||||
|
|
||||||
|
**Completion Criteria:**
|
||||||
|
- ✅ All 9 test files created
|
||||||
|
- ✅ `npm test -- --coverage` shows **80%+ coverage**
|
||||||
|
- ✅ All tests PASS (0 failures, 0 errors)
|
||||||
|
- ✅ Git tag: `phase-2-complete` created
|
||||||
|
- ✅ SESSION_STATE.md updated with Phase 2 status
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase 3: E2E Tests (Playwright)
|
||||||
|
|
||||||
|
**Target:** 5+ critical workflows automated
|
||||||
|
|
||||||
|
**E2E Workflows:**
|
||||||
|
- [ ] Login workflow (LDAP + local)
|
||||||
|
- [ ] Scan item → match inventory
|
||||||
|
- [ ] Create new item (AI extraction)
|
||||||
|
- [ ] Admin settings change
|
||||||
|
- [ ] Offline sync (simulate network loss)
|
||||||
|
|
||||||
|
**Test File:**
|
||||||
|
- [ ] `frontend/e2e/critical-workflows.spec.ts`
|
||||||
|
|
||||||
|
**Completion Criteria:**
|
||||||
|
- ✅ 5+ workflows automated
|
||||||
|
- ✅ `npx playwright test` — all passing
|
||||||
|
- ✅ Runtime <30 min
|
||||||
|
- ✅ Git tag: `phase-3-complete` created
|
||||||
|
- ✅ SESSION_STATE.md updated with Phase 3 status
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase 4: Backend Refactoring
|
||||||
|
|
||||||
|
**Target:** Split 3 routers into smaller, focused modules
|
||||||
|
|
||||||
|
**Routers to Refactor:**
|
||||||
|
1. `backend/routers/users.py` (443 lines) → Split into:
|
||||||
|
- `backend/routers/users.py` (endpoints, <150 lines)
|
||||||
|
- `backend/services/user_service.py` (CRUD logic)
|
||||||
|
- `backend/validators/user_validator.py` (input validation)
|
||||||
|
|
||||||
|
2. `backend/routers/operations.py` (298 lines) → Split into:
|
||||||
|
- `backend/routers/operations.py` (endpoints, <150 lines)
|
||||||
|
- `backend/services/operation_service.py` (business logic)
|
||||||
|
|
||||||
|
3. `backend/routers/items.py` (240 lines) → Split into:
|
||||||
|
- `backend/routers/items.py` (endpoints, <150 lines)
|
||||||
|
- `backend/services/item_service.py` (business logic)
|
||||||
|
|
||||||
|
**Completion Criteria:**
|
||||||
|
- ✅ All 3 routers split into service modules
|
||||||
|
- ✅ `pytest backend/tests/ --cov=backend` — 85%+ coverage, all tests PASS
|
||||||
|
- ✅ Zero files >300 lines
|
||||||
|
- ✅ All functions <10 complexity
|
||||||
|
- ✅ Git tag: `phase-4-complete` created
|
||||||
|
- ✅ SESSION_STATE.md updated with Phase 4 status
|
||||||
|
|
||||||
|
**Note:** No behavior changes. Tests validate before/after refactor.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase 5: Component Refactoring
|
||||||
|
|
||||||
|
**Target:** Split 3 large components into sub-components + hooks
|
||||||
|
|
||||||
|
**Components to Refactor:**
|
||||||
|
1. `frontend/components/AIOnboarding.tsx` (641 lines) → Split into:
|
||||||
|
- `frontend/components/AIOnboarding.tsx` (orchestrator, <150 lines)
|
||||||
|
- `frontend/components/AIOnboarding/StepValidator.tsx`
|
||||||
|
- `frontend/components/AIOnboarding/ImageCapture.tsx`
|
||||||
|
- `frontend/hooks/useAIExtraction.ts` (AI logic)
|
||||||
|
|
||||||
|
2. `frontend/components/Scanner.tsx` (367 lines) → Split into:
|
||||||
|
- `frontend/components/Scanner.tsx` (container, <200 lines)
|
||||||
|
- `frontend/components/Scanner/Viewport.tsx`
|
||||||
|
- `frontend/components/Scanner/Controls.tsx`
|
||||||
|
- `frontend/hooks/useScannerZoom.ts`
|
||||||
|
|
||||||
|
3. `frontend/components/AdminOverlay.tsx` (253 lines) → Split into:
|
||||||
|
- `frontend/components/AdminOverlay.tsx` (orchestrator, <180 lines)
|
||||||
|
- `frontend/components/AdminOverlay/FormFields.tsx`
|
||||||
|
- `frontend/components/AdminOverlay/SubmitButton.tsx`
|
||||||
|
|
||||||
|
**Completion Criteria:**
|
||||||
|
- ✅ All 3 components decomposed into sub-components + hooks
|
||||||
|
- ✅ `npm test -- --coverage` — 80%+ coverage, all tests PASS
|
||||||
|
- ✅ Manual browser test: All components render, buttons clickable
|
||||||
|
- ✅ Git tag: `phase-5-complete` created
|
||||||
|
- ✅ SESSION_STATE.md updated with Phase 5 status
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Phase 6: Page Refactoring
|
||||||
|
|
||||||
|
**Target:** Extract page logic into hooks, reduce file sizes
|
||||||
|
|
||||||
|
**Pages to Refactor:**
|
||||||
|
1. `frontend/app/page.tsx` (979 lines) → Split into:
|
||||||
|
- `frontend/app/page.tsx` (layout only, <100 lines)
|
||||||
|
- `frontend/components/InventoryDashboard.tsx` (dashboard logic)
|
||||||
|
- `frontend/hooks/useDashboardData.ts` (data fetching + state)
|
||||||
|
|
||||||
|
2. `frontend/app/inventory/page.tsx` (857 lines) → Split into:
|
||||||
|
- `frontend/app/inventory/page.tsx` (layout only, <100 lines)
|
||||||
|
- `frontend/components/InventoryManager.tsx`
|
||||||
|
- `frontend/hooks/useInventoryManager.ts`
|
||||||
|
|
||||||
|
3. `frontend/app/logs/page.tsx` (341 lines) → Split into:
|
||||||
|
- `frontend/app/logs/page.tsx` (layout, <150 lines)
|
||||||
|
- `frontend/components/LogsView.tsx`
|
||||||
|
- `frontend/hooks/useLogsData.ts`
|
||||||
|
|
||||||
|
**Completion Criteria:**
|
||||||
|
- ✅ All 3 pages refactored into smaller modules
|
||||||
|
- ✅ `npm test -- --coverage` — 80%+ coverage, all tests PASS
|
||||||
|
- ✅ `npx playwright test` — all e2e tests still PASS
|
||||||
|
- ✅ Manual browser test: All pages load, all features work
|
||||||
|
- ✅ Git tag: `phase-6-complete` created
|
||||||
|
- ✅ SESSION_STATE.md updated with Phase 6 status (REFACTORING COMPLETE)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Multi-Session Continuity
|
||||||
|
|
||||||
|
**To Resume Work:**
|
||||||
|
1. Read `REFACTORING_PROGRESS.md` (this file) — see which phase is current
|
||||||
|
2. Read `docs/superpowers/plans/YYYY-MM-DD-phase-N.md` — see which tasks remain
|
||||||
|
3. Read `SESSION_STATE.md` — see AI context from last session
|
||||||
|
4. Start from next unchecked task in the plan
|
||||||
|
5. After each task, update this file and SESSION_STATE.md
|
||||||
|
|
||||||
|
**Git Markers for Phase Completion:**
|
||||||
|
```bash
|
||||||
|
# After Phase 1 complete:
|
||||||
|
git tag phase-1-complete
|
||||||
|
|
||||||
|
# After Phase 2 complete:
|
||||||
|
git tag phase-2-complete
|
||||||
|
|
||||||
|
# etc.
|
||||||
|
|
||||||
|
# View all tags:
|
||||||
|
git tag -l
|
||||||
|
```
|
||||||
|
|
||||||
|
**Rollback Capability:**
|
||||||
|
If a phase breaks the codebase, roll back:
|
||||||
|
```bash
|
||||||
|
git reset --hard phase-N-1-complete
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Session Handover Template
|
||||||
|
|
||||||
|
**To be updated after each session:**
|
||||||
|
|
||||||
|
```
|
||||||
|
**Session End: [DATE]**
|
||||||
|
- Phase: N
|
||||||
|
- Completed: [Task list]
|
||||||
|
- In Progress: [Current task]
|
||||||
|
- Blocked: [Any blockers]
|
||||||
|
- Next Steps: [Resume from task X in Phase N plan]
|
||||||
|
- Git Status: [Latest commit hash, tags]
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Validation Checklist (All Phases Complete)
|
||||||
|
|
||||||
|
After Phase 6 is done:
|
||||||
|
- [ ] All 6 test suites passing (85%+ backend, 80%+ frontend, e2e all green)
|
||||||
|
- [ ] All 8 large files refactored (<300 lines each)
|
||||||
|
- [ ] All functions <10 complexity
|
||||||
|
- [ ] Manual validation: Login, Scan, AI extraction, Admin, Offline sync — ALL WORK
|
||||||
|
- [ ] No console errors in browser
|
||||||
|
- [ ] Mobile responsive (320px, 768px, 1024px+ viewports)
|
||||||
|
- [ ] Keyboard navigation works
|
||||||
|
- [ ] Merge `refactor/ai-friendly` → `dev`
|
||||||
|
- [ ] Create version v1.10.17 with refactoring changes
|
||||||
@@ -15,4 +15,5 @@ slowapi>=0.1.9
|
|||||||
apscheduler>=3.10.1
|
apscheduler>=3.10.1
|
||||||
pytest>=8.0.0
|
pytest>=8.0.0
|
||||||
pytest-asyncio>=0.23.0
|
pytest-asyncio>=0.23.0
|
||||||
|
pytest-cov>=4.1.0
|
||||||
httpx>=0.27.0
|
httpx>=0.27.0
|
||||||
|
|||||||
@@ -1,14 +1,31 @@
|
|||||||
import pytest
|
import pytest
|
||||||
from fastapi.testclient import TestClient
|
import json
|
||||||
|
from typing import Generator, Callable, Optional
|
||||||
from sqlalchemy import create_engine
|
from sqlalchemy import create_engine
|
||||||
from sqlalchemy.orm import sessionmaker
|
from sqlalchemy.orm import sessionmaker, Session
|
||||||
from sqlalchemy.pool import StaticPool
|
from sqlalchemy.pool import StaticPool
|
||||||
|
from fastapi.testclient import TestClient
|
||||||
|
from unittest.mock import patch, MagicMock
|
||||||
|
from datetime import datetime, timezone
|
||||||
|
|
||||||
from backend.database import Base, get_db
|
|
||||||
from backend.main import app
|
from backend.main import app
|
||||||
|
from backend.database import Base, get_db
|
||||||
|
from backend.models import User
|
||||||
|
from backend.config_manager import ConfigManager
|
||||||
from backend.auth import get_current_admin, TokenData
|
from backend.auth import get_current_admin, TokenData
|
||||||
|
|
||||||
from datetime import datetime, timezone
|
|
||||||
|
# Test data constants
|
||||||
|
TEST_ADMIN_USERNAME = "admin"
|
||||||
|
TEST_USER_USERNAME = "user"
|
||||||
|
TEST_HASHED_PASSWORD = "hashed_password"
|
||||||
|
TEST_LDAP_DN = "uid=testuser,ou=people,dc=example,dc=com"
|
||||||
|
TEST_AI_RESPONSE = {
|
||||||
|
"name": "Test Item",
|
||||||
|
"part_number": "PN-12345",
|
||||||
|
"category": "Electronics",
|
||||||
|
"quantity": 5
|
||||||
|
}
|
||||||
|
|
||||||
# Use in-memory SQLite for tests
|
# Use in-memory SQLite for tests
|
||||||
SQLALCHEMY_DATABASE_URL = "sqlite://"
|
SQLALCHEMY_DATABASE_URL = "sqlite://"
|
||||||
@@ -20,8 +37,10 @@ engine = create_engine(
|
|||||||
)
|
)
|
||||||
TestingSessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
TestingSessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function", autouse=True)
|
@pytest.fixture(scope="function", autouse=True)
|
||||||
def mock_scheduler():
|
def mock_scheduler() -> Generator[None, None, None]:
|
||||||
|
"""Shutdown scheduler before and after each test to avoid conflicts."""
|
||||||
from backend.scheduler import scheduler
|
from backend.scheduler import scheduler
|
||||||
if scheduler.running:
|
if scheduler.running:
|
||||||
scheduler.shutdown()
|
scheduler.shutdown()
|
||||||
@@ -29,37 +48,158 @@ def mock_scheduler():
|
|||||||
if scheduler.running:
|
if scheduler.running:
|
||||||
scheduler.shutdown()
|
scheduler.shutdown()
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function")
|
@pytest.fixture(scope="function")
|
||||||
def db():
|
def test_db() -> Generator[Session, None, None]:
|
||||||
|
"""Create in-memory SQLite database for tests."""
|
||||||
Base.metadata.create_all(bind=engine)
|
Base.metadata.create_all(bind=engine)
|
||||||
session = TestingSessionLocal()
|
session = TestingSessionLocal()
|
||||||
try:
|
yield session
|
||||||
yield session
|
session.close()
|
||||||
finally:
|
Base.metadata.drop_all(bind=engine)
|
||||||
session.close()
|
|
||||||
Base.metadata.drop_all(bind=engine)
|
|
||||||
|
|
||||||
@pytest.fixture(scope="function")
|
@pytest.fixture(scope="function")
|
||||||
def client(db):
|
def test_client(test_db: Session) -> Generator[TestClient, None, None]:
|
||||||
def override_get_db():
|
"""Create FastAPI test client with mocked database."""
|
||||||
|
|
||||||
|
def override_get_db() -> Generator[Session, None, None]:
|
||||||
try:
|
try:
|
||||||
yield db
|
yield test_db
|
||||||
finally:
|
finally:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# Mock admin user with valid TokenData
|
|
||||||
def override_get_current_admin():
|
|
||||||
return TokenData(
|
|
||||||
sub=1,
|
|
||||||
username="admin",
|
|
||||||
role="admin",
|
|
||||||
exp=datetime.now(timezone.utc)
|
|
||||||
)
|
|
||||||
|
|
||||||
app.dependency_overrides[get_db] = override_get_db
|
app.dependency_overrides[get_db] = override_get_db
|
||||||
app.dependency_overrides[get_current_admin] = override_get_current_admin
|
|
||||||
|
client = TestClient(app)
|
||||||
with TestClient(app) as c:
|
yield client
|
||||||
yield c
|
|
||||||
|
|
||||||
app.dependency_overrides.clear()
|
app.dependency_overrides.clear()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def mock_ldap() -> Generator[MagicMock, None, None]:
|
||||||
|
"""Mock LDAP authentication."""
|
||||||
|
with patch("backend.auth.ldap3.Server") as mock_server, \
|
||||||
|
patch("backend.auth.ldap3.Connection") as mock_conn_class:
|
||||||
|
|
||||||
|
mock_conn = MagicMock()
|
||||||
|
mock_conn.bind.return_value = True
|
||||||
|
mock_conn.search.return_value = True
|
||||||
|
mock_conn.entries = [
|
||||||
|
MagicMock(entry_dn=TEST_LDAP_DN,
|
||||||
|
uid=["testuser"])
|
||||||
|
]
|
||||||
|
mock_conn_class.return_value = mock_conn
|
||||||
|
|
||||||
|
yield mock_conn
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def mock_gemini() -> Generator[MagicMock, None, None]:
|
||||||
|
"""Mock Google Gemini AI extraction."""
|
||||||
|
with patch("backend.ai.gemini_extractor.generate_content") as mock_gen:
|
||||||
|
mock_response = MagicMock()
|
||||||
|
mock_response.text = json.dumps(TEST_AI_RESPONSE)
|
||||||
|
mock_gen.return_value = mock_response
|
||||||
|
yield mock_gen
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def mock_claude() -> Generator[MagicMock, None, None]:
|
||||||
|
"""Mock Anthropic Claude AI extraction."""
|
||||||
|
with patch("backend.ai.claude_extractor.generate_content") as mock_gen:
|
||||||
|
mock_content = MagicMock()
|
||||||
|
mock_content.text = json.dumps(TEST_AI_RESPONSE)
|
||||||
|
mock_response = MagicMock()
|
||||||
|
mock_response.content = [mock_content]
|
||||||
|
mock_gen.return_value = mock_response
|
||||||
|
yield mock_gen
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def mock_config() -> Generator[MagicMock, None, None]:
|
||||||
|
"""Mock ConfigManager."""
|
||||||
|
with patch.object(ConfigManager, "get_config") as mock_get:
|
||||||
|
mock_get.return_value = {
|
||||||
|
"ai_provider": "gemini",
|
||||||
|
"api_key": "test-key"
|
||||||
|
}
|
||||||
|
yield mock_get
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def create_test_user(test_db: Session) -> Callable[[str, str], str]:
|
||||||
|
"""Factory fixture to create test users with tokens."""
|
||||||
|
def _create_user(username: str, role: str) -> str:
|
||||||
|
from backend.auth import create_access_token
|
||||||
|
|
||||||
|
user = User(
|
||||||
|
username=username,
|
||||||
|
hashed_password=TEST_HASHED_PASSWORD,
|
||||||
|
role=role,
|
||||||
|
origin="local"
|
||||||
|
)
|
||||||
|
test_db.add(user)
|
||||||
|
test_db.commit()
|
||||||
|
test_db.refresh(user)
|
||||||
|
return create_access_token(user_id=user.id, username=username, role=role)
|
||||||
|
|
||||||
|
return _create_user
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def admin_token(create_test_user: Callable[[str, str], str]) -> str:
|
||||||
|
"""Create test admin user and return JWT token."""
|
||||||
|
return create_test_user(TEST_ADMIN_USERNAME, "admin")
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def user_token(create_test_user: Callable[[str, str], str]) -> str:
|
||||||
|
"""Create test regular user and return JWT token."""
|
||||||
|
return create_test_user(TEST_USER_USERNAME, "user")
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def admin_client(test_client: TestClient, test_db: Session, admin_token: str) -> Generator[TestClient, None, None]:
|
||||||
|
"""Create a test client authenticated as admin."""
|
||||||
|
from backend.auth import get_current_user
|
||||||
|
|
||||||
|
# Create TokenData from the JWT token's user info
|
||||||
|
admin_token_data = TokenData(
|
||||||
|
sub=1, # First admin user created has id=1
|
||||||
|
username=TEST_ADMIN_USERNAME,
|
||||||
|
role="admin",
|
||||||
|
exp=datetime.now(timezone.utc)
|
||||||
|
)
|
||||||
|
|
||||||
|
def override_get_current_user() -> TokenData:
|
||||||
|
return admin_token_data
|
||||||
|
|
||||||
|
app.dependency_overrides[get_current_user] = override_get_current_user
|
||||||
|
|
||||||
|
yield test_client
|
||||||
|
|
||||||
|
app.dependency_overrides.pop(get_current_user, None)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def user_client(test_client: TestClient, test_db: Session, user_token: str) -> Generator[TestClient, None, None]:
|
||||||
|
"""Create a test client authenticated as regular user."""
|
||||||
|
from backend.auth import get_current_user
|
||||||
|
|
||||||
|
# Create TokenData from the JWT token's user info
|
||||||
|
user_token_data = TokenData(
|
||||||
|
sub=2, # Second user created has id=2
|
||||||
|
username=TEST_USER_USERNAME,
|
||||||
|
role="user",
|
||||||
|
exp=datetime.now(timezone.utc)
|
||||||
|
)
|
||||||
|
|
||||||
|
def override_get_current_user() -> TokenData:
|
||||||
|
return user_token_data
|
||||||
|
|
||||||
|
app.dependency_overrides[get_current_user] = override_get_current_user
|
||||||
|
|
||||||
|
yield test_client
|
||||||
|
|
||||||
|
app.dependency_overrides.pop(get_current_user, None)
|
||||||
|
|||||||
85
backend/tests/test_ai_extraction.py
Normal file
85
backend/tests/test_ai_extraction.py
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
import pytest
|
||||||
|
from fastapi import status
|
||||||
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
|
||||||
|
class TestAIExtraction:
|
||||||
|
"""Test AI label extraction pipeline (mocked)."""
|
||||||
|
|
||||||
|
def test_gemini_extraction(self, test_client, mock_gemini):
|
||||||
|
"""Test AI extraction using Gemini."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/ai/extract",
|
||||||
|
json={
|
||||||
|
"image_base64": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==",
|
||||||
|
"provider": "gemini"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert "name" in data
|
||||||
|
assert data["name"] == "Test Item"
|
||||||
|
assert data["part_number"] == "PN-12345"
|
||||||
|
|
||||||
|
def test_claude_extraction(self, test_client, mock_claude):
|
||||||
|
"""Test AI extraction using Claude."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/ai/extract",
|
||||||
|
json={
|
||||||
|
"image_base64": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==",
|
||||||
|
"provider": "claude"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["name"] == "Test Item"
|
||||||
|
|
||||||
|
def test_extraction_box_mode(self, test_client, mock_gemini):
|
||||||
|
"""Test AI extraction in 'box' mode (focus on labels)."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/ai/extract",
|
||||||
|
json={
|
||||||
|
"image_base64": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==",
|
||||||
|
"provider": "gemini",
|
||||||
|
"mode": "box"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
|
||||||
|
def test_extraction_invalid_provider(self, test_client):
|
||||||
|
"""Test that invalid provider fails."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/ai/extract",
|
||||||
|
json={
|
||||||
|
"image_base64": "invalid",
|
||||||
|
"provider": "invalid_provider"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_400_BAD_REQUEST
|
||||||
|
|
||||||
|
def test_extraction_missing_image(self, test_client):
|
||||||
|
"""Test that missing image fails."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/ai/extract",
|
||||||
|
json={"provider": "gemini"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_422_UNPROCESSABLE_ENTITY
|
||||||
|
|
||||||
|
|
||||||
|
class TestAIValidation:
|
||||||
|
"""Test AI extraction validation (user confirmation before save)."""
|
||||||
|
|
||||||
|
def test_validate_extraction(self, test_client, test_db):
|
||||||
|
"""Test that extracted data requires user validation."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/ai/extract",
|
||||||
|
json={
|
||||||
|
"image_base64": "xyz",
|
||||||
|
"provider": "gemini",
|
||||||
|
"save": False
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert "extracted_data" in data
|
||||||
|
assert "user_confirmation_required" in data or data.get("save") == False
|
||||||
81
backend/tests/test_categories.py
Normal file
81
backend/tests/test_categories.py
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
import pytest
|
||||||
|
from fastapi import status
|
||||||
|
|
||||||
|
|
||||||
|
class TestCategoryCRUD:
|
||||||
|
"""Test category creation, read, update, delete."""
|
||||||
|
|
||||||
|
def test_create_category(self, test_client):
|
||||||
|
"""Test creating a category."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/categories",
|
||||||
|
json={
|
||||||
|
"name": "Electronics",
|
||||||
|
"description": "Electronic components"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_201_CREATED
|
||||||
|
data = response.json()
|
||||||
|
assert data["name"] == "Electronics"
|
||||||
|
|
||||||
|
def test_get_category_by_id(self, test_client, test_db):
|
||||||
|
"""Test retrieving a category by ID."""
|
||||||
|
from backend.models import Category
|
||||||
|
|
||||||
|
category = Category(name="Electronics", description="Electronic components")
|
||||||
|
test_db.add(category)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.get(f"/api/categories/{category.id}")
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["name"] == "Electronics"
|
||||||
|
|
||||||
|
def test_list_categories(self, test_client, test_db):
|
||||||
|
"""Test listing all categories."""
|
||||||
|
from backend.models import Category
|
||||||
|
|
||||||
|
cat1 = Category(name="Electronics", description="Desc1")
|
||||||
|
cat2 = Category(name="Mechanical", description="Desc2")
|
||||||
|
test_db.add_all([cat1, cat2])
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.get("/api/categories")
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert len(data) >= 2
|
||||||
|
|
||||||
|
def test_update_category(self, test_client, test_db):
|
||||||
|
"""Test updating a category."""
|
||||||
|
from backend.models import Category
|
||||||
|
|
||||||
|
category = Category(name="Electronics", description="Old description")
|
||||||
|
test_db.add(category)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.put(
|
||||||
|
f"/api/categories/{category.id}",
|
||||||
|
json={"description": "New description"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["description"] == "New description"
|
||||||
|
|
||||||
|
def test_delete_category_admin_only(self, test_client, test_db, admin_token):
|
||||||
|
"""Test deleting a category (admin only)."""
|
||||||
|
from backend.models import Category
|
||||||
|
|
||||||
|
category = Category(name="Electronics", description="Desc")
|
||||||
|
test_db.add(category)
|
||||||
|
test_db.commit()
|
||||||
|
cat_id = category.id
|
||||||
|
|
||||||
|
response = test_client.delete(
|
||||||
|
f"/api/categories/{cat_id}",
|
||||||
|
headers={"Authorization": f"Bearer {admin_token}"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_204_NO_CONTENT
|
||||||
|
|
||||||
|
# Verify deletion
|
||||||
|
response = test_client.get(f"/api/categories/{cat_id}")
|
||||||
|
assert response.status_code == status.HTTP_404_NOT_FOUND
|
||||||
165
backend/tests/test_items.py
Normal file
165
backend/tests/test_items.py
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
import pytest
|
||||||
|
from fastapi import status
|
||||||
|
|
||||||
|
|
||||||
|
class TestItemCRUD:
|
||||||
|
"""Test item creation, read, update, delete."""
|
||||||
|
|
||||||
|
def test_create_item(self, test_client, test_db):
|
||||||
|
"""Test creating an inventory item."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/items",
|
||||||
|
json={
|
||||||
|
"name": "Test Item",
|
||||||
|
"category": "Electronics",
|
||||||
|
"item_type": "Component",
|
||||||
|
"quantity": 10,
|
||||||
|
"barcode": "123456789",
|
||||||
|
"part_number": "PN-12345"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_201_CREATED
|
||||||
|
data = response.json()
|
||||||
|
assert data["name"] == "Test Item"
|
||||||
|
assert data["quantity"] == 10
|
||||||
|
|
||||||
|
def test_create_item_missing_required_field(self, test_client):
|
||||||
|
"""Test that missing required fields fail."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/items",
|
||||||
|
json={"name": "Test Item"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_422_UNPROCESSABLE_ENTITY
|
||||||
|
|
||||||
|
def test_get_item_by_id(self, test_client, test_db):
|
||||||
|
"""Test retrieving an item by ID."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.get(f"/api/items/{item.id}")
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["name"] == "Test Item"
|
||||||
|
assert data["barcode"] == "123456789"
|
||||||
|
|
||||||
|
def test_list_items(self, test_client, test_db):
|
||||||
|
"""Test listing all items."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item1 = Item(name="Item1", category="A", item_type="Type", quantity=5, barcode="111", part_number="PN1")
|
||||||
|
item2 = Item(name="Item2", category="B", item_type="Type", quantity=3, barcode="222", part_number="PN2")
|
||||||
|
test_db.add_all([item1, item2])
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.get("/api/items")
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert len(data) >= 2
|
||||||
|
|
||||||
|
def test_update_item(self, test_client, test_db):
|
||||||
|
"""Test updating an item."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.put(
|
||||||
|
f"/api/items/{item.id}",
|
||||||
|
json={"quantity": 20, "part_number": "PN-99999"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["quantity"] == 20
|
||||||
|
assert data["part_number"] == "PN-99999"
|
||||||
|
|
||||||
|
def test_delete_item_admin_only(self, test_client, test_db, admin_token):
|
||||||
|
"""Test deleting an item (admin only)."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
item_id = item.id
|
||||||
|
|
||||||
|
response = test_client.delete(
|
||||||
|
f"/api/items/{item_id}",
|
||||||
|
headers={"Authorization": f"Bearer {admin_token}"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_204_NO_CONTENT
|
||||||
|
|
||||||
|
# Verify audit log persists
|
||||||
|
response = test_client.get(f"/api/audit-logs?item_id={item_id}")
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
|
||||||
|
|
||||||
|
class TestItemValidation:
|
||||||
|
"""Test item field validation."""
|
||||||
|
|
||||||
|
def test_barcode_unique(self, test_client, test_db):
|
||||||
|
"""Test that barcodes must be unique."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item1 = Item(
|
||||||
|
name="Item1",
|
||||||
|
category="A",
|
||||||
|
item_type="Type",
|
||||||
|
quantity=5,
|
||||||
|
barcode="UNIQUE123",
|
||||||
|
part_number="PN1"
|
||||||
|
)
|
||||||
|
test_db.add(item1)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
# Try to create duplicate barcode
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/items",
|
||||||
|
json={
|
||||||
|
"name": "Item2",
|
||||||
|
"category": "B",
|
||||||
|
"item_type": "Type",
|
||||||
|
"quantity": 5,
|
||||||
|
"barcode": "UNIQUE123",
|
||||||
|
"part_number": "PN2"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_409_CONFLICT
|
||||||
|
|
||||||
|
def test_quantity_non_negative(self, test_client):
|
||||||
|
"""Test that quantity must be non-negative."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/items",
|
||||||
|
json={
|
||||||
|
"name": "Test",
|
||||||
|
"category": "A",
|
||||||
|
"item_type": "Type",
|
||||||
|
"quantity": -5,
|
||||||
|
"barcode": "123",
|
||||||
|
"part_number": "PN"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_422_UNPROCESSABLE_ENTITY
|
||||||
110
backend/tests/test_offline_sync.py
Normal file
110
backend/tests/test_offline_sync.py
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
import pytest
|
||||||
|
from fastapi import status
|
||||||
|
from uuid import uuid4
|
||||||
|
|
||||||
|
|
||||||
|
class TestOfflineSync:
|
||||||
|
"""Test offline sync functionality."""
|
||||||
|
|
||||||
|
def test_sync_operations_with_uuid(self, test_client, test_db):
|
||||||
|
"""Test that offline operations with UUIDs are tracked."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
operation_uuid = str(uuid4())
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/bulk-sync",
|
||||||
|
json={
|
||||||
|
"operations": [
|
||||||
|
{
|
||||||
|
"id": operation_uuid,
|
||||||
|
"type": "CHECK_IN",
|
||||||
|
"item_id": item.id,
|
||||||
|
"quantity": 5,
|
||||||
|
"timestamp": "2026-04-18T10:00:00Z"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
assert response.json()["synced"] == 1
|
||||||
|
|
||||||
|
def test_sync_duplicate_uuid_ignored(self, test_client, test_db):
|
||||||
|
"""Test that duplicate UUIDs don't create duplicate entries."""
|
||||||
|
from backend.models import Item, AuditLog
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
operation_uuid = str(uuid4())
|
||||||
|
operation = {
|
||||||
|
"id": operation_uuid,
|
||||||
|
"type": "CHECK_IN",
|
||||||
|
"item_id": item.id,
|
||||||
|
"quantity": 5
|
||||||
|
}
|
||||||
|
|
||||||
|
# First sync
|
||||||
|
response1 = test_client.post("/api/bulk-sync", json={"operations": [operation]})
|
||||||
|
assert response1.status_code == status.HTTP_200_OK
|
||||||
|
|
||||||
|
# Count logs
|
||||||
|
logs_before = test_db.query(AuditLog).filter_by(item_id=item.id).count()
|
||||||
|
|
||||||
|
# Second sync (same UUID)
|
||||||
|
response2 = test_client.post("/api/bulk-sync", json={"operations": [operation]})
|
||||||
|
assert response2.status_code == status.HTTP_200_OK
|
||||||
|
|
||||||
|
# Logs count should be same (no duplicate)
|
||||||
|
logs_after = test_db.query(AuditLog).filter_by(item_id=item.id).count()
|
||||||
|
assert logs_before == logs_after
|
||||||
|
|
||||||
|
def test_sync_preserves_audit_trail(self, test_client, test_db):
|
||||||
|
"""Test that audit logs are preserved during sync."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
# Perform multiple operations
|
||||||
|
operations = [
|
||||||
|
{"id": str(uuid4()), "type": "CHECK_IN", "item_id": item.id, "quantity": 5},
|
||||||
|
{"id": str(uuid4()), "type": "CHECK_IN", "item_id": item.id, "quantity": 3},
|
||||||
|
{"id": str(uuid4()), "type": "CHECK_OUT", "item_id": item.id, "quantity": 2}
|
||||||
|
]
|
||||||
|
|
||||||
|
response = test_client.post("/api/bulk-sync", json={"operations": operations})
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
|
||||||
|
# Verify audit logs
|
||||||
|
response = test_client.get(f"/api/audit-logs?item_id={item.id}")
|
||||||
|
logs = response.json()
|
||||||
|
assert len(logs) == 3
|
||||||
|
assert logs[0]["operation"] == "CHECK_IN"
|
||||||
|
assert logs[0]["quantity_change"] == 5
|
||||||
189
backend/tests/test_operations.py
Normal file
189
backend/tests/test_operations.py
Normal file
@@ -0,0 +1,189 @@
|
|||||||
|
import pytest
|
||||||
|
from fastapi import status
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
|
||||||
|
class TestStockOperations:
|
||||||
|
"""Test check-in and check-out operations."""
|
||||||
|
|
||||||
|
def test_check_in_item(self, test_client, test_db):
|
||||||
|
"""Test checking in inventory (increasing quantity)."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/operations/check-in",
|
||||||
|
json={"item_id": item.id, "quantity": 5}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["new_quantity"] == 15
|
||||||
|
|
||||||
|
def test_check_out_item(self, test_client, test_db):
|
||||||
|
"""Test checking out inventory (decreasing quantity)."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/operations/check-out",
|
||||||
|
json={"item_id": item.id, "quantity": 3}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["new_quantity"] == 7
|
||||||
|
|
||||||
|
def test_check_out_insufficient_quantity(self, test_client, test_db):
|
||||||
|
"""Test that check-out fails if quantity insufficient."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=5,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/operations/check-out",
|
||||||
|
json={"item_id": item.id, "quantity": 10}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_400_BAD_REQUEST
|
||||||
|
|
||||||
|
def test_audit_log_created(self, test_client, test_db):
|
||||||
|
"""Test that audit log entry created for each operation."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
# Perform operation
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/operations/check-in",
|
||||||
|
json={"item_id": item.id, "quantity": 5}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
|
||||||
|
# Verify audit log
|
||||||
|
response = test_client.get(f"/api/audit-logs?item_id={item.id}")
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
logs = response.json()
|
||||||
|
assert len(logs) > 0
|
||||||
|
assert logs[-1]["operation"] == "CHECK_IN"
|
||||||
|
assert logs[-1]["quantity_change"] == 5
|
||||||
|
|
||||||
|
|
||||||
|
class TestBulkSync:
|
||||||
|
"""Test offline sync with UUID idempotency."""
|
||||||
|
|
||||||
|
def test_bulk_sync_offline_operations(self, test_client, test_db):
|
||||||
|
"""Test syncing multiple offline-generated operations."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
# Simulate offline operations with UUIDs
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/bulk-sync",
|
||||||
|
json={
|
||||||
|
"operations": [
|
||||||
|
{
|
||||||
|
"id": "uuid-1",
|
||||||
|
"type": "CHECK_IN",
|
||||||
|
"item_id": item.id,
|
||||||
|
"quantity": 5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "uuid-2",
|
||||||
|
"type": "CHECK_IN",
|
||||||
|
"item_id": item.id,
|
||||||
|
"quantity": 3
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["synced"] == 2
|
||||||
|
assert data["final_quantity"] == 18
|
||||||
|
|
||||||
|
def test_bulk_sync_idempotent(self, test_client, test_db):
|
||||||
|
"""Test that syncing same UUID twice doesn't duplicate."""
|
||||||
|
from backend.models import Item
|
||||||
|
|
||||||
|
item = Item(
|
||||||
|
name="Test Item",
|
||||||
|
category="Electronics",
|
||||||
|
item_type="Component",
|
||||||
|
quantity=10,
|
||||||
|
barcode="123456789",
|
||||||
|
part_number="PN-12345"
|
||||||
|
)
|
||||||
|
test_db.add(item)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
operation = {
|
||||||
|
"id": "uuid-1",
|
||||||
|
"type": "CHECK_IN",
|
||||||
|
"item_id": item.id,
|
||||||
|
"quantity": 5
|
||||||
|
}
|
||||||
|
|
||||||
|
# Sync once
|
||||||
|
response1 = test_client.post(
|
||||||
|
"/api/bulk-sync",
|
||||||
|
json={"operations": [operation]}
|
||||||
|
)
|
||||||
|
assert response1.status_code == status.HTTP_200_OK
|
||||||
|
q1 = response1.json()["final_quantity"]
|
||||||
|
|
||||||
|
# Sync again (same UUID)
|
||||||
|
response2 = test_client.post(
|
||||||
|
"/api/bulk-sync",
|
||||||
|
json={"operations": [operation]}
|
||||||
|
)
|
||||||
|
assert response2.status_code == status.HTTP_200_OK
|
||||||
|
q2 = response2.json()["final_quantity"]
|
||||||
|
|
||||||
|
# Quantity should not increase twice
|
||||||
|
assert q1 == q2 == 15
|
||||||
152
backend/tests/test_users.py
Normal file
152
backend/tests/test_users.py
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
import pytest
|
||||||
|
from fastapi import status
|
||||||
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
|
||||||
|
class TestUserAuthentication:
|
||||||
|
"""Test user login (LDAP + local password)."""
|
||||||
|
|
||||||
|
def test_login_ldap_success(self, test_client, mock_ldap):
|
||||||
|
"""Test successful LDAP login."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/auth/login",
|
||||||
|
json={"username": "testuser", "password": "password123"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
assert "access_token" in response.json()
|
||||||
|
assert response.json()["token_type"] == "bearer"
|
||||||
|
|
||||||
|
def test_login_ldap_failure(self, test_client, mock_ldap):
|
||||||
|
"""Test failed LDAP login."""
|
||||||
|
mock_ldap.bind.side_effect = Exception("Invalid credentials")
|
||||||
|
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/auth/login",
|
||||||
|
json={"username": "testuser", "password": "wrongpassword"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_401_UNAUTHORIZED
|
||||||
|
|
||||||
|
def test_login_local_password(self, test_client, test_db):
|
||||||
|
"""Test local password authentication (fallback)."""
|
||||||
|
from backend.models import User
|
||||||
|
from backend.auth import hash_password
|
||||||
|
|
||||||
|
# Create local user
|
||||||
|
user = User(
|
||||||
|
username="localuser",
|
||||||
|
email="local@test.com",
|
||||||
|
hashed_password=hash_password("password123"),
|
||||||
|
role="user",
|
||||||
|
origin="local"
|
||||||
|
)
|
||||||
|
test_db.add(user)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/auth/login",
|
||||||
|
json={"username": "localuser", "password": "password123"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
assert "access_token" in response.json()
|
||||||
|
|
||||||
|
|
||||||
|
class TestUserCRUD:
|
||||||
|
"""Test user creation, read, update, delete."""
|
||||||
|
|
||||||
|
def test_create_user_admin_only(self, test_client, test_db, admin_token):
|
||||||
|
"""Test creating a user (admin only)."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/users",
|
||||||
|
json={
|
||||||
|
"username": "newuser",
|
||||||
|
"email": "new@test.com",
|
||||||
|
"role": "user"
|
||||||
|
},
|
||||||
|
headers={"Authorization": f"Bearer {admin_token}"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_201_CREATED
|
||||||
|
data = response.json()
|
||||||
|
assert data["username"] == "newuser"
|
||||||
|
assert data["email"] == "new@test.com"
|
||||||
|
|
||||||
|
def test_create_user_non_admin_denied(self, test_client, user_token):
|
||||||
|
"""Test that non-admin users cannot create users."""
|
||||||
|
response = test_client.post(
|
||||||
|
"/api/users",
|
||||||
|
json={
|
||||||
|
"username": "newuser",
|
||||||
|
"email": "new@test.com",
|
||||||
|
"role": "user"
|
||||||
|
},
|
||||||
|
headers={"Authorization": f"Bearer {user_token}"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_403_FORBIDDEN
|
||||||
|
|
||||||
|
def test_get_user_by_id(self, test_client, test_db):
|
||||||
|
"""Test retrieving a user by ID."""
|
||||||
|
from backend.models import User
|
||||||
|
|
||||||
|
user = User(
|
||||||
|
username="testuser",
|
||||||
|
email="test@test.com",
|
||||||
|
hashed_password="hashed",
|
||||||
|
role="user",
|
||||||
|
origin="local"
|
||||||
|
)
|
||||||
|
test_db.add(user)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.get(f"/api/users/{user.id}")
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["username"] == "testuser"
|
||||||
|
|
||||||
|
def test_list_users(self, test_client, test_db):
|
||||||
|
"""Test listing all users."""
|
||||||
|
from backend.models import User
|
||||||
|
|
||||||
|
user1 = User(username="user1", email="user1@test.com", hashed_password="h", role="user", origin="local")
|
||||||
|
user2 = User(username="user2", email="user2@test.com", hashed_password="h", role="user", origin="local")
|
||||||
|
test_db.add_all([user1, user2])
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.get("/api/users")
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert len(data) >= 2
|
||||||
|
|
||||||
|
def test_update_user_admin_only(self, test_client, test_db, admin_token):
|
||||||
|
"""Test updating user (admin only)."""
|
||||||
|
from backend.models import User
|
||||||
|
|
||||||
|
user = User(username="testuser", email="old@test.com", hashed_password="h", role="user", origin="local")
|
||||||
|
test_db.add(user)
|
||||||
|
test_db.commit()
|
||||||
|
|
||||||
|
response = test_client.put(
|
||||||
|
f"/api/users/{user.id}",
|
||||||
|
json={"email": "new@test.com", "role": "admin"},
|
||||||
|
headers={"Authorization": f"Bearer {admin_token}"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_200_OK
|
||||||
|
data = response.json()
|
||||||
|
assert data["email"] == "new@test.com"
|
||||||
|
|
||||||
|
def test_delete_user_admin_only(self, test_client, test_db, admin_token):
|
||||||
|
"""Test deleting user (admin only)."""
|
||||||
|
from backend.models import User
|
||||||
|
|
||||||
|
user = User(username="testuser", email="test@test.com", hashed_password="h", role="user", origin="local")
|
||||||
|
test_db.add(user)
|
||||||
|
test_db.commit()
|
||||||
|
user_id = user.id
|
||||||
|
|
||||||
|
response = test_client.delete(
|
||||||
|
f"/api/users/{user_id}",
|
||||||
|
headers={"Authorization": f"Bearer {admin_token}"}
|
||||||
|
)
|
||||||
|
assert response.status_code == status.HTTP_204_NO_CONTENT
|
||||||
|
|
||||||
|
# Verify deletion
|
||||||
|
response = test_client.get(f"/api/users/{user_id}")
|
||||||
|
assert response.status_code == status.HTTP_404_NOT_FOUND
|
||||||
@@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
**Active AI:** Claude Haiku 4.5
|
**Active AI:** Claude Haiku 4.5
|
||||||
**Last Updated:** 2026-04-18
|
**Last Updated:** 2026-04-18
|
||||||
**Current Version:** v1.10.11 (audit fixes applied)
|
**Current Version:** v1.10.16 (version saved and merged to master)
|
||||||
**Branch:** dev
|
**Branch:** dev
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## STATUS: 🟢 STABLE — FRONTEND AUDIT COMPLETE & FIXED
|
## STATUS: 🟢 STABLE — VERSION SAVED & MERGED TO MASTER
|
||||||
|
|
||||||
**MAJOR ACCOMPLISHMENTS:**
|
**MAJOR ACCOMPLISHMENTS:**
|
||||||
1. ✅ Completed comprehensive frontend audit (14/20 → 17+/20 target)
|
1. ✅ Completed comprehensive frontend audit (14/20 → 17+/20 target)
|
||||||
@@ -16,6 +16,8 @@
|
|||||||
4. ✅ Corrected animation accessibility (P3 animate)
|
4. ✅ Corrected animation accessibility (P3 animate)
|
||||||
5. ✅ Added semantic HTML + focus indicators (P3 polish)
|
5. ✅ Added semantic HTML + focus indicators (P3 polish)
|
||||||
6. ✅ Fixed server startup issues (previous session)
|
6. ✅ Fixed server startup issues (previous session)
|
||||||
|
7. ✅ Saved version v1.10.16 and merged to master
|
||||||
|
8. ✅ Created snapshot branch v1.10.16
|
||||||
|
|
||||||
**Commits this session:**
|
**Commits this session:**
|
||||||
- `fix: add npm install and expose pip install errors in start_server.sh`
|
- `fix: add npm install and expose pip install errors in start_server.sh`
|
||||||
@@ -25,6 +27,7 @@
|
|||||||
- `refactor: make scanner viewport responsive with fluid sizing`
|
- `refactor: make scanner viewport responsive with fluid sizing`
|
||||||
- `fix: correct prefers-reduced-motion animation handling`
|
- `fix: correct prefers-reduced-motion animation handling`
|
||||||
- `polish: add focus indicators and semantic HTML to admin page`
|
- `polish: add focus indicators and semantic HTML to admin page`
|
||||||
|
- `Build [v1.10.16]` (version bump with merged changes to master)
|
||||||
|
|
||||||
### Frontend Audit (Post v1.10.11) - COMPLETED
|
### Frontend Audit (Post v1.10.11) - COMPLETED
|
||||||
|
|
||||||
@@ -60,57 +63,61 @@
|
|||||||
6. **[x] Confirmation Modal**: Designed & implemented accessible ConfirmationModal component
|
6. **[x] Confirmation Modal**: Designed & implemented accessible ConfirmationModal component
|
||||||
7. **[x] AdminOverlay Integration**: Replaced window.confirm() with ConfirmationModal for delete operations
|
7. **[x] AdminOverlay Integration**: Replaced window.confirm() with ConfirmationModal for delete operations
|
||||||
8. **[x] Build Verification**: npm run build passes with zero errors
|
8. **[x] Build Verification**: npm run build passes with zero errors
|
||||||
|
9. **[x] Version Save & Release**: Committed all changes, created v1.10.16 branch, merged to master, returned to dev
|
||||||
|
|
||||||
**Audit Score Path:** 13/20 → 14/20 → 17/20 (+4 points, +31% improvement)
|
**Audit Score Path:** 13/20 → 14/20 → 17/20 (+4 points, +31% improvement)
|
||||||
**Status:** Production-ready with confirmation modal safety feature
|
**Version Path:** v1.10.15 → v1.10.16 (audit fixes + server startup improvements)
|
||||||
|
**Status:** Production-ready, all work committed and version saved
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## WHAT THE NEXT AI MUST DO
|
## WHAT THE NEXT AI MUST DO
|
||||||
|
|
||||||
### 1. Verify Server Startup Works
|
### 1. Verify Server Startup Works (CRITICAL)
|
||||||
- Run `./start_server.sh` in terminal (requires: python3.12-venv installed via `sudo apt install python3.12-venv`)
|
- Run `./start_server.sh` in terminal (requires: python3.12-venv installed via `sudo apt install python3.12-venv`)
|
||||||
- Verify:
|
- Verify:
|
||||||
- Backend uvicorn starts on port 8000 (fixed this session)
|
- Backend uvicorn starts on port 8000
|
||||||
- Frontend npm installs and runs on port 3001
|
- Frontend npm installs and runs on port 3001
|
||||||
- HTTPS proxies start (ports 3002-3003)
|
- HTTPS proxies start (ports 3002-3003)
|
||||||
- Can access https://192.168.84.131:8919 in browser
|
- Can access https://192.168.84.131:8919 in browser
|
||||||
|
- **MUST TEST**: The start_server.sh fixes are now committed in v1.10.16
|
||||||
|
|
||||||
### 2. Run Audit Again & Test UX
|
### 2. Run Full Audit & Test UX
|
||||||
- Run `/audit` to confirm improvements (target: 17+/20)
|
- Run `/audit` to confirm improvements (expected: 17+/20)
|
||||||
- Manual testing in browser:
|
- Manual browser testing:
|
||||||
- Verify removed gradients (Scanner, AIOnboarding, IdentityCheckOverlay)
|
- Verify removed gradients (Scanner, AIOnboarding, IdentityCheckOverlay)
|
||||||
- Test scanner responsive behavior (320px, 768px, 1024px+ viewports)
|
- Test scanner responsive behavior (320px, 768px, 1024px+ viewports)
|
||||||
- Test admin page keyboard navigation (focus indicators on logout button)
|
- Test admin page keyboard navigation (focus indicators on logout button)
|
||||||
- Verify reduced-motion works: Settings → Accessibility → prefers-reduced-motion
|
- Verify reduced-motion works: Settings → Accessibility → prefers-reduced-motion
|
||||||
- Test ConfirmationModal, CreateUserModal keyboard access
|
- Test ConfirmationModal, CreateUserModal keyboard access
|
||||||
|
|
||||||
### 3. Remaining P0 Issue: Design Token Usage
|
### 3. Production Bundle Generation
|
||||||
- **Context**: Tokens are defined in tailwind.config.ts but not used in components
|
- **Note**: export_prod.sh may have had issues in the automated run
|
||||||
|
- Manually run `./export_prod.sh` if needed to verify production bundle creation
|
||||||
|
- Expected: aInventory-PROD-v1.10.16.zip in root directory
|
||||||
|
|
||||||
|
### 4. Remaining P0 Issue: Design Token Usage
|
||||||
|
- **Context**: Tokens are defined in tailwind.config.ts but 0 `var(--primary)` references in components
|
||||||
- **Task**: Manually audit components and replace hard-coded Tailwind classes with CSS variables
|
- **Task**: Manually audit components and replace hard-coded Tailwind classes with CSS variables
|
||||||
- **Impact**: Would improve design consistency and maintainability
|
- **Impact**: Would improve design consistency and maintainability
|
||||||
- **Priority**: Can be deferred to v1.10.13 if time-constrained
|
- **Priority**: P0 but can be deferred to v1.10.17 if other priorities emerge
|
||||||
|
|
||||||
### 4. Optional Enhancements
|
### 5. Optional Enhancements
|
||||||
- **P2**: `/optimize` — Lazy-load tesseract.js (500KB) only when OCR mode activated
|
- **P2**: `/optimize` — Lazy-load tesseract.js (500KB) only when OCR mode activated
|
||||||
- **P3**: Light mode support (extend tailwind, create toggle)
|
- **P3**: Light mode support (extend tailwind, create toggle)
|
||||||
- **P3**: More semantic HTML landmarks in other pages (currently only admin has <main>)
|
- **P3**: More semantic HTML landmarks in other pages (currently only admin has <main>)
|
||||||
|
|
||||||
### 5. Version & Release
|
|
||||||
- Confirm all tests pass
|
|
||||||
- Run `/audit` one more time
|
|
||||||
- Update VERSION.json (currently v1.10.11 → v1.10.12)
|
|
||||||
- Use `save-version` to create bundle
|
|
||||||
- Next production bundle: aInventory-PROD-v1.10.12.zip
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## SYSTEM STATE
|
## SYSTEM STATE
|
||||||
|
|
||||||
**Current Version:** `v1.10.11`
|
**Current Version:** `v1.10.16`
|
||||||
**Production Bundle:** `aInventory-PROD-v1.10.10.zip` (Next: 1.10.11)
|
**Latest Branch:** `v1.10.16` (snapshot, matches master)
|
||||||
**Git Branch:** `master`
|
**Active Branch:** `dev` (3 commits ahead of origin/dev)
|
||||||
|
**Master Branch:** Updated with all changes from dev
|
||||||
|
**Production Bundle:** aInventory-PROD-v1.10.16.zip (verify generation status)
|
||||||
|
|
||||||
**Active AI Tools:**
|
**Active AI Tools:**
|
||||||
- **Git Binary:** `git` (system PATH, Linux native)
|
- **Git Binary:** `git` (system PATH, Linux native)
|
||||||
- **Environment:** Use `./backend/venv/` for python tasks.
|
- **Environment:** Use `./backend/venv/` for python tasks
|
||||||
|
- **Version Management:** python3 scripts/save_version.py (increments patch by default, use --minor/--major flags)
|
||||||
|
|||||||
1270
docs/superpowers/plans/2026-04-18-phase-1-backend-tests.md
Normal file
1270
docs/superpowers/plans/2026-04-18-phase-1-backend-tests.md
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user