mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
add test for infoq
This commit is contained in:
parent
5f9551719c
commit
511eda8eda
@ -90,7 +90,8 @@ def generator(test_case):
|
|||||||
fd.download([test_case['url']])
|
fd.download([test_case['url']])
|
||||||
|
|
||||||
for tc in test_cases:
|
for tc in test_cases:
|
||||||
self.assertTrue(os.path.exists(tc['file']))
|
if not test_case.get('params', {}).get('skip_download', False):
|
||||||
|
self.assertTrue(os.path.exists(tc['file']))
|
||||||
self.assertTrue(os.path.exists(tc['file'] + '.info.json'))
|
self.assertTrue(os.path.exists(tc['file'] + '.info.json'))
|
||||||
if 'md5' in tc:
|
if 'md5' in tc:
|
||||||
md5_for_file = _file_md5(tc['file'])
|
md5_for_file = _file_md5(tc['file'])
|
||||||
|
@ -149,5 +149,16 @@
|
|||||||
"info_dict": {
|
"info_dict": {
|
||||||
"title": "Young Americans for Liberty February 7, 2012 2:28 AM"
|
"title": "Young Americans for Liberty February 7, 2012 2:28 AM"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "InfoQ",
|
||||||
|
"url": "http://www.infoq.com/presentations/A-Few-of-My-Favorite-Python-Things",
|
||||||
|
"file": "12-jan-pythonthings.mp4",
|
||||||
|
"info_dict": {
|
||||||
|
"title": "A Few of My Favorite [Python] Things"
|
||||||
|
},
|
||||||
|
"params": {
|
||||||
|
"skip_download": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user