Added a test for the URL reported in youtube-dl Issue #30458.

This commit is contained in:
Jackson Humphrey 2024-11-13 16:12:55 -06:00
parent 10834f196d
commit d45461e4b3

View File

@ -13,23 +13,41 @@
class AlphaPornoIE(InfoExtractor): class AlphaPornoIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?alphaporno\.com/videos/(?P<id>[^/]+)' _VALID_URL = r'https?://(?:www\.)?alphaporno\.com/videos/(?P<id>[^/]+)'
_TEST = { _TESTS = [
'url': 'http://www.alphaporno.com/videos/sensual-striptease-porn-with-samantha-alexandra/', {
'md5': '7e6a1cdd48fa67362a5a11d7039164e7', 'url': 'http://www.alphaporno.com/videos/sensual-striptease-porn-with-samantha-alexandra/',
'info_dict': { 'md5': '7e6a1cdd48fa67362a5a11d7039164e7',
'id': '258807', 'info_dict': {
'display_id': 'sensual-striptease-porn-with-samantha-alexandra', 'id': '258807',
'ext': 'mp4', 'display_id': 'sensual-striptease-porn-with-samantha-alexandra',
'title': 'Sensual striptease porn with Samantha Alexandra', 'ext': 'mp4',
'description': 'md5:3c6d31008980654acaeb11451454a62c', 'title': 'Sensual striptease porn with Samantha Alexandra',
'thumbnail': r're:https?://.*\.jpg$', 'description': 'md5:3c6d31008980654acaeb11451454a62c',
'timestamp': 1418701811, 'thumbnail': r're:https?://.*\.jpg$',
'upload_date': '20141216', 'timestamp': 1418701811,
'duration': 387, 'upload_date': '20141216',
'categories': list, 'duration': 387,
'age_limit': 18, 'categories': list,
'age_limit': 18,
},
}, },
} {
'url': 'https://www.alphaporno.com/videos/amazing-inches-hammering-her-pussy-in-such-addictive-ways/',
'info_dict': {
'id': '433761',
'ext': 'mp4',
'title': 'Amazing inches hammering her pussy in such addictive ways',
'display_id': 'amazing-inches-hammering-her-pussy-in-such-addictive-ways',
'timestamp': 1641065820,
'upload_date': '20220101',
'description': 'md5:8bf8e04807b890b847cc9238c445783a',
'categories': 'count:12',
'age_limit': 18,
'thumbnail': r're:https?://.*\.jpg$',
'duration': 298.0,
},
},
]
def _real_extract(self, url): def _real_extract(self, url):
display_id = self._match_id(url) display_id = self._match_id(url)