Some checks failed
CI/CD Pipeline / Generate SBOM (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Code Quality & Linting (push) Has been cancelled
CI/CD Pipeline / Policy Validation (push) Has been cancelled
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-coverage) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-extract) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-firm-connectors) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-forms) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-hmrc) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-ingestion) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-kg) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-normalize-map) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-ocr) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-rag-indexer) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-rag-retriever) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-reason) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-rpa) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (ui-review) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-coverage) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-extract) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-kg) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-rag-retriever) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (ui-review) (push) Has been cancelled
CI/CD Pipeline / Notifications (push) Has been cancelled
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
import pytest
|
|
|
|
from libs.events import EventTopics
|
|
from libs.schemas.events import DocumentIngestedEventData, validate_event_data
|
|
|
|
|
|
@pytest.mark.integration
|
|
def test_doc_ingested_contract():
|
|
"""
|
|
Contract test for DOC_INGESTED event.
|
|
Verifies that the event data schema matches the expected Pydantic model.
|
|
"""
|
|
# Sample valid payload data
|
|
valid_data = {
|
|
"doc_id": "doc_01H1V2W3X4Y5Z6",
|
|
"filename": "test.pdf",
|
|
"kind": "invoice",
|
|
"source": "upload",
|
|
"checksum_sha256": "a" * 64,
|
|
"size_bytes": 1024,
|
|
"mime_type": "application/pdf",
|
|
"storage_path": "s3://bucket/key.pdf",
|
|
}
|
|
|
|
# 1. Verify it validates against the Pydantic model directly
|
|
model = DocumentIngestedEventData(**valid_data)
|
|
assert model.doc_id == valid_data["doc_id"]
|
|
|
|
# 2. Verify it validates using the shared validation utility
|
|
validated_model = validate_event_data(EventTopics.DOC_INGESTED, valid_data)
|
|
assert isinstance(validated_model, DocumentIngestedEventData)
|
|
assert validated_model.doc_id == valid_data["doc_id"]
|
|
|
|
# 3. Verify invalid data fails
|
|
invalid_data = valid_data.copy()
|
|
del invalid_data["doc_id"]
|
|
|
|
with pytest.raises(ValueError):
|
|
validate_event_data(EventTopics.DOC_INGESTED, invalid_data)
|