"""Provides test data for track creation.""" from tests.testutils.seed import track_seed PRODUCT_ID = 100 TUID = track_seed.get_max_tuid() + 1 track_create_data = { 'track_name': 'New Track Name', 'product_id': PRODUCT_ID } track_create_response = { 'tuid': TUID, 'product_id': PRODUCT_ID, 'track_name': 'New Track Name', 'version': None, 'meta_language_code': None, 'isrc': None, 'p_info': None, 'explicit': 'N', 'focus_track': 'N', 'focus_track_end_date': None, 'focus_track_start_date': None, 'volume_number': 1, 'track_number': 1, 'upc': 123456789012, 'ownership_rights': None, 'recording_country_id': None, 'third_party_publisher': 'N', 'us_publishing_obligation': None, 'original_rights_holder_country_id': None, 'preview_start_time': None, 'artists': [], 'publishers': [], 'writers': [], # Language is none because the meta_language_code is None 'language': None, 'track_type': 'music', 'offer_type': 'all', 'duration_minutes': None, 'duration_seconds': None, 'is_owner': None }