import pytest @pytest.fixture() def orchard_product(): return { 'productId': 1000, 'displayStatus': 'COMPLETED', 'metaLanguage': 'OLD_LANGUAGE', 'productName': 'OLD_PRODUCT_NAME', 'genreId': 100, 'subgenreId': 200, 'imprint': 'OLD_IMPRINT', 'cLine': 'OLD_CLINE', 'deliveredVersion': 'OLD_VERSION' } @pytest.fixture() def formatted_track(): return { 'lyrics': 'Watch your step\nCome on down and you will', 'tuid': '30479462', 'isrc': 'GBJCP1925201', 'explicit': 'N', 'productId': '2668227', 'metaLanguageCode': 'ENG', 'trackName': 'Canyonheart', 'trackNumber': 1, 'trackType': 'music', 'originalRightsHolderCountryId': 1, 'ownershipRights': 'original_owner', 'pInfo': ('2019 Desert Folklore Music' 'marketed and distributed by Thirty Tigers'), 'previewStartTime': None, 'recordingCountryId': 1, 'upc': '194491128067', 'version': '', 'volumeNumber': 1, 'thumb': None, 'primaryArtists': [ {'artistName': 'Snoop Dogg', 'artistType': 'performer'}, {'artistName': 'Dr. Dre', 'artistType': 'featuring'}, {'artistName': 'Cool Remixer', 'artistType': 'remixer'}, {'artistName': 'Cool Producer', 'artistType': 'producer'}, ], 'writers': [ {'writerName': 'Snoop Dogg', 'writerType': 'writer'}, {'writerName': 'Dr. Dre', 'writerType': 'writer'}, ], 'tuids': [30479462] } @pytest.fixture def product_artists(): return [ { 'artistId': '6036995', 'artistName': 'Dr Zeus', 'artistType': 'primary_artist', 'artistInfoId': 1956160 }, { 'artistId': '6036996', 'artistName': 'Snoop Dogg', 'artistType': 'featuring', 'artistInfoId': 1956161 }, { 'artistId': '6036997', 'artistName': 'Zora Randhawa', 'artistType': 'featuring', 'artistInfoId': 1956162 }, { 'artistId': '6036998', 'artistName': 'Nargis Fakhri', 'artistType': 'featuring', 'artistInfoId': 1956163 } ]