mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
[kusi] Update test
This commit is contained in:
parent
5a80e7b43a
commit
a06e1498aa
1 changed files with 8 additions and 19 deletions
|
@ -18,31 +18,20 @@
|
||||||
class KUSIIE(InfoExtractor):
|
class KUSIIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?kusi\.com/(?P<path>story/.+|video\?clipId=(?P<clipId>\d+))'
|
_VALID_URL = r'https?://(?:www\.)?kusi\.com/(?P<path>story/.+|video\?clipId=(?P<clipId>\d+))'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://www.kusi.com/story/31183873/turko-files-case-closed-put-on-hold',
|
'url': 'http://www.kusi.com/story/32849881/turko-files-refused-to-help-it-aint-right',
|
||||||
'md5': 'f926e7684294cf8cb7bdf8858e1b3988',
|
'md5': '4e76ce8e53660ce9697d06c0ba6fc47d',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '12203019',
|
'id': '12689020',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Turko Files: Case Closed! & Put On Hold!',
|
'title': "Turko Files: Refused to Help, It Ain't Right!",
|
||||||
'duration': 231.0,
|
'duration': 223.586,
|
||||||
'upload_date': '20160210',
|
'upload_date': '20160826',
|
||||||
'timestamp': 1455087571,
|
'timestamp': 1472233118,
|
||||||
'thumbnail': 're:^https?://.*\.jpg$'
|
'thumbnail': 're:^https?://.*\.jpg$'
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
'url': 'http://kusi.com/video?clipId=12203019',
|
'url': 'http://kusi.com/video?clipId=12203019',
|
||||||
'info_dict': {
|
'only_matching': True,
|
||||||
'id': '12203019',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': 'Turko Files: Case Closed! & Put On Hold!',
|
|
||||||
'duration': 231.0,
|
|
||||||
'upload_date': '20160210',
|
|
||||||
'timestamp': 1455087571,
|
|
||||||
'thumbnail': 're:^https?://.*\.jpg$'
|
|
||||||
},
|
|
||||||
'params': {
|
|
||||||
'skip_download': True, # Same as previous one
|
|
||||||
},
|
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
|
Loading…
Reference in a new issue