"""Lambda test configuration.""" import pytest @pytest.fixture def products(): """Mock products response.""" return { 'products': [{ 'id': '777', 'display_upc': 'upc-123', 'status': 'in_content', 'release_date': '2019-06-15', 'label': { 'name': 'Label Name', 'uuid': '94177d6a-51d4-496f-aa1a-a52b75516814', 'type': 'Subaccount', 'id': { 'vendorId': 999, 'subaccountId': 888 } }, 'subgenre': { 'id': 327, 'name': 'Club/Dance', 'genre': { 'id': 11, 'name': 'World Music' } } }] } @pytest.fixture def track_result(): """Mock track response.""" return { 'tracks': [{ 'product': { 'id': '777', }, 'tuid': '456', 'isrc': 'isrc-123', 'name': 'Song Name', 'explicit': 'N', 'version': '', 'duration_minutes': 2, 'duration_seconds': 30, 'meta_language_code': 'ENG', 'language': { 'iso_639_1_code': 'EN' }, 'p_info': '2020 Label Name', 'participations': [ { 'participant': { 'uuid': '3b57bccf-7377-4282-a5b0-4956aa831766', 'name': 'Music Person' }, 'participated_as': 'track_writer' } ], 'territories': ['US', 'UK'], 'recording_country': { 'territory_code_a2': 'FR' }, 'original_rights_holder_country': { 'territory_code_a2': 'FR' }, 'label_sound_recording': { 'participations': [ { 'participant': { 'uuid': '3b57bccf-7377-4282-a5b0-4956aa831766', 'name': 'Music Person' }, 'role': { 'name': 'Vocal Engineer', 'category': { 'name': 'Studio Personnel' } } } ] }, 'audio_attributes': [ { 'id': '1', 'attribute': { 'id': '1', 'description': 'Unique Audio' } } ], 'rights_attributes': [ { 'id': '1', 'attribute': { 'id': '1', 'description': 'Public Domain' } } ], 'offer_type': 'ALL', 'ownership_rights': 'acquired_rights' }] } @pytest.fixture def ows_result(): """Mock OWS response.""" return [{ 'id': '673bdd80-8704-46fb-8e3b-f3801a375295', 'isrc': 'isrc-123', 'primary_track_id': 456, 'assets': [ { 'asset_id': 'ecd5647a-0655-4740-9dbf-e3c464e63ed5', 'acr_id': 'acr-123', 'filename': '390821c8-e8ba-4801-bd21-f61a46ece8f4', 'extension': 'wav', 'tracks': [{'tuid': 123, 'upc': 'upc-123'}], 'source': 'ows-assets-db' }, { 'asset_id': '193396fb-b2cc-4d83-b4f4-991bc1226270', 'acr_id': 'acr-123', 'filename': '59c22236-d35f-47d5-bb7e-489eac6e79af', 'extension': 'flac', 'tracks': [{'tuid': 456, 'upc': 'upc-456'}], 'source': 'ows-assets-db' } ] }]