]> jfr.im git - yt-dlp.git/blame - test/test_download.py
[cleanup] Mark some compat variables for removal (#2173)
[yt-dlp.git] / test / test_download.py
CommitLineData
cc52de43 1#!/usr/bin/env python3
fd5ff020 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,
060ac762 13 expect_info_dict,
70b7e3fb 14 expect_warnings,
dd508b7c 15 get_params,
ff14fc49 16 gettestcases,
060ac762 17 is_download_test,
257cfebf 18 report_warning,
060ac762 19 try_rm,
dd508b7c 20)
44a5f171
PH
21
22
efe8902f 23import hashlib
fd5ff020 24import io
7f60b5aa 25import json
6b3aef80 26import socket
cdab8aa3 27
7a5c1cfe
P
28import yt_dlp.YoutubeDL
29from yt_dlp.compat import (
dcf3eec4 30 compat_http_client,
44a5f171 31 compat_urllib_error,
f6cc16f5 32 compat_HTTPError,
42f7d2f5 33)
7a5c1cfe 34from yt_dlp.utils import (
44a5f171
PH
35 DownloadError,
36 ExtractorError,
753727cd 37 format_bytes,
44a5f171
PH
38 UnavailableVideoError,
39)
7a5c1cfe 40from yt_dlp.extractor import get_info_extractor
fd5ff020 41
8cc83b8d
FV
42RETRIES = 3
43
5f6a1245 44
7a5c1cfe 45class YoutubeDL(yt_dlp.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 55 def process_info(self, info_dict):
f46e2f9d 56 self.processed_info_dicts.append(info_dict.copy())
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
060ac762 68@is_download_test
1535ac2a 69class TestDownload(unittest.TestCase):
8936f68a
YCH
70 # Parallel testing in nosetests. See
71 # http://nose.readthedocs.org/en/latest/doc_tests/test_multiprocess/multiprocess.html
72 _multiprocess_shared_ = True
73
744435f2 74 maxDiff = None
5f6a1245 75
243c57cf 76 COMPLETED_TESTS = {}
77
c6c22e98
JH
78 def __str__(self):
79 """Identify each test with the `add_ie` attribute, if available."""
80
81 def strclass(cls):
82 """From 2.7's unittest; 2.6 had _strclass so we can't import it."""
83 return '%s.%s' % (cls.__module__, cls.__name__)
84
85 add_ie = getattr(self, self._testMethodName).add_ie
86 return '%s (%s)%s:' % (self._testMethodName,
87 strclass(self.__class__),
88 ' [%s]' % add_ie if add_ie else '')
89
fd5ff020 90 def setUp(self):
fd5ff020
FV
91 self.defs = defs
92
5f6a1245
JW
93# Dynamically generate tests
94
95
8936f68a 96def generator(test_case, tname):
5d01a647 97
1535ac2a 98 def test_template(self):
243c57cf 99 if self.COMPLETED_TESTS.get(tname):
100 return
101 self.COMPLETED_TESTS[tname] = True
7a5c1cfe 102 ie = yt_dlp.extractor.get_info_extractor(test_case['name'])()
655c4100 103 other_ies = [get_info_extractor(ie_key)() for ie_key in test_case.get('add_ie', [])]
e8ee972c
PH
104 is_playlist = any(k.startswith('playlist') for k in test_case)
105 test_cases = test_case.get(
106 'playlist', [] if is_playlist else [test_case])
107
bc2884af
JMF
108 def print_skipping(reason):
109 print('Skipping %s: %s' % (test_case['name'], reason))
9ee2b5f6 110 if not ie.working():
bc2884af 111 print_skipping('IE marked as not _WORKING')
fd5ff020 112 return
e8ee972c
PH
113
114 for tc in test_cases:
115 info_dict = tc.get('info_dict', {})
0855702f 116 params = tc.get('params', {})
117 if not info_dict.get('id'):
118 raise Exception('Test definition incorrect. \'id\' key is not present')
119 elif not info_dict.get('ext'):
120 if params.get('skip_download') and params.get('ignore_no_formats_error'):
121 continue
122 raise Exception('Test definition incorrect. The output file cannot be known. \'ext\' key is not present')
e8ee972c 123
fd5ff020 124 if 'skip' in test_case:
bc2884af 125 print_skipping(test_case['skip'])
fd5ff020 126 return
9ee2b5f6
JMF
127 for other_ie in other_ies:
128 if not other_ie.working():
e075a44a 129 print_skipping('test depends on %sIE, marked as not WORKING' % other_ie.ie_key())
9ee2b5f6 130 return
0eaf520d 131
44a5f171 132 params = get_params(test_case.get('params', {}))
8936f68a 133 params['outtmpl'] = tname + '_' + params['outtmpl']
e8ee972c 134 if is_playlist and 'playlist' not in test_case:
65d49afa 135 params.setdefault('extract_flat', 'in_playlist')
6911e11e 136 params.setdefault('playlistend', test_case.get('playlist_mincount'))
e8ee972c 137 params.setdefault('skip_download', True)
0eaf520d 138
ac35c266 139 ydl = YoutubeDL(params, auto_init=False)
023fa8c4 140 ydl.add_default_info_extractors()
bffbd5f0 141 finished_hook_called = set()
5f6a1245 142
bffbd5f0
PH
143 def _hook(status):
144 if status['status'] == 'finished':
145 finished_hook_called.add(status['filename'])
933605d7 146 ydl.add_progress_hook(_hook)
70b7e3fb 147 expect_warnings(ydl, test_case.get('expected_warnings', []))
5c892b0b 148
702665c0 149 def get_tc_filename(tc):
ad3dc496 150 return ydl.prepare_filename(dict(tc.get('info_dict', {})))
702665c0 151
28570840 152 res_dict = None
5f6a1245 153
28570840
PH
154 def try_rm_tcs_files(tcs=None):
155 if tcs is None:
156 tcs = test_cases
157 for tc in tcs:
702665c0
JMF
158 tc_filename = get_tc_filename(tc)
159 try_rm(tc_filename)
160 try_rm(tc_filename + '.part')
4eb92208 161 try_rm(os.path.splitext(tc_filename)[0] + '.info.json')
702665c0 162 try_rm_tcs_files()
5c892b0b 163 try:
dd508b7c
FV
164 try_num = 1
165 while True:
8cc83b8d 166 try:
3bef10a5 167 # We're not using .download here since that is just a shim
e8ee972c
PH
168 # for outside error handling, and returns the exit code
169 # instead of the result dict.
308cfe0a
S
170 res_dict = ydl.extract_info(
171 test_case['url'],
172 force_generic_extractor=params.get('force_generic_extractor', False))
8cc83b8d 173 except (DownloadError, ExtractorError) as err:
8cc83b8d 174 # Check if the exception is not a network related one
dcf3eec4 175 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
176 raise
177
dd508b7c 178 if try_num == RETRIES:
8936f68a 179 report_warning('%s failed due to network errors, skipping...' % tname)
dd508b7c
FV
180 return
181
182 print('Retrying: {0} failed tries\n\n##########\n\n'.format(try_num))
183
184 try_num += 1
8cc83b8d
FV
185 else:
186 break
5c892b0b 187
e8ee972c 188 if is_playlist:
880ee801 189 self.assertTrue(res_dict['_type'] in ['playlist', 'multi_video'])
d6e6a422 190 self.assertTrue('entries' in res_dict)
f74b341d 191 expect_info_dict(self, res_dict, test_case.get('info_dict', {}))
d6e6a422 192
e8ee972c 193 if 'playlist_mincount' in test_case:
0990305d
PH
194 assertGreaterEqual(
195 self,
e8ee972c
PH
196 len(res_dict['entries']),
197 test_case['playlist_mincount'],
198 'Expected at least %d in playlist %s, but got only %d' % (
199 test_case['playlist_mincount'], test_case['url'],
200 len(res_dict['entries'])))
829476b8
PH
201 if 'playlist_count' in test_case:
202 self.assertEqual(
203 len(res_dict['entries']),
204 test_case['playlist_count'],
28570840 205 'Expected %d entries in playlist %s, but got %d.' % (
22a6f150 206 test_case['playlist_count'],
28570840 207 test_case['url'],
22a6f150
PH
208 len(res_dict['entries']),
209 ))
28570840
PH
210 if 'playlist_duration_sum' in test_case:
211 got_duration = sum(e['duration'] for e in res_dict['entries'])
212 self.assertEqual(
213 test_case['playlist_duration_sum'], got_duration)
e8ee972c 214
364a69e8
S
215 # Generalize both playlists and single videos to unified format for
216 # simplicity
217 if 'entries' not in res_dict:
218 res_dict['entries'] = [res_dict]
219
80b2fdf9 220 for tc_num, tc in enumerate(test_cases):
364a69e8
S
221 tc_res_dict = res_dict['entries'][tc_num]
222 # First, check test cases' data against extracted data alone
80b2fdf9 223 expect_info_dict(self, tc_res_dict, tc.get('info_dict', {}))
364a69e8 224 # Now, check downloaded file consistency
702665c0 225 tc_filename = get_tc_filename(tc)
511eda8e 226 if not test_case.get('params', {}).get('skip_download', False):
702665c0
JMF
227 self.assertTrue(os.path.exists(tc_filename), msg='Missing file ' + tc_filename)
228 self.assertTrue(tc_filename in finished_hook_called)
08a36c35
S
229 expected_minsize = tc.get('file_minsize', 10000)
230 if expected_minsize is not None:
231 if params.get('test'):
232 expected_minsize = max(expected_minsize, 10000)
233 got_fsize = os.path.getsize(tc_filename)
234 assertGreaterEqual(
235 self, got_fsize, expected_minsize,
236 'Expected %s to be at least %s, but it\'s only %s ' %
237 (tc_filename, format_bytes(expected_minsize),
238 format_bytes(got_fsize)))
239 if 'md5' in tc:
240 md5_for_file = _file_md5(tc_filename)
374560f0 241 self.assertEqual(tc['md5'], md5_for_file)
364a69e8
S
242 # Finally, check test cases' data again but this time against
243 # extracted data from info JSON file written during processing
4eb92208 244 info_json_fn = os.path.splitext(tc_filename)[0] + '.info.json'
f744c0f3
PH
245 self.assertTrue(
246 os.path.exists(info_json_fn),
247 'Missing info file %s' % info_json_fn)
4eb92208 248 with io.open(info_json_fn, encoding='utf-8') as infof:
5c892b0b 249 info_dict = json.load(infof)
f74b341d 250 expect_info_dict(self, info_dict, tc.get('info_dict', {}))
5c892b0b 251 finally:
702665c0 252 try_rm_tcs_files()
d6e6a422 253 if is_playlist and res_dict is not None and res_dict.get('entries'):
28570840
PH
254 # Remove all other files that may have been extracted if the
255 # extractor returns full results even with extract_flat
256 res_tcs = [{'info_dict': e} for e in res_dict['entries']]
257 try_rm_tcs_files(res_tcs)
fd5ff020 258
1535ac2a 259 return test_template
fd5ff020 260
582be358 261
5f6a1245 262# And add them to TestDownload
243c57cf 263tests_counter = {}
264for test_case in defs:
265 name = test_case['name']
266 i = tests_counter.get(name, 0)
267 tests_counter[name] = i + 1
268 tname = f'test_{name}_{i}' if i else f'test_{name}'
8936f68a 269 test_method = generator(test_case, tname)
a0f59cdc 270 test_method.__name__ = str(tname)
c6c22e98
JH
271 ie_list = test_case.get('add_ie')
272 test_method.add_ie = ie_list and ','.join(ie_list)
fd5ff020 273 setattr(TestDownload, test_method.__name__, test_method)
5d01a647 274 del test_method
cdab8aa3
PH
275
276
243c57cf 277def batch_generator(name, num_tests):
278
279 def test_template(self):
280 for i in range(num_tests):
281 getattr(self, f'test_{name}_{i}' if i else f'test_{name}')()
282
283 return test_template
284
285
286for name, num_tests in tests_counter.items():
287 test_method = batch_generator(name, num_tests)
288 test_method.__name__ = f'test_{name}_all'
289 test_method.add_ie = ''
290 setattr(TestDownload, test_method.__name__, test_method)
291 del test_method
292
293
cdab8aa3
PH
294if __name__ == '__main__':
295 unittest.main()