]> jfr.im git - yt-dlp.git/blame - test/test_download.py
[test_download] Improve diagnostic on wrong 'id'
[yt-dlp.git] / test / test_download.py
CommitLineData
fd5ff020
FV
1#!/usr/bin/env python
2
a0f59cdc
PH
3from __future__ import unicode_literals
4
44a5f171
PH
5# Allow direct execution
6import os
7import sys
8import unittest
9sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
10
dd508b7c 11from test.helper import (
0990305d 12 assertGreaterEqual,
70b7e3fb 13 expect_warnings,
a84da06f 14 expect_value,
dd508b7c 15 get_params,
ff14fc49 16 gettestcases,
257cfebf 17 expect_info_dict,
257cfebf
PH
18 try_rm,
19 report_warning,
dd508b7c 20)
44a5f171
PH
21
22
efe8902f 23import hashlib
fd5ff020 24import io
7f60b5aa 25import json
6b3aef80 26import socket
cdab8aa3 27
8222d8de 28import youtube_dl.YoutubeDL
42f7d2f5 29from youtube_dl.compat import (
dcf3eec4 30 compat_http_client,
44a5f171 31 compat_urllib_error,
f6cc16f5 32 compat_HTTPError,
42f7d2f5
PH
33)
34from youtube_dl.utils import (
44a5f171
PH
35 DownloadError,
36 ExtractorError,
753727cd 37 format_bytes,
44a5f171
PH
38 UnavailableVideoError,
39)
9ee2b5f6 40from youtube_dl.extractor import get_info_extractor
fd5ff020 41
8cc83b8d
FV
42RETRIES = 3
43
5f6a1245 44
8222d8de 45class YoutubeDL(youtube_dl.YoutubeDL):
fd5ff020 46 def __init__(self, *args, **kwargs):
fd5ff020 47 self.to_stderr = self.to_screen
0eaf520d 48 self.processed_info_dicts = []
8222d8de 49 super(YoutubeDL, self).__init__(*args, **kwargs)
5f6a1245 50
476203d0 51 def report_warning(self, message):
be95cac1
FV
52 # Don't accept warnings during tests
53 raise ExtractorError(message)
5f6a1245 54
0eaf520d
FV
55 def process_info(self, info_dict):
56 self.processed_info_dicts.append(info_dict)
8222d8de 57 return super(YoutubeDL, self).process_info(info_dict)
1535ac2a 58
5f6a1245 59
fd5ff020
FV
60def _file_md5(fn):
61 with open(fn, 'rb') as f:
62 return hashlib.md5(f.read()).hexdigest()
63
582be358 64
ff14fc49 65defs = gettestcases()
6b47c7f2 66
0eaf520d 67
1535ac2a 68class TestDownload(unittest.TestCase):
8936f68a
YCH
69 # Parallel testing in nosetests. See
70 # http://nose.readthedocs.org/en/latest/doc_tests/test_multiprocess/multiprocess.html
71 _multiprocess_shared_ = True
72
744435f2 73 maxDiff = None
5f6a1245 74
c6c22e98
JH
75 def __str__(self):
76 """Identify each test with the `add_ie` attribute, if available."""
77
78 def strclass(cls):
79 """From 2.7's unittest; 2.6 had _strclass so we can't import it."""
80 return '%s.%s' % (cls.__module__, cls.__name__)
81
82 add_ie = getattr(self, self._testMethodName).add_ie
83 return '%s (%s)%s:' % (self._testMethodName,
84 strclass(self.__class__),
85 ' [%s]' % add_ie if add_ie else '')
86
fd5ff020 87 def setUp(self):
fd5ff020
FV
88 self.defs = defs
89
5f6a1245
JW
90# Dynamically generate tests
91
92
8936f68a 93def generator(test_case, tname):
5d01a647 94
1535ac2a 95 def test_template(self):
d1cade5a 96 ie = youtube_dl.extractor.get_info_extractor(test_case['name'])
9ee2b5f6 97 other_ies = [get_info_extractor(ie_key) for ie_key in test_case.get('add_ie', [])]
e8ee972c
PH
98 is_playlist = any(k.startswith('playlist') for k in test_case)
99 test_cases = test_case.get(
100 'playlist', [] if is_playlist else [test_case])
101
bc2884af
JMF
102 def print_skipping(reason):
103 print('Skipping %s: %s' % (test_case['name'], reason))
9ee2b5f6 104 if not ie.working():
bc2884af 105 print_skipping('IE marked as not _WORKING')
fd5ff020 106 return
e8ee972c
PH
107
108 for tc in test_cases:
109 info_dict = tc.get('info_dict', {})
4e980275 110 if not (info_dict.get('id') and info_dict.get('ext')):
2437fbca 111 raise Exception('Test definition incorrect. The output file cannot be known. Are both \'id\' and \'ext\' keys present?')
e8ee972c 112
fd5ff020 113 if 'skip' in test_case:
bc2884af 114 print_skipping(test_case['skip'])
fd5ff020 115 return
9ee2b5f6
JMF
116 for other_ie in other_ies:
117 if not other_ie.working():
e075a44a 118 print_skipping('test depends on %sIE, marked as not WORKING' % other_ie.ie_key())
9ee2b5f6 119 return
0eaf520d 120
44a5f171 121 params = get_params(test_case.get('params', {}))
8936f68a 122 params['outtmpl'] = tname + '_' + params['outtmpl']
e8ee972c 123 if is_playlist and 'playlist' not in test_case:
65d49afa 124 params.setdefault('extract_flat', 'in_playlist')
e8ee972c 125 params.setdefault('skip_download', True)
0eaf520d 126
ac35c266 127 ydl = YoutubeDL(params, auto_init=False)
023fa8c4 128 ydl.add_default_info_extractors()
bffbd5f0 129 finished_hook_called = set()
5f6a1245 130
bffbd5f0
PH
131 def _hook(status):
132 if status['status'] == 'finished':
133 finished_hook_called.add(status['filename'])
933605d7 134 ydl.add_progress_hook(_hook)
70b7e3fb 135 expect_warnings(ydl, test_case.get('expected_warnings', []))
5c892b0b 136
702665c0 137 def get_tc_filename(tc):
4e980275 138 return ydl.prepare_filename(tc.get('info_dict', {}))
702665c0 139
28570840 140 res_dict = None
5f6a1245 141
28570840
PH
142 def try_rm_tcs_files(tcs=None):
143 if tcs is None:
144 tcs = test_cases
145 for tc in tcs:
702665c0
JMF
146 tc_filename = get_tc_filename(tc)
147 try_rm(tc_filename)
148 try_rm(tc_filename + '.part')
4eb92208 149 try_rm(os.path.splitext(tc_filename)[0] + '.info.json')
702665c0 150 try_rm_tcs_files()
5c892b0b 151 try:
dd508b7c
FV
152 try_num = 1
153 while True:
8cc83b8d 154 try:
e8ee972c
PH
155 # We're not using .download here sine that is just a shim
156 # for outside error handling, and returns the exit code
157 # instead of the result dict.
308cfe0a
S
158 res_dict = ydl.extract_info(
159 test_case['url'],
160 force_generic_extractor=params.get('force_generic_extractor', False))
8cc83b8d 161 except (DownloadError, ExtractorError) as err:
8cc83b8d 162 # Check if the exception is not a network related one
dcf3eec4 163 if not err.exc_info[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError, compat_http_client.BadStatusLine) or (err.exc_info[0] == compat_HTTPError and err.exc_info[1].code == 503):
8cc83b8d
FV
164 raise
165
dd508b7c 166 if try_num == RETRIES:
8936f68a 167 report_warning('%s failed due to network errors, skipping...' % tname)
dd508b7c
FV
168 return
169
170 print('Retrying: {0} failed tries\n\n##########\n\n'.format(try_num))
171
172 try_num += 1
8cc83b8d
FV
173 else:
174 break
5c892b0b 175
e8ee972c 176 if is_playlist:
880ee801 177 self.assertTrue(res_dict['_type'] in ['playlist', 'multi_video'])
d6e6a422 178 self.assertTrue('entries' in res_dict)
f74b341d 179 expect_info_dict(self, res_dict, test_case.get('info_dict', {}))
d6e6a422 180
e8ee972c 181 if 'playlist_mincount' in test_case:
0990305d
PH
182 assertGreaterEqual(
183 self,
e8ee972c
PH
184 len(res_dict['entries']),
185 test_case['playlist_mincount'],
186 'Expected at least %d in playlist %s, but got only %d' % (
187 test_case['playlist_mincount'], test_case['url'],
188 len(res_dict['entries'])))
829476b8
PH
189 if 'playlist_count' in test_case:
190 self.assertEqual(
191 len(res_dict['entries']),
192 test_case['playlist_count'],
28570840 193 'Expected %d entries in playlist %s, but got %d.' % (
22a6f150 194 test_case['playlist_count'],
28570840 195 test_case['url'],
22a6f150
PH
196 len(res_dict['entries']),
197 ))
28570840
PH
198 if 'playlist_duration_sum' in test_case:
199 got_duration = sum(e['duration'] for e in res_dict['entries'])
200 self.assertEqual(
201 test_case['playlist_duration_sum'], got_duration)
e8ee972c 202
5c892b0b 203 for tc in test_cases:
a84da06f 204 expect_value(self, res_dict['id'], tc['info_dict']['id'], 'id')
702665c0 205 tc_filename = get_tc_filename(tc)
511eda8e 206 if not test_case.get('params', {}).get('skip_download', False):
702665c0
JMF
207 self.assertTrue(os.path.exists(tc_filename), msg='Missing file ' + tc_filename)
208 self.assertTrue(tc_filename in finished_hook_called)
08a36c35
S
209 expected_minsize = tc.get('file_minsize', 10000)
210 if expected_minsize is not None:
211 if params.get('test'):
212 expected_minsize = max(expected_minsize, 10000)
213 got_fsize = os.path.getsize(tc_filename)
214 assertGreaterEqual(
215 self, got_fsize, expected_minsize,
216 'Expected %s to be at least %s, but it\'s only %s ' %
217 (tc_filename, format_bytes(expected_minsize),
218 format_bytes(got_fsize)))
219 if 'md5' in tc:
220 md5_for_file = _file_md5(tc_filename)
221 self.assertEqual(md5_for_file, tc['md5'])
4eb92208 222 info_json_fn = os.path.splitext(tc_filename)[0] + '.info.json'
f744c0f3
PH
223 self.assertTrue(
224 os.path.exists(info_json_fn),
225 'Missing info file %s' % info_json_fn)
4eb92208 226 with io.open(info_json_fn, encoding='utf-8') as infof:
5c892b0b 227 info_dict = json.load(infof)
257cfebf 228
f74b341d 229 expect_info_dict(self, info_dict, tc.get('info_dict', {}))
5c892b0b 230 finally:
702665c0 231 try_rm_tcs_files()
d6e6a422 232 if is_playlist and res_dict is not None and res_dict.get('entries'):
28570840
PH
233 # Remove all other files that may have been extracted if the
234 # extractor returns full results even with extract_flat
235 res_tcs = [{'info_dict': e} for e in res_dict['entries']]
236 try_rm_tcs_files(res_tcs)
fd5ff020 237
1535ac2a 238 return test_template
fd5ff020 239
582be358 240
5f6a1245 241# And add them to TestDownload
f7ab6cbe 242for n, test_case in enumerate(defs):
2eb88d95
PH
243 tname = 'test_' + str(test_case['name'])
244 i = 1
245 while hasattr(TestDownload, tname):
a0f59cdc 246 tname = 'test_%s_%d' % (test_case['name'], i)
2eb88d95 247 i += 1
8936f68a 248 test_method = generator(test_case, tname)
a0f59cdc 249 test_method.__name__ = str(tname)
c6c22e98
JH
250 ie_list = test_case.get('add_ie')
251 test_method.add_ie = ie_list and ','.join(ie_list)
fd5ff020 252 setattr(TestDownload, test_method.__name__, test_method)
5d01a647 253 del test_method
cdab8aa3
PH
254
255
256if __name__ == '__main__':
257 unittest.main()