"""Constants for integration tests.""" VENDOR_ID = 7123 # A LabelParticipant UUID in QA Neo4j accessible to the integration test user's LabelProfile. CONTRIBUTOR_UUIDS: list[str] = [ "96b103c1-a80e-45a9-84df-7a543f2d424a", # Frank Sinatra, vendor 7123 "815d4b7b-05cf-428f-9d0b-7127d3f5f47b", # Arab Strap, vendor 7123 ] GLOBAL_PARTICIPANT_UUIDS: list[str] = [ "33f6af5c-59e1-4197-a8a6-f409d6c233f3", # Frank Sinatra "ae596043-9bd3-4275-8fad-d85a996468b3", # Arab Strap ] UNKNOWN_CONTRIBUTOR_UUID = "aaaaaaaa-bbbb-4ccc-8ddd-eeeeeeeeeeee" UNKNOWN_GLOBAL_PARTICIPANT_ID = "ffffffff-gggg-4hhh-8iii-jjjjjjjjjjjj" # Product IDs in QA Neo4j with at least one PARTICIPATED_IN relationship, accessible to vendor 7123. PRODUCT_IDS = [1580539, 493678] UNKNOWN_PRODUCT_ID = 1234222 # ParticipationRoleCategory UUIDs in QA provided for integration testing. PARTICIPATION_ROLE_CATEGORY_UUIDS: list[str] = [ "faef357a-21ca-4742-b5e0-385e9cf55316", "ea30dcf2-41b7-4682-8082-50db93349933", ] UNKNOWN_PARTICIPATION_ROLE_CATEGORY_UUID = "11111111-2222-4333-8444-555555555555" UNKNOWN_PARTICIPATION_ROLE_UUID = "66666666-7777-4888-9999-aaaaaaaaaaaa"