feat(v3-api): enable account-based search for exhibit tracking

1. Added 'account_id' and 'account_id_random' to searchable_fields for event_exhibit_tracking.
2. Updated tests/README.md with descriptions for the latest E2E test scripts (Demo Parity, Event Actions, Zoom).
This commit is contained in:
Scott Idem
2026-02-07 18:09:45 -05:00
parent 7084dd3472
commit fe368e2f64
2 changed files with 5 additions and 2 deletions

View File

@@ -37,8 +37,8 @@ events_exhibits_obj_li = {
'base_name': Event_Exhibit_Tracking_Base,
# V3 Search Security:
'searchable_fields': [
'id', 'event_exhibit_tracking_id', 'event_id', 'event_exhibit_id', 'event_person_id', 'event_badge_id',
'id_random', 'event_exhibit_tracking_id_random', 'event_id_random',
'id', 'event_exhibit_tracking_id', 'account_id', 'event_id', 'event_exhibit_id', 'event_person_id', 'event_badge_id',
'id_random', 'event_exhibit_tracking_id_random', 'account_id_random', 'event_id_random',
'event_exhibit_id_random', 'event_person_id_random',
'event_badge_id_random', 'external_person_id', 'enable', 'hide',
'priority', 'sort', 'group', 'notes', 'created_on', 'updated_on'

View File

@@ -22,6 +22,9 @@ These consolidated scripts are the primary verification tool for the V3 API.
| `test_e2e_v3_data_store_lookup.py` | **V3 Parity**: Verifies code-based lookups and latency simulation. |
| `test_e2e_v3_event_vision_parity.py`| **Vision ID**: Verifies string-ID enforcement across event models. |
| `test_e2e_v3_cms_vision_parity.py`| **Vision ID**: Verifies string-ID enforcement across CMS (post/comment) models. |
| `test_e2e_v3_demo_parity.py` | **Demo Parity**: Comprehensive check for Badge, Exhibit, Tracking, and nested Journal Entries. |
| `test_e2e_v3_action_event_file.py` | **Event Actions**: Specialized atomic upload and linking for event files. |
| `test_e2e_v3_action_zoom.py` | **Zoom Integration**: Verifies OAuth and ticket sync logic for Zoom Events. |
| `test_e2e_v3_accounts.py` | CRUD verification for the core Account object. |
| `test_e2e_v3_schema.py` | Network verification of the V3 metadata discovery endpoint. |
| `test_e2e_agent_bridge.py` | Verifies container diagnostics and log streaming routes. |