]> jfr.im git - yt-dlp.git/blob - test/test_download.py
54674845480eace58b15763f7409f72f5155b6c0
[yt-dlp.git] / test / test_download.py
1 #!/usr/bin/env python3
2
3 from __future__ import unicode_literals
4
5 # Allow direct execution
6 import os
7 import sys
8 import unittest
9 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
10
11 from test.helper import (
12 assertGreaterEqual,
13 expect_info_dict,
14 expect_warnings,
15 get_params,
16 gettestcases,
17 is_download_test,
18 report_warning,
19 try_rm,
20 )
21
22
23 import hashlib
24 import io
25 import json
26 import socket
27
28 import yt_dlp.YoutubeDL
29 from yt_dlp.compat import (
30 compat_http_client,
31 compat_urllib_error,
32 compat_HTTPError,
33 )
34 from yt_dlp.utils import (
35 DownloadError,
36 ExtractorError,
37 format_bytes,
38 UnavailableVideoError,
39 )
40 from yt_dlp.extractor import get_info_extractor
41
42 RETRIES = 3
43
44
45 class YoutubeDL(yt_dlp.YoutubeDL):
46 def __init__(self, *args, **kwargs):
47 self.to_stderr = self.to_screen
48 self.processed_info_dicts = []
49 super(YoutubeDL, self).__init__(*args, **kwargs)
50
51 def report_warning(self, message):
52 # Don't accept warnings during tests
53 raise ExtractorError(message)
54
55 def process_info(self, info_dict):
56 self.processed_info_dicts.append(info_dict)
57 return super(YoutubeDL, self).process_info(info_dict)
58
59
60 def _file_md5(fn):
61 with open(fn, 'rb') as f:
62 return hashlib.md5(f.read()).hexdigest()
63
64
65 defs = gettestcases()
66
67
68 @is_download_test
69 class TestDownload(unittest.TestCase):
70 # Parallel testing in nosetests. See
71 # http://nose.readthedocs.org/en/latest/doc_tests/test_multiprocess/multiprocess.html
72 _multiprocess_shared_ = True
73
74 maxDiff = None
75
76 def __str__(self):
77 """Identify each test with the `add_ie` attribute, if available."""
78
79 def strclass(cls):
80 """From 2.7's unittest; 2.6 had _strclass so we can't import it."""
81 return '%s.%s' % (cls.__module__, cls.__name__)
82
83 add_ie = getattr(self, self._testMethodName).add_ie
84 return '%s (%s)%s:' % (self._testMethodName,
85 strclass(self.__class__),
86 ' [%s]' % add_ie if add_ie else '')
87
88 def setUp(self):
89 self.defs = defs
90
91 # Dynamically generate tests
92
93
94 def generator(test_case, tname):
95
96 def test_template(self):
97 ie = yt_dlp.extractor.get_info_extractor(test_case['name'])()
98 other_ies = [get_info_extractor(ie_key)() for ie_key in test_case.get('add_ie', [])]
99 is_playlist = any(k.startswith('playlist') for k in test_case)
100 test_cases = test_case.get(
101 'playlist', [] if is_playlist else [test_case])
102
103 def print_skipping(reason):
104 print('Skipping %s: %s' % (test_case['name'], reason))
105 if not ie.working():
106 print_skipping('IE marked as not _WORKING')
107 return
108
109 for tc in test_cases:
110 info_dict = tc.get('info_dict', {})
111 params = tc.get('params', {})
112 if not info_dict.get('id'):
113 raise Exception('Test definition incorrect. \'id\' key is not present')
114 elif not info_dict.get('ext'):
115 if params.get('skip_download') and params.get('ignore_no_formats_error'):
116 continue
117 raise Exception('Test definition incorrect. The output file cannot be known. \'ext\' key is not present')
118
119 if 'skip' in test_case:
120 print_skipping(test_case['skip'])
121 return
122 for other_ie in other_ies:
123 if not other_ie.working():
124 print_skipping('test depends on %sIE, marked as not WORKING' % other_ie.ie_key())
125 return
126
127 params = get_params(test_case.get('params', {}))
128 params['outtmpl'] = tname + '_' + params['outtmpl']
129 if is_playlist and 'playlist' not in test_case:
130 params.setdefault('extract_flat', 'in_playlist')
131 params.setdefault('playlistend', test_case.get('playlist_mincount'))
132 params.setdefault('skip_download', True)
133
134 ydl = YoutubeDL(params, auto_init=False)
135 ydl.add_default_info_extractors()
136 finished_hook_called = set()
137
138 def _hook(status):
139 if status['status'] == 'finished':
140 finished_hook_called.add(status['filename'])
141 ydl.add_progress_hook(_hook)
142 expect_warnings(ydl, test_case.get('expected_warnings', []))
143
144 def get_tc_filename(tc):
145 return ydl.prepare_filename(tc.get('info_dict', {}))
146
147 res_dict = None
148
149 def try_rm_tcs_files(tcs=None):
150 if tcs is None:
151 tcs = test_cases
152 for tc in tcs:
153 tc_filename = get_tc_filename(tc)
154 try_rm(tc_filename)
155 try_rm(tc_filename + '.part')
156 try_rm(os.path.splitext(tc_filename)[0] + '.info.json')
157 try_rm_tcs_files()
158 try:
159 try_num = 1
160 while True:
161 try:
162 # We're not using .download here since that is just a shim
163 # for outside error handling, and returns the exit code
164 # instead of the result dict.
165 res_dict = ydl.extract_info(
166 test_case['url'],
167 force_generic_extractor=params.get('force_generic_extractor', False))
168 except (DownloadError, ExtractorError) as err:
169 # Check if the exception is not a network related one
170 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):
171 raise
172
173 if try_num == RETRIES:
174 report_warning('%s failed due to network errors, skipping...' % tname)
175 return
176
177 print('Retrying: {0} failed tries\n\n##########\n\n'.format(try_num))
178
179 try_num += 1
180 else:
181 break
182
183 if is_playlist:
184 self.assertTrue(res_dict['_type'] in ['playlist', 'multi_video'])
185 self.assertTrue('entries' in res_dict)
186 expect_info_dict(self, res_dict, test_case.get('info_dict', {}))
187
188 if 'playlist_mincount' in test_case:
189 assertGreaterEqual(
190 self,
191 len(res_dict['entries']),
192 test_case['playlist_mincount'],
193 'Expected at least %d in playlist %s, but got only %d' % (
194 test_case['playlist_mincount'], test_case['url'],
195 len(res_dict['entries'])))
196 if 'playlist_count' in test_case:
197 self.assertEqual(
198 len(res_dict['entries']),
199 test_case['playlist_count'],
200 'Expected %d entries in playlist %s, but got %d.' % (
201 test_case['playlist_count'],
202 test_case['url'],
203 len(res_dict['entries']),
204 ))
205 if 'playlist_duration_sum' in test_case:
206 got_duration = sum(e['duration'] for e in res_dict['entries'])
207 self.assertEqual(
208 test_case['playlist_duration_sum'], got_duration)
209
210 # Generalize both playlists and single videos to unified format for
211 # simplicity
212 if 'entries' not in res_dict:
213 res_dict['entries'] = [res_dict]
214
215 for tc_num, tc in enumerate(test_cases):
216 tc_res_dict = res_dict['entries'][tc_num]
217 # First, check test cases' data against extracted data alone
218 expect_info_dict(self, tc_res_dict, tc.get('info_dict', {}))
219 # Now, check downloaded file consistency
220 tc_filename = get_tc_filename(tc)
221 if not test_case.get('params', {}).get('skip_download', False):
222 self.assertTrue(os.path.exists(tc_filename), msg='Missing file ' + tc_filename)
223 self.assertTrue(tc_filename in finished_hook_called)
224 expected_minsize = tc.get('file_minsize', 10000)
225 if expected_minsize is not None:
226 if params.get('test'):
227 expected_minsize = max(expected_minsize, 10000)
228 got_fsize = os.path.getsize(tc_filename)
229 assertGreaterEqual(
230 self, got_fsize, expected_minsize,
231 'Expected %s to be at least %s, but it\'s only %s ' %
232 (tc_filename, format_bytes(expected_minsize),
233 format_bytes(got_fsize)))
234 if 'md5' in tc:
235 md5_for_file = _file_md5(tc_filename)
236 self.assertEqual(tc['md5'], md5_for_file)
237 # Finally, check test cases' data again but this time against
238 # extracted data from info JSON file written during processing
239 info_json_fn = os.path.splitext(tc_filename)[0] + '.info.json'
240 self.assertTrue(
241 os.path.exists(info_json_fn),
242 'Missing info file %s' % info_json_fn)
243 with io.open(info_json_fn, encoding='utf-8') as infof:
244 info_dict = json.load(infof)
245 expect_info_dict(self, info_dict, tc.get('info_dict', {}))
246 finally:
247 try_rm_tcs_files()
248 if is_playlist and res_dict is not None and res_dict.get('entries'):
249 # Remove all other files that may have been extracted if the
250 # extractor returns full results even with extract_flat
251 res_tcs = [{'info_dict': e} for e in res_dict['entries']]
252 try_rm_tcs_files(res_tcs)
253
254 return test_template
255
256
257 # And add them to TestDownload
258 for n, test_case in enumerate(defs):
259 tname = 'test_' + str(test_case['name'])
260 i = 1
261 while hasattr(TestDownload, tname):
262 tname = 'test_%s_%d' % (test_case['name'], i)
263 i += 1
264 test_method = generator(test_case, tname)
265 test_method.__name__ = str(tname)
266 ie_list = test_case.get('add_ie')
267 test_method.add_ie = ie_list and ','.join(ie_list)
268 setattr(TestDownload, test_method.__name__, test_method)
269 del test_method
270
271
272 if __name__ == '__main__':
273 unittest.main()