[Letv] Update testcases

totalwebcasting
Yen Chi Hsuan 9 years ago
parent 570311610e
commit 677063594e

@ -23,14 +23,22 @@ class LetvIE(InfoExtractor):
'title': '第87届奥斯卡颁奖礼完美落幕 《鸟人》成最大赢家', 'title': '第87届奥斯卡颁奖礼完美落幕 《鸟人》成最大赢家',
'timestamp': 1424747397, 'timestamp': 1424747397,
'upload_date': '20150224', 'upload_date': '20150224',
'description': 'md5:a9cb175fd753e2962176b7beca21a47c',
} }
}, { }, {
'url': 'http://www.letv.com/ptv/vplay/1118082.html', 'url': 'http://www.letv.com/ptv/vplay/1415246.html',
'info_dict': { 'info_dict': {
'id': '1118082', 'id': '1415246',
'ext': 'mp4', 'ext': 'mp4',
} 'title': '美人天下01',
'description': 'md5:f88573d9d7225ada1359eaf0dbf8bcda',
},
'expected_warnings': [
'publish time'
]
}] }]
# http://www.letv.com/ptv/vplay/1118082.html
# This video is available only in Mainland China
@staticmethod @staticmethod
def urshift(val, n): def urshift(val, n):
@ -111,12 +119,14 @@ class LetvIE(InfoExtractor):
publish_time = parse_iso8601(self._html_search_regex( publish_time = parse_iso8601(self._html_search_regex(
r'发布时间&nbsp;([^<>]+) ', page, 'publish time', fatal=False), r'发布时间&nbsp;([^<>]+) ', page, 'publish time', fatal=False),
delimiter=' ', timezone=datetime.timedelta(hours=8)) delimiter=' ', timezone=datetime.timedelta(hours=8))
description = self._html_search_meta('description', page, fatal=False)
return { return {
'id': media_id, 'id': media_id,
'formats': urls, 'formats': urls,
'title': playurl['title'], 'title': playurl['title'],
'thumbnail': playurl['pic'], 'thumbnail': playurl['pic'],
'description': description,
'timestamp': publish_time, 'timestamp': publish_time,
} }
@ -142,7 +152,8 @@ class LetvTvIE(InfoExtractor):
entries = [self.url_result(media_url, ie='Letv') entries = [self.url_result(media_url, ie='Letv')
for media_url in media_urls] for media_url in media_urls]
title = self._html_search_meta('keywords', page, fatal=False).split('')[0] title = self._html_search_meta('keywords', page,
fatal=False).split('')[0]
description = self._html_search_meta('description', page, fatal=False) description = self._html_search_meta('description', page, fatal=False)
return self.playlist_result(entries, playlist_id, playlist_title=title, return self.playlist_result(entries, playlist_id, playlist_title=title,
@ -158,13 +169,14 @@ class LetvPlaylistIE(LetvTvIE):
'title': '武媚娘传奇', 'title': '武媚娘传奇',
'description': 'md5:e12499475ab3d50219e5bba00b3cb248' 'description': 'md5:e12499475ab3d50219e5bba00b3cb248'
}, },
'playlist_count': 96 # This playlist contains some extra videos other than the drama itself
'playlist_mincount': 96
}, { }, {
'url': 'http://tv.letv.com/pzt/lswjzzjc/index.shtml', 'url': 'http://tv.letv.com/pzt/lswjzzjc/index.shtml',
'info_dict': { 'info_dict': {
'id': 'lswjzzjc', 'id': 'lswjzzjc',
# should be "劲舞青春", but I can't find a simple way to determine # The title should be "劲舞青春", but I can't find a simple way to
# the playlist title # determine the playlist title
'title': '乐视午间自制剧场', 'title': '乐视午间自制剧场',
'description': 'md5:b1eef244f45589a7b5b1af9ff25a4489' 'description': 'md5:b1eef244f45589a7b5b1af9ff25a4489'
}, },

Loading…
Cancel
Save