Files
api/services/nginx/app/tests/Api/api_coverage_manifest.php
T
Jeppe Bundgaard 6d4066be1c Add unit tests for InvoicingPeriodDraftOverlay and reference suggestion logic, including fake DB integration and aggregation methods
- Implemented `InvoicingPeriodDraftOverlayTest` with coverage for blocking and permitting invoicing actions based on draft states, transactions, and metadata.
- Created `ReferenceSuggestionsApiTest` to validate ranked and filtered suggestions across bookings, orders, and vehicles with varied match relevance, context, and frequency.
- Added `order_reference_suggestions_service` class, including query methods, normalization utilities, and aggregation logic for reference suggestions.
- Enhanced query handling in `InvoicingPeriodDraftOverlayFakeDb` to validate SQL constraints and column cache resets in overlapping invoicing contexts.
2026-05-11 18:18:08 +02:00

34 lines
780 B
PHP

<?php
declare(strict_types=1);
return [
'openapi_operations' => [
'POST /auth/login',
'GET /auth/session',
'GET /auth/logout',
'GET /departments',
'POST /departments',
'PUT /departments',
'GET /departments/categories',
'GET /orders',
'POST /orders',
'PUT /orders',
'PUT /numberplatescanners',
'DELETE /orders',
'GET /branding',
'POST /branding',
'PUT /branding',
'PUT /superuser/department/branding',
'POST /bird/voice/calls/webhook/inbound',
],
'manual_operations' => [
'GET /ping',
'PUT /order',
'GET /orders/reference-suggestions',
],
'happy_only_operations' => [
'GET /ping',
],
];