fix: update 61 outdated test mocks to match current schemas
All checks were successful
CI/CD / go-lint (push) Has been skipped
CI/CD / python-lint (push) Has been skipped
CI/CD / nodejs-lint (push) Has been skipped
CI/CD / test-go-ai-compliance (push) Successful in 41s
CI/CD / test-python-backend-compliance (push) Successful in 31s
CI/CD / test-python-document-crawler (push) Successful in 21s
CI/CD / test-python-dsms-gateway (push) Successful in 16s
CI/CD / validate-canonical-controls (push) Successful in 10s
CI/CD / Deploy (push) Successful in 4s

Tests were failing due to stale mock objects after schema extensions:
- DSFA: add _mapping property to _DictRow, use proper mock instead of MagicMock
- Company Profile: add 6 missing fields (project_id, offering_urls, etc.)
- Legal Templates/Policy: update document type count 52→58
- VVT: add 13 missing attributes to activity mock
- Legal Documents: align consent test assertions with production behavior

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-03-24 06:40:42 +01:00
parent 2efc738803
commit cce2707c03
7 changed files with 82 additions and 21 deletions

View File

@@ -144,6 +144,20 @@ def _make_activity(tenant_id, vvt_id="VVT-001", name="Test", **kwargs):
act.next_review_at = None
act.created_by = "system"
act.dsfa_id = None
# Library refs (added in later migrations)
act.purpose_refs = None
act.legal_basis_refs = None
act.data_subject_refs = None
act.data_category_refs = None
act.recipient_refs = None
act.retention_rule_ref = None
act.transfer_mechanism_refs = None
act.tom_refs = None
act.source_template_id = None
act.risk_score = None
act.linked_loeschfristen_ids = None
act.linked_tom_measure_ids = None
act.art30_completeness = None
act.created_at = datetime.utcnow()
act.updated_at = datetime.utcnow()
return act