]> jfr.im git - yt-dlp.git/blob - test/test_YoutubeDL.py
[outtmpl] Fix some minor bugs
[yt-dlp.git] / test / test_YoutubeDL.py
1 #!/usr/bin/env python3
2
3 # Allow direct execution
4 import os
5 import sys
6 import unittest
7
8 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
9
10
11 import copy
12 import json
13
14 from test.helper import FakeYDL, assertRegexpMatches
15 from yt_dlp import YoutubeDL
16 from yt_dlp.compat import compat_os_name
17 from yt_dlp.extractor import YoutubeIE
18 from yt_dlp.extractor.common import InfoExtractor
19 from yt_dlp.postprocessor.common import PostProcessor
20 from yt_dlp.utils import (
21 ExtractorError,
22 LazyList,
23 OnDemandPagedList,
24 int_or_none,
25 match_filter_func,
26 )
27
28 TEST_URL = 'http://localhost/sample.mp4'
29
30
31 class YDL(FakeYDL):
32 def __init__(self, *args, **kwargs):
33 super().__init__(*args, **kwargs)
34 self.downloaded_info_dicts = []
35 self.msgs = []
36
37 def process_info(self, info_dict):
38 self.downloaded_info_dicts.append(info_dict.copy())
39
40 def to_screen(self, msg, *args, **kwargs):
41 self.msgs.append(msg)
42
43 def dl(self, *args, **kwargs):
44 assert False, 'Downloader must not be invoked for test_YoutubeDL'
45
46
47 def _make_result(formats, **kwargs):
48 res = {
49 'formats': formats,
50 'id': 'testid',
51 'title': 'testttitle',
52 'extractor': 'testex',
53 'extractor_key': 'TestEx',
54 'webpage_url': 'http://example.com/watch?v=shenanigans',
55 }
56 res.update(**kwargs)
57 return res
58
59
60 class TestFormatSelection(unittest.TestCase):
61 def test_prefer_free_formats(self):
62 # Same resolution => download webm
63 ydl = YDL()
64 ydl.params['prefer_free_formats'] = True
65 formats = [
66 {'ext': 'webm', 'height': 460, 'url': TEST_URL},
67 {'ext': 'mp4', 'height': 460, 'url': TEST_URL},
68 ]
69 info_dict = _make_result(formats)
70 ydl.sort_formats(info_dict)
71 ydl.process_ie_result(info_dict)
72 downloaded = ydl.downloaded_info_dicts[0]
73 self.assertEqual(downloaded['ext'], 'webm')
74
75 # Different resolution => download best quality (mp4)
76 ydl = YDL()
77 ydl.params['prefer_free_formats'] = True
78 formats = [
79 {'ext': 'webm', 'height': 720, 'url': TEST_URL},
80 {'ext': 'mp4', 'height': 1080, 'url': TEST_URL},
81 ]
82 info_dict['formats'] = formats
83 ydl.sort_formats(info_dict)
84 ydl.process_ie_result(info_dict)
85 downloaded = ydl.downloaded_info_dicts[0]
86 self.assertEqual(downloaded['ext'], 'mp4')
87
88 # No prefer_free_formats => prefer mp4 and webm
89 ydl = YDL()
90 ydl.params['prefer_free_formats'] = False
91 formats = [
92 {'ext': 'webm', 'height': 720, 'url': TEST_URL},
93 {'ext': 'mp4', 'height': 720, 'url': TEST_URL},
94 {'ext': 'flv', 'height': 720, 'url': TEST_URL},
95 ]
96 info_dict['formats'] = formats
97 ydl.sort_formats(info_dict)
98 ydl.process_ie_result(info_dict)
99 downloaded = ydl.downloaded_info_dicts[0]
100 self.assertEqual(downloaded['ext'], 'mp4')
101
102 ydl = YDL()
103 ydl.params['prefer_free_formats'] = False
104 formats = [
105 {'ext': 'flv', 'height': 720, 'url': TEST_URL},
106 {'ext': 'webm', 'height': 720, 'url': TEST_URL},
107 ]
108 info_dict['formats'] = formats
109 ydl.sort_formats(info_dict)
110 ydl.process_ie_result(info_dict)
111 downloaded = ydl.downloaded_info_dicts[0]
112 self.assertEqual(downloaded['ext'], 'webm')
113
114 def test_format_selection(self):
115 formats = [
116 {'format_id': '35', 'ext': 'mp4', 'preference': 0, 'url': TEST_URL},
117 {'format_id': 'example-with-dashes', 'ext': 'webm', 'preference': 1, 'url': TEST_URL},
118 {'format_id': '45', 'ext': 'webm', 'preference': 2, 'url': TEST_URL},
119 {'format_id': '47', 'ext': 'webm', 'preference': 3, 'url': TEST_URL},
120 {'format_id': '2', 'ext': 'flv', 'preference': 4, 'url': TEST_URL},
121 ]
122 info_dict = _make_result(formats)
123
124 def test(inp, *expected, multi=False):
125 ydl = YDL({
126 'format': inp,
127 'allow_multiple_video_streams': multi,
128 'allow_multiple_audio_streams': multi,
129 })
130 ydl.process_ie_result(info_dict.copy())
131 downloaded = map(lambda x: x['format_id'], ydl.downloaded_info_dicts)
132 self.assertEqual(list(downloaded), list(expected))
133
134 test('20/47', '47')
135 test('20/71/worst', '35')
136 test(None, '2')
137 test('webm/mp4', '47')
138 test('3gp/40/mp4', '35')
139 test('example-with-dashes', 'example-with-dashes')
140 test('all', '2', '47', '45', 'example-with-dashes', '35')
141 test('mergeall', '2+47+45+example-with-dashes+35', multi=True)
142
143 def test_format_selection_audio(self):
144 formats = [
145 {'format_id': 'audio-low', 'ext': 'webm', 'preference': 1, 'vcodec': 'none', 'url': TEST_URL},
146 {'format_id': 'audio-mid', 'ext': 'webm', 'preference': 2, 'vcodec': 'none', 'url': TEST_URL},
147 {'format_id': 'audio-high', 'ext': 'flv', 'preference': 3, 'vcodec': 'none', 'url': TEST_URL},
148 {'format_id': 'vid', 'ext': 'mp4', 'preference': 4, 'url': TEST_URL},
149 ]
150 info_dict = _make_result(formats)
151
152 ydl = YDL({'format': 'bestaudio'})
153 ydl.process_ie_result(info_dict.copy())
154 downloaded = ydl.downloaded_info_dicts[0]
155 self.assertEqual(downloaded['format_id'], 'audio-high')
156
157 ydl = YDL({'format': 'worstaudio'})
158 ydl.process_ie_result(info_dict.copy())
159 downloaded = ydl.downloaded_info_dicts[0]
160 self.assertEqual(downloaded['format_id'], 'audio-low')
161
162 formats = [
163 {'format_id': 'vid-low', 'ext': 'mp4', 'preference': 1, 'url': TEST_URL},
164 {'format_id': 'vid-high', 'ext': 'mp4', 'preference': 2, 'url': TEST_URL},
165 ]
166 info_dict = _make_result(formats)
167
168 ydl = YDL({'format': 'bestaudio/worstaudio/best'})
169 ydl.process_ie_result(info_dict.copy())
170 downloaded = ydl.downloaded_info_dicts[0]
171 self.assertEqual(downloaded['format_id'], 'vid-high')
172
173 def test_format_selection_audio_exts(self):
174 formats = [
175 {'format_id': 'mp3-64', 'ext': 'mp3', 'abr': 64, 'url': 'http://_', 'vcodec': 'none'},
176 {'format_id': 'ogg-64', 'ext': 'ogg', 'abr': 64, 'url': 'http://_', 'vcodec': 'none'},
177 {'format_id': 'aac-64', 'ext': 'aac', 'abr': 64, 'url': 'http://_', 'vcodec': 'none'},
178 {'format_id': 'mp3-32', 'ext': 'mp3', 'abr': 32, 'url': 'http://_', 'vcodec': 'none'},
179 {'format_id': 'aac-32', 'ext': 'aac', 'abr': 32, 'url': 'http://_', 'vcodec': 'none'},
180 ]
181
182 info_dict = _make_result(formats)
183 ydl = YDL({'format': 'best'})
184 ydl.sort_formats(info_dict)
185 ydl.process_ie_result(copy.deepcopy(info_dict))
186 downloaded = ydl.downloaded_info_dicts[0]
187 self.assertEqual(downloaded['format_id'], 'aac-64')
188
189 ydl = YDL({'format': 'mp3'})
190 ydl.sort_formats(info_dict)
191 ydl.process_ie_result(copy.deepcopy(info_dict))
192 downloaded = ydl.downloaded_info_dicts[0]
193 self.assertEqual(downloaded['format_id'], 'mp3-64')
194
195 ydl = YDL({'prefer_free_formats': True})
196 ydl.sort_formats(info_dict)
197 ydl.process_ie_result(copy.deepcopy(info_dict))
198 downloaded = ydl.downloaded_info_dicts[0]
199 self.assertEqual(downloaded['format_id'], 'ogg-64')
200
201 def test_format_selection_video(self):
202 formats = [
203 {'format_id': 'dash-video-low', 'ext': 'mp4', 'preference': 1, 'acodec': 'none', 'url': TEST_URL},
204 {'format_id': 'dash-video-high', 'ext': 'mp4', 'preference': 2, 'acodec': 'none', 'url': TEST_URL},
205 {'format_id': 'vid', 'ext': 'mp4', 'preference': 3, 'url': TEST_URL},
206 ]
207 info_dict = _make_result(formats)
208
209 ydl = YDL({'format': 'bestvideo'})
210 ydl.process_ie_result(info_dict.copy())
211 downloaded = ydl.downloaded_info_dicts[0]
212 self.assertEqual(downloaded['format_id'], 'dash-video-high')
213
214 ydl = YDL({'format': 'worstvideo'})
215 ydl.process_ie_result(info_dict.copy())
216 downloaded = ydl.downloaded_info_dicts[0]
217 self.assertEqual(downloaded['format_id'], 'dash-video-low')
218
219 ydl = YDL({'format': 'bestvideo[format_id^=dash][format_id$=low]'})
220 ydl.process_ie_result(info_dict.copy())
221 downloaded = ydl.downloaded_info_dicts[0]
222 self.assertEqual(downloaded['format_id'], 'dash-video-low')
223
224 formats = [
225 {'format_id': 'vid-vcodec-dot', 'ext': 'mp4', 'preference': 1, 'vcodec': 'avc1.123456', 'acodec': 'none', 'url': TEST_URL},
226 ]
227 info_dict = _make_result(formats)
228
229 ydl = YDL({'format': 'bestvideo[vcodec=avc1.123456]'})
230 ydl.process_ie_result(info_dict.copy())
231 downloaded = ydl.downloaded_info_dicts[0]
232 self.assertEqual(downloaded['format_id'], 'vid-vcodec-dot')
233
234 def test_format_selection_string_ops(self):
235 formats = [
236 {'format_id': 'abc-cba', 'ext': 'mp4', 'url': TEST_URL},
237 {'format_id': 'zxc-cxz', 'ext': 'webm', 'url': TEST_URL},
238 ]
239 info_dict = _make_result(formats)
240
241 # equals (=)
242 ydl = YDL({'format': '[format_id=abc-cba]'})
243 ydl.process_ie_result(info_dict.copy())
244 downloaded = ydl.downloaded_info_dicts[0]
245 self.assertEqual(downloaded['format_id'], 'abc-cba')
246
247 # does not equal (!=)
248 ydl = YDL({'format': '[format_id!=abc-cba]'})
249 ydl.process_ie_result(info_dict.copy())
250 downloaded = ydl.downloaded_info_dicts[0]
251 self.assertEqual(downloaded['format_id'], 'zxc-cxz')
252
253 ydl = YDL({'format': '[format_id!=abc-cba][format_id!=zxc-cxz]'})
254 self.assertRaises(ExtractorError, ydl.process_ie_result, info_dict.copy())
255
256 # starts with (^=)
257 ydl = YDL({'format': '[format_id^=abc]'})
258 ydl.process_ie_result(info_dict.copy())
259 downloaded = ydl.downloaded_info_dicts[0]
260 self.assertEqual(downloaded['format_id'], 'abc-cba')
261
262 # does not start with (!^=)
263 ydl = YDL({'format': '[format_id!^=abc]'})
264 ydl.process_ie_result(info_dict.copy())
265 downloaded = ydl.downloaded_info_dicts[0]
266 self.assertEqual(downloaded['format_id'], 'zxc-cxz')
267
268 ydl = YDL({'format': '[format_id!^=abc][format_id!^=zxc]'})
269 self.assertRaises(ExtractorError, ydl.process_ie_result, info_dict.copy())
270
271 # ends with ($=)
272 ydl = YDL({'format': '[format_id$=cba]'})
273 ydl.process_ie_result(info_dict.copy())
274 downloaded = ydl.downloaded_info_dicts[0]
275 self.assertEqual(downloaded['format_id'], 'abc-cba')
276
277 # does not end with (!$=)
278 ydl = YDL({'format': '[format_id!$=cba]'})
279 ydl.process_ie_result(info_dict.copy())
280 downloaded = ydl.downloaded_info_dicts[0]
281 self.assertEqual(downloaded['format_id'], 'zxc-cxz')
282
283 ydl = YDL({'format': '[format_id!$=cba][format_id!$=cxz]'})
284 self.assertRaises(ExtractorError, ydl.process_ie_result, info_dict.copy())
285
286 # contains (*=)
287 ydl = YDL({'format': '[format_id*=bc-cb]'})
288 ydl.process_ie_result(info_dict.copy())
289 downloaded = ydl.downloaded_info_dicts[0]
290 self.assertEqual(downloaded['format_id'], 'abc-cba')
291
292 # does not contain (!*=)
293 ydl = YDL({'format': '[format_id!*=bc-cb]'})
294 ydl.process_ie_result(info_dict.copy())
295 downloaded = ydl.downloaded_info_dicts[0]
296 self.assertEqual(downloaded['format_id'], 'zxc-cxz')
297
298 ydl = YDL({'format': '[format_id!*=abc][format_id!*=zxc]'})
299 self.assertRaises(ExtractorError, ydl.process_ie_result, info_dict.copy())
300
301 ydl = YDL({'format': '[format_id!*=-]'})
302 self.assertRaises(ExtractorError, ydl.process_ie_result, info_dict.copy())
303
304 def test_youtube_format_selection(self):
305 # FIXME: Rewrite in accordance with the new format sorting options
306 return
307
308 order = [
309 '38', '37', '46', '22', '45', '35', '44', '18', '34', '43', '6', '5', '17', '36', '13',
310 # Apple HTTP Live Streaming
311 '96', '95', '94', '93', '92', '132', '151',
312 # 3D
313 '85', '84', '102', '83', '101', '82', '100',
314 # Dash video
315 '137', '248', '136', '247', '135', '246',
316 '245', '244', '134', '243', '133', '242', '160',
317 # Dash audio
318 '141', '172', '140', '171', '139',
319 ]
320
321 def format_info(f_id):
322 info = YoutubeIE._formats[f_id].copy()
323
324 # XXX: In real cases InfoExtractor._parse_mpd_formats() fills up 'acodec'
325 # and 'vcodec', while in tests such information is incomplete since
326 # commit a6c2c24479e5f4827ceb06f64d855329c0a6f593
327 # test_YoutubeDL.test_youtube_format_selection is broken without
328 # this fix
329 if 'acodec' in info and 'vcodec' not in info:
330 info['vcodec'] = 'none'
331 elif 'vcodec' in info and 'acodec' not in info:
332 info['acodec'] = 'none'
333
334 info['format_id'] = f_id
335 info['url'] = 'url:' + f_id
336 return info
337 formats_order = [format_info(f_id) for f_id in order]
338
339 info_dict = _make_result(list(formats_order), extractor='youtube')
340 ydl = YDL({'format': 'bestvideo+bestaudio'})
341 ydl.sort_formats(info_dict)
342 ydl.process_ie_result(info_dict)
343 downloaded = ydl.downloaded_info_dicts[0]
344 self.assertEqual(downloaded['format_id'], '248+172')
345 self.assertEqual(downloaded['ext'], 'mp4')
346
347 info_dict = _make_result(list(formats_order), extractor='youtube')
348 ydl = YDL({'format': 'bestvideo[height>=999999]+bestaudio/best'})
349 ydl.sort_formats(info_dict)
350 ydl.process_ie_result(info_dict)
351 downloaded = ydl.downloaded_info_dicts[0]
352 self.assertEqual(downloaded['format_id'], '38')
353
354 info_dict = _make_result(list(formats_order), extractor='youtube')
355 ydl = YDL({'format': 'bestvideo/best,bestaudio'})
356 ydl.sort_formats(info_dict)
357 ydl.process_ie_result(info_dict)
358 downloaded_ids = [info['format_id'] for info in ydl.downloaded_info_dicts]
359 self.assertEqual(downloaded_ids, ['137', '141'])
360
361 info_dict = _make_result(list(formats_order), extractor='youtube')
362 ydl = YDL({'format': '(bestvideo[ext=mp4],bestvideo[ext=webm])+bestaudio'})
363 ydl.sort_formats(info_dict)
364 ydl.process_ie_result(info_dict)
365 downloaded_ids = [info['format_id'] for info in ydl.downloaded_info_dicts]
366 self.assertEqual(downloaded_ids, ['137+141', '248+141'])
367
368 info_dict = _make_result(list(formats_order), extractor='youtube')
369 ydl = YDL({'format': '(bestvideo[ext=mp4],bestvideo[ext=webm])[height<=720]+bestaudio'})
370 ydl.sort_formats(info_dict)
371 ydl.process_ie_result(info_dict)
372 downloaded_ids = [info['format_id'] for info in ydl.downloaded_info_dicts]
373 self.assertEqual(downloaded_ids, ['136+141', '247+141'])
374
375 info_dict = _make_result(list(formats_order), extractor='youtube')
376 ydl = YDL({'format': '(bestvideo[ext=none]/bestvideo[ext=webm])+bestaudio'})
377 ydl.sort_formats(info_dict)
378 ydl.process_ie_result(info_dict)
379 downloaded_ids = [info['format_id'] for info in ydl.downloaded_info_dicts]
380 self.assertEqual(downloaded_ids, ['248+141'])
381
382 for f1, f2 in zip(formats_order, formats_order[1:]):
383 info_dict = _make_result([f1, f2], extractor='youtube')
384 ydl = YDL({'format': 'best/bestvideo'})
385 ydl.sort_formats(info_dict)
386 ydl.process_ie_result(info_dict)
387 downloaded = ydl.downloaded_info_dicts[0]
388 self.assertEqual(downloaded['format_id'], f1['format_id'])
389
390 info_dict = _make_result([f2, f1], extractor='youtube')
391 ydl = YDL({'format': 'best/bestvideo'})
392 ydl.sort_formats(info_dict)
393 ydl.process_ie_result(info_dict)
394 downloaded = ydl.downloaded_info_dicts[0]
395 self.assertEqual(downloaded['format_id'], f1['format_id'])
396
397 def test_audio_only_extractor_format_selection(self):
398 # For extractors with incomplete formats (all formats are audio-only or
399 # video-only) best and worst should fallback to corresponding best/worst
400 # video-only or audio-only formats (as per
401 # https://github.com/ytdl-org/youtube-dl/pull/5556)
402 formats = [
403 {'format_id': 'low', 'ext': 'mp3', 'preference': 1, 'vcodec': 'none', 'url': TEST_URL},
404 {'format_id': 'high', 'ext': 'mp3', 'preference': 2, 'vcodec': 'none', 'url': TEST_URL},
405 ]
406 info_dict = _make_result(formats)
407
408 ydl = YDL({'format': 'best'})
409 ydl.process_ie_result(info_dict.copy())
410 downloaded = ydl.downloaded_info_dicts[0]
411 self.assertEqual(downloaded['format_id'], 'high')
412
413 ydl = YDL({'format': 'worst'})
414 ydl.process_ie_result(info_dict.copy())
415 downloaded = ydl.downloaded_info_dicts[0]
416 self.assertEqual(downloaded['format_id'], 'low')
417
418 def test_format_not_available(self):
419 formats = [
420 {'format_id': 'regular', 'ext': 'mp4', 'height': 360, 'url': TEST_URL},
421 {'format_id': 'video', 'ext': 'mp4', 'height': 720, 'acodec': 'none', 'url': TEST_URL},
422 ]
423 info_dict = _make_result(formats)
424
425 # This must fail since complete video-audio format does not match filter
426 # and extractor does not provide incomplete only formats (i.e. only
427 # video-only or audio-only).
428 ydl = YDL({'format': 'best[height>360]'})
429 self.assertRaises(ExtractorError, ydl.process_ie_result, info_dict.copy())
430
431 def test_format_selection_issue_10083(self):
432 # See https://github.com/ytdl-org/youtube-dl/issues/10083
433 formats = [
434 {'format_id': 'regular', 'height': 360, 'url': TEST_URL},
435 {'format_id': 'video', 'height': 720, 'acodec': 'none', 'url': TEST_URL},
436 {'format_id': 'audio', 'vcodec': 'none', 'url': TEST_URL},
437 ]
438 info_dict = _make_result(formats)
439
440 ydl = YDL({'format': 'best[height>360]/bestvideo[height>360]+bestaudio'})
441 ydl.process_ie_result(info_dict.copy())
442 self.assertEqual(ydl.downloaded_info_dicts[0]['format_id'], 'video+audio')
443
444 def test_invalid_format_specs(self):
445 def assert_syntax_error(format_spec):
446 self.assertRaises(SyntaxError, YDL, {'format': format_spec})
447
448 assert_syntax_error('bestvideo,,best')
449 assert_syntax_error('+bestaudio')
450 assert_syntax_error('bestvideo+')
451 assert_syntax_error('/')
452 assert_syntax_error('[720<height]')
453
454 def test_format_filtering(self):
455 formats = [
456 {'format_id': 'A', 'filesize': 500, 'width': 1000},
457 {'format_id': 'B', 'filesize': 1000, 'width': 500},
458 {'format_id': 'C', 'filesize': 1000, 'width': 400},
459 {'format_id': 'D', 'filesize': 2000, 'width': 600},
460 {'format_id': 'E', 'filesize': 3000},
461 {'format_id': 'F'},
462 {'format_id': 'G', 'filesize': 1000000},
463 ]
464 for f in formats:
465 f['url'] = 'http://_/'
466 f['ext'] = 'unknown'
467 info_dict = _make_result(formats, _format_sort_fields=('id', ))
468
469 ydl = YDL({'format': 'best[filesize<3000]'})
470 ydl.process_ie_result(info_dict)
471 downloaded = ydl.downloaded_info_dicts[0]
472 self.assertEqual(downloaded['format_id'], 'D')
473
474 ydl = YDL({'format': 'best[filesize<=3000]'})
475 ydl.process_ie_result(info_dict)
476 downloaded = ydl.downloaded_info_dicts[0]
477 self.assertEqual(downloaded['format_id'], 'E')
478
479 ydl = YDL({'format': 'best[filesize <= ? 3000]'})
480 ydl.process_ie_result(info_dict)
481 downloaded = ydl.downloaded_info_dicts[0]
482 self.assertEqual(downloaded['format_id'], 'F')
483
484 ydl = YDL({'format': 'best [filesize = 1000] [width>450]'})
485 ydl.process_ie_result(info_dict)
486 downloaded = ydl.downloaded_info_dicts[0]
487 self.assertEqual(downloaded['format_id'], 'B')
488
489 ydl = YDL({'format': 'best [filesize = 1000] [width!=450]'})
490 ydl.process_ie_result(info_dict)
491 downloaded = ydl.downloaded_info_dicts[0]
492 self.assertEqual(downloaded['format_id'], 'C')
493
494 ydl = YDL({'format': '[filesize>?1]'})
495 ydl.process_ie_result(info_dict)
496 downloaded = ydl.downloaded_info_dicts[0]
497 self.assertEqual(downloaded['format_id'], 'G')
498
499 ydl = YDL({'format': '[filesize<1M]'})
500 ydl.process_ie_result(info_dict)
501 downloaded = ydl.downloaded_info_dicts[0]
502 self.assertEqual(downloaded['format_id'], 'E')
503
504 ydl = YDL({'format': '[filesize<1MiB]'})
505 ydl.process_ie_result(info_dict)
506 downloaded = ydl.downloaded_info_dicts[0]
507 self.assertEqual(downloaded['format_id'], 'G')
508
509 ydl = YDL({'format': 'all[width>=400][width<=600]'})
510 ydl.process_ie_result(info_dict)
511 downloaded_ids = [info['format_id'] for info in ydl.downloaded_info_dicts]
512 self.assertEqual(downloaded_ids, ['D', 'C', 'B'])
513
514 ydl = YDL({'format': 'best[height<40]'})
515 try:
516 ydl.process_ie_result(info_dict)
517 except ExtractorError:
518 pass
519 self.assertEqual(ydl.downloaded_info_dicts, [])
520
521 def test_default_format_spec(self):
522 ydl = YDL({'simulate': True})
523 self.assertEqual(ydl._default_format_spec({}), 'bestvideo*+bestaudio/best')
524
525 ydl = YDL({})
526 self.assertEqual(ydl._default_format_spec({'is_live': True}), 'best/bestvideo+bestaudio')
527
528 ydl = YDL({'simulate': True})
529 self.assertEqual(ydl._default_format_spec({'is_live': True}), 'bestvideo*+bestaudio/best')
530
531 ydl = YDL({'outtmpl': '-'})
532 self.assertEqual(ydl._default_format_spec({}), 'best/bestvideo+bestaudio')
533
534 ydl = YDL({})
535 self.assertEqual(ydl._default_format_spec({}, download=False), 'bestvideo*+bestaudio/best')
536 self.assertEqual(ydl._default_format_spec({'is_live': True}), 'best/bestvideo+bestaudio')
537
538
539 class TestYoutubeDL(unittest.TestCase):
540 def test_subtitles(self):
541 def s_formats(lang, autocaption=False):
542 return [{
543 'ext': ext,
544 'url': f'http://localhost/video.{lang}.{ext}',
545 '_auto': autocaption,
546 } for ext in ['vtt', 'srt', 'ass']]
547 subtitles = {l: s_formats(l) for l in ['en', 'fr', 'es']}
548 auto_captions = {l: s_formats(l, True) for l in ['it', 'pt', 'es']}
549 info_dict = {
550 'id': 'test',
551 'title': 'Test',
552 'url': 'http://localhost/video.mp4',
553 'subtitles': subtitles,
554 'automatic_captions': auto_captions,
555 'extractor': 'TEST',
556 'webpage_url': 'http://example.com/watch?v=shenanigans',
557 }
558
559 def get_info(params={}):
560 params.setdefault('simulate', True)
561 ydl = YDL(params)
562 ydl.report_warning = lambda *args, **kargs: None
563 return ydl.process_video_result(info_dict, download=False)
564
565 result = get_info()
566 self.assertFalse(result.get('requested_subtitles'))
567 self.assertEqual(result['subtitles'], subtitles)
568 self.assertEqual(result['automatic_captions'], auto_captions)
569
570 result = get_info({'writesubtitles': True})
571 subs = result['requested_subtitles']
572 self.assertTrue(subs)
573 self.assertEqual(set(subs.keys()), {'en'})
574 self.assertTrue(subs['en'].get('data') is None)
575 self.assertEqual(subs['en']['ext'], 'ass')
576
577 result = get_info({'writesubtitles': True, 'subtitlesformat': 'foo/srt'})
578 subs = result['requested_subtitles']
579 self.assertEqual(subs['en']['ext'], 'srt')
580
581 result = get_info({'writesubtitles': True, 'subtitleslangs': ['es', 'fr', 'it']})
582 subs = result['requested_subtitles']
583 self.assertTrue(subs)
584 self.assertEqual(set(subs.keys()), {'es', 'fr'})
585
586 result = get_info({'writesubtitles': True, 'subtitleslangs': ['all', '-en']})
587 subs = result['requested_subtitles']
588 self.assertTrue(subs)
589 self.assertEqual(set(subs.keys()), {'es', 'fr'})
590
591 result = get_info({'writesubtitles': True, 'subtitleslangs': ['en', 'fr', '-en']})
592 subs = result['requested_subtitles']
593 self.assertTrue(subs)
594 self.assertEqual(set(subs.keys()), {'fr'})
595
596 result = get_info({'writesubtitles': True, 'subtitleslangs': ['-en', 'en']})
597 subs = result['requested_subtitles']
598 self.assertTrue(subs)
599 self.assertEqual(set(subs.keys()), {'en'})
600
601 result = get_info({'writesubtitles': True, 'subtitleslangs': ['e.+']})
602 subs = result['requested_subtitles']
603 self.assertTrue(subs)
604 self.assertEqual(set(subs.keys()), {'es', 'en'})
605
606 result = get_info({'writesubtitles': True, 'writeautomaticsub': True, 'subtitleslangs': ['es', 'pt']})
607 subs = result['requested_subtitles']
608 self.assertTrue(subs)
609 self.assertEqual(set(subs.keys()), {'es', 'pt'})
610 self.assertFalse(subs['es']['_auto'])
611 self.assertTrue(subs['pt']['_auto'])
612
613 result = get_info({'writeautomaticsub': True, 'subtitleslangs': ['es', 'pt']})
614 subs = result['requested_subtitles']
615 self.assertTrue(subs)
616 self.assertEqual(set(subs.keys()), {'es', 'pt'})
617 self.assertTrue(subs['es']['_auto'])
618 self.assertTrue(subs['pt']['_auto'])
619
620 def test_add_extra_info(self):
621 test_dict = {
622 'extractor': 'Foo',
623 }
624 extra_info = {
625 'extractor': 'Bar',
626 'playlist': 'funny videos',
627 }
628 YDL.add_extra_info(test_dict, extra_info)
629 self.assertEqual(test_dict['extractor'], 'Foo')
630 self.assertEqual(test_dict['playlist'], 'funny videos')
631
632 outtmpl_info = {
633 'id': '1234',
634 'ext': 'mp4',
635 'width': None,
636 'height': 1080,
637 'filesize': 1024,
638 'title1': '$PATH',
639 'title2': '%PATH%',
640 'title3': 'foo/bar\\test',
641 'title4': 'foo "bar" test',
642 'title5': 'áéí 𝐀',
643 'timestamp': 1618488000,
644 'duration': 100000,
645 'playlist_index': 1,
646 'playlist_autonumber': 2,
647 '__last_playlist_index': 100,
648 'n_entries': 10,
649 'formats': [
650 {'id': 'id 1', 'height': 1080, 'width': 1920},
651 {'id': 'id 2', 'height': 720},
652 {'id': 'id 3'}
653 ]
654 }
655
656 def test_prepare_outtmpl_and_filename(self):
657 def test(tmpl, expected, *, info=None, **params):
658 params['outtmpl'] = tmpl
659 ydl = FakeYDL(params)
660 ydl._num_downloads = 1
661 self.assertEqual(ydl.validate_outtmpl(tmpl), None)
662
663 out = ydl.evaluate_outtmpl(tmpl, info or self.outtmpl_info)
664 fname = ydl.prepare_filename(info or self.outtmpl_info)
665
666 if not isinstance(expected, (list, tuple)):
667 expected = (expected, expected)
668 for (name, got), expect in zip((('outtmpl', out), ('filename', fname)), expected):
669 if callable(expect):
670 self.assertTrue(expect(got), f'Wrong {name} from {tmpl}')
671 else:
672 self.assertEqual(got, expect, f'Wrong {name} from {tmpl}')
673
674 # Side-effects
675 original_infodict = dict(self.outtmpl_info)
676 test('foo.bar', 'foo.bar')
677 original_infodict['epoch'] = self.outtmpl_info.get('epoch')
678 self.assertTrue(isinstance(original_infodict['epoch'], int))
679 test('%(epoch)d', int_or_none)
680 self.assertEqual(original_infodict, self.outtmpl_info)
681
682 # Auto-generated fields
683 test('%(id)s.%(ext)s', '1234.mp4')
684 test('%(duration_string)s', ('27:46:40', '27-46-40'))
685 test('%(resolution)s', '1080p')
686 test('%(playlist_index)s', '001')
687 test('%(playlist_autonumber)s', '02')
688 test('%(autonumber)s', '00001')
689 test('%(autonumber+2)03d', '005', autonumber_start=3)
690 test('%(autonumber)s', '001', autonumber_size=3)
691
692 # Escaping %
693 test('%', '%')
694 test('%%', '%')
695 test('%%%%', '%%')
696 test('%s', '%s')
697 test('%%%s', '%%s')
698 test('%d', '%d')
699 test('%abc%', '%abc%')
700 test('%%(width)06d.%(ext)s', '%(width)06d.mp4')
701 test('%%%(height)s', '%1080')
702 test('%(width)06d.%(ext)s', 'NA.mp4')
703 test('%(width)06d.%%(ext)s', 'NA.%(ext)s')
704 test('%%(width)06d.%(ext)s', '%(width)06d.mp4')
705
706 # ID sanitization
707 test('%(id)s', '_abcd', info={'id': '_abcd'})
708 test('%(some_id)s', '_abcd', info={'some_id': '_abcd'})
709 test('%(formats.0.id)s', '_abcd', info={'formats': [{'id': '_abcd'}]})
710 test('%(id)s', '-abcd', info={'id': '-abcd'})
711 test('%(id)s', '.abcd', info={'id': '.abcd'})
712 test('%(id)s', 'ab__cd', info={'id': 'ab__cd'})
713 test('%(id)s', ('ab:cd', 'ab:cd'), info={'id': 'ab:cd'})
714 test('%(id.0)s', '-', info={'id': '--'})
715
716 # Invalid templates
717 self.assertTrue(isinstance(YoutubeDL.validate_outtmpl('%(title)'), ValueError))
718 test('%(invalid@tmpl|def)s', 'none', outtmpl_na_placeholder='none')
719 test('%(..)s', 'NA')
720 test('%(formats.{id)s', 'NA')
721
722 # Entire info_dict
723 def expect_same_infodict(out):
724 got_dict = json.loads(out)
725 for info_field, expected in self.outtmpl_info.items():
726 self.assertEqual(got_dict.get(info_field), expected, info_field)
727 return True
728
729 test('%()j', (expect_same_infodict, str))
730
731 # NA placeholder
732 NA_TEST_OUTTMPL = '%(uploader_date)s-%(width)d-%(x|def)s-%(id)s.%(ext)s'
733 test(NA_TEST_OUTTMPL, 'NA-NA-def-1234.mp4')
734 test(NA_TEST_OUTTMPL, 'none-none-def-1234.mp4', outtmpl_na_placeholder='none')
735 test(NA_TEST_OUTTMPL, '--def-1234.mp4', outtmpl_na_placeholder='')
736 test('%(non_existent.0)s', 'NA')
737
738 # String formatting
739 FMT_TEST_OUTTMPL = '%%(height)%s.%%(ext)s'
740 test(FMT_TEST_OUTTMPL % 's', '1080.mp4')
741 test(FMT_TEST_OUTTMPL % 'd', '1080.mp4')
742 test(FMT_TEST_OUTTMPL % '6d', ' 1080.mp4')
743 test(FMT_TEST_OUTTMPL % '-6d', '1080 .mp4')
744 test(FMT_TEST_OUTTMPL % '06d', '001080.mp4')
745 test(FMT_TEST_OUTTMPL % ' 06d', ' 01080.mp4')
746 test(FMT_TEST_OUTTMPL % ' 06d', ' 01080.mp4')
747 test(FMT_TEST_OUTTMPL % '0 6d', ' 01080.mp4')
748 test(FMT_TEST_OUTTMPL % '0 6d', ' 01080.mp4')
749 test(FMT_TEST_OUTTMPL % ' 0 6d', ' 01080.mp4')
750
751 # Type casting
752 test('%(id)d', '1234')
753 test('%(height)c', '1')
754 test('%(ext)c', 'm')
755 test('%(id)d %(id)r', "1234 '1234'")
756 test('%(id)r %(height)r', "'1234' 1080")
757 test('%(ext)s-%(ext|def)d', 'mp4-def')
758 test('%(width|0)04d', '0')
759 test('a%(width|b)d', 'ab', outtmpl_na_placeholder='none')
760
761 FORMATS = self.outtmpl_info['formats']
762 sanitize = lambda x: x.replace(':', ':').replace('"', """).replace('\n', ' ')
763
764 # Custom type casting
765 test('%(formats.:.id)l', 'id 1, id 2, id 3')
766 test('%(formats.:.id)#l', ('id 1\nid 2\nid 3', 'id 1 id 2 id 3'))
767 test('%(ext)l', 'mp4')
768 test('%(formats.:.id) 18l', ' id 1, id 2, id 3')
769 test('%(formats)j', (json.dumps(FORMATS), sanitize(json.dumps(FORMATS))))
770 test('%(formats)#j', (json.dumps(FORMATS, indent=4), sanitize(json.dumps(FORMATS, indent=4))))
771 test('%(title5).3B', 'á')
772 test('%(title5)U', 'áéí 𝐀')
773 test('%(title5)#U', 'a\u0301e\u0301i\u0301 𝐀')
774 test('%(title5)+U', 'áéí A')
775 test('%(title5)+#U', 'a\u0301e\u0301i\u0301 A')
776 test('%(height)D', '1k')
777 test('%(filesize)#D', '1Ki')
778 test('%(height)5.2D', ' 1.08k')
779 test('%(title4)#S', 'foo_bar_test')
780 test('%(title4).10S', ('foo "bar" ', 'foo "bar"' + ('#' if compat_os_name == 'nt' else ' ')))
781 if compat_os_name == 'nt':
782 test('%(title4)q', ('"foo \\"bar\\" test"', ""foo ⧹"bar⧹" test""))
783 test('%(formats.:.id)#q', ('"id 1" "id 2" "id 3"', '"id 1" "id 2" "id 3"'))
784 test('%(formats.0.id)#q', ('"id 1"', '"id 1"'))
785 else:
786 test('%(title4)q', ('\'foo "bar" test\'', '\'foo "bar" test\''))
787 test('%(formats.:.id)#q', "'id 1' 'id 2' 'id 3'")
788 test('%(formats.0.id)#q', "'id 1'")
789
790 # Internal formatting
791 test('%(timestamp-1000>%H-%M-%S)s', '11-43-20')
792 test('%(title|%)s %(title|%%)s', '% %%')
793 test('%(id+1-height+3)05d', '00158')
794 test('%(width+100)05d', 'NA')
795 test('%(formats.0) 15s', ('% 15s' % FORMATS[0], '% 15s' % sanitize(str(FORMATS[0]))))
796 test('%(formats.0)r', (repr(FORMATS[0]), sanitize(repr(FORMATS[0]))))
797 test('%(height.0)03d', '001')
798 test('%(-height.0)04d', '-001')
799 test('%(formats.-1.id)s', FORMATS[-1]['id'])
800 test('%(formats.0.id.-1)d', FORMATS[0]['id'][-1])
801 test('%(formats.3)s', 'NA')
802 test('%(formats.:2:-1)r', repr(FORMATS[:2:-1]))
803 test('%(formats.0.id.-1+id)f', '1235.000000')
804 test('%(formats.0.id.-1+formats.1.id.-1)d', '3')
805 out = json.dumps([{'id': f['id'], 'height.:2': str(f['height'])[:2]}
806 if 'height' in f else {'id': f['id']}
807 for f in FORMATS])
808 test('%(formats.:.{id,height.:2})j', (out, sanitize(out)))
809 test('%(formats.:.{id,height}.id)l', ', '.join(f['id'] for f in FORMATS))
810 test('%(.{id,title})j', ('{"id": "1234"}', '{"id": "1234"}'))
811
812 # Alternates
813 test('%(title,id)s', '1234')
814 test('%(width-100,height+20|def)d', '1100')
815 test('%(width-100,height+width|def)s', 'def')
816 test('%(timestamp-x>%H\\,%M\\,%S,timestamp>%H\\,%M\\,%S)s', '12,00,00')
817
818 # Replacement
819 test('%(id&foo)s.bar', 'foo.bar')
820 test('%(title&foo)s.bar', 'NA.bar')
821 test('%(title&foo|baz)s.bar', 'baz.bar')
822 test('%(x,id&foo|baz)s.bar', 'foo.bar')
823 test('%(x,title&foo|baz)s.bar', 'baz.bar')
824 test('%(id&a\nb|)s', ('a\nb', 'a b'))
825 test('%(id&hi {:>10} {}|)s', 'hi 1234 1234')
826 test(R'%(id&{0} {}|)s', 'NA')
827 test(R'%(id&{0.1}|)s', 'NA')
828
829 # Laziness
830 def gen():
831 yield from range(5)
832 raise self.assertTrue(False, 'LazyList should not be evaluated till here')
833 test('%(key.4)s', '4', info={'key': LazyList(gen())})
834
835 # Empty filename
836 test('%(foo|)s-%(bar|)s.%(ext)s', '-.mp4')
837 # test('%(foo|)s.%(ext)s', ('.mp4', '_.mp4')) # fixme
838 # test('%(foo|)s', ('', '_')) # fixme
839
840 # Environment variable expansion for prepare_filename
841 os.environ['__yt_dlp_var'] = 'expanded'
842 envvar = '%__yt_dlp_var%' if compat_os_name == 'nt' else '$__yt_dlp_var'
843 test(envvar, (envvar, 'expanded'))
844 if compat_os_name == 'nt':
845 test('%s%', ('%s%', '%s%'))
846 os.environ['s'] = 'expanded'
847 test('%s%', ('%s%', 'expanded')) # %s% should be expanded before escaping %s
848 os.environ['(test)s'] = 'expanded'
849 test('%(test)s%', ('NA%', 'expanded')) # Environment should take priority over template
850
851 # Path expansion and escaping
852 test('Hello %(title1)s', 'Hello $PATH')
853 test('Hello %(title2)s', 'Hello %PATH%')
854 test('%(title3)s', ('foo/bar\\test', 'foo⧸bar⧹test'))
855 test('folder/%(title3)s', ('folder/foo/bar\\test', 'folder%sfoo⧸bar⧹test' % os.path.sep))
856
857 def test_format_note(self):
858 ydl = YoutubeDL()
859 self.assertEqual(ydl._format_note({}), '')
860 assertRegexpMatches(self, ydl._format_note({
861 'vbr': 10,
862 }), r'^\s*10k$')
863 assertRegexpMatches(self, ydl._format_note({
864 'fps': 30,
865 }), r'^30fps$')
866
867 def test_postprocessors(self):
868 filename = 'post-processor-testfile.mp4'
869 audiofile = filename + '.mp3'
870
871 class SimplePP(PostProcessor):
872 def run(self, info):
873 with open(audiofile, 'w') as f:
874 f.write('EXAMPLE')
875 return [info['filepath']], info
876
877 def run_pp(params, PP):
878 with open(filename, 'w') as f:
879 f.write('EXAMPLE')
880 ydl = YoutubeDL(params)
881 ydl.add_post_processor(PP())
882 ydl.post_process(filename, {'filepath': filename})
883
884 run_pp({'keepvideo': True}, SimplePP)
885 self.assertTrue(os.path.exists(filename), '%s doesn\'t exist' % filename)
886 self.assertTrue(os.path.exists(audiofile), '%s doesn\'t exist' % audiofile)
887 os.unlink(filename)
888 os.unlink(audiofile)
889
890 run_pp({'keepvideo': False}, SimplePP)
891 self.assertFalse(os.path.exists(filename), '%s exists' % filename)
892 self.assertTrue(os.path.exists(audiofile), '%s doesn\'t exist' % audiofile)
893 os.unlink(audiofile)
894
895 class ModifierPP(PostProcessor):
896 def run(self, info):
897 with open(info['filepath'], 'w') as f:
898 f.write('MODIFIED')
899 return [], info
900
901 run_pp({'keepvideo': False}, ModifierPP)
902 self.assertTrue(os.path.exists(filename), '%s doesn\'t exist' % filename)
903 os.unlink(filename)
904
905 def test_match_filter(self):
906 first = {
907 'id': '1',
908 'url': TEST_URL,
909 'title': 'one',
910 'extractor': 'TEST',
911 'duration': 30,
912 'filesize': 10 * 1024,
913 'playlist_id': '42',
914 'uploader': "變態妍字幕版 太妍 тест",
915 'creator': "тест ' 123 ' тест--",
916 'webpage_url': 'http://example.com/watch?v=shenanigans',
917 }
918 second = {
919 'id': '2',
920 'url': TEST_URL,
921 'title': 'two',
922 'extractor': 'TEST',
923 'duration': 10,
924 'description': 'foo',
925 'filesize': 5 * 1024,
926 'playlist_id': '43',
927 'uploader': "тест 123",
928 'webpage_url': 'http://example.com/watch?v=SHENANIGANS',
929 }
930 videos = [first, second]
931
932 def get_videos(filter_=None):
933 ydl = YDL({'match_filter': filter_, 'simulate': True})
934 for v in videos:
935 ydl.process_ie_result(v, download=True)
936 return [v['id'] for v in ydl.downloaded_info_dicts]
937
938 res = get_videos()
939 self.assertEqual(res, ['1', '2'])
940
941 def f(v, incomplete):
942 if v['id'] == '1':
943 return None
944 else:
945 return 'Video id is not 1'
946 res = get_videos(f)
947 self.assertEqual(res, ['1'])
948
949 f = match_filter_func('duration < 30')
950 res = get_videos(f)
951 self.assertEqual(res, ['2'])
952
953 f = match_filter_func('description = foo')
954 res = get_videos(f)
955 self.assertEqual(res, ['2'])
956
957 f = match_filter_func('description =? foo')
958 res = get_videos(f)
959 self.assertEqual(res, ['1', '2'])
960
961 f = match_filter_func('filesize > 5KiB')
962 res = get_videos(f)
963 self.assertEqual(res, ['1'])
964
965 f = match_filter_func('playlist_id = 42')
966 res = get_videos(f)
967 self.assertEqual(res, ['1'])
968
969 f = match_filter_func('uploader = "變態妍字幕版 太妍 тест"')
970 res = get_videos(f)
971 self.assertEqual(res, ['1'])
972
973 f = match_filter_func('uploader != "變態妍字幕版 太妍 тест"')
974 res = get_videos(f)
975 self.assertEqual(res, ['2'])
976
977 f = match_filter_func('creator = "тест \' 123 \' тест--"')
978 res = get_videos(f)
979 self.assertEqual(res, ['1'])
980
981 f = match_filter_func("creator = 'тест \\' 123 \\' тест--'")
982 res = get_videos(f)
983 self.assertEqual(res, ['1'])
984
985 f = match_filter_func(r"creator = 'тест \' 123 \' тест--' & duration > 30")
986 res = get_videos(f)
987 self.assertEqual(res, [])
988
989 def test_playlist_items_selection(self):
990 INDICES, PAGE_SIZE = list(range(1, 11)), 3
991
992 def entry(i, evaluated):
993 evaluated.append(i)
994 return {
995 'id': str(i),
996 'title': str(i),
997 'url': TEST_URL,
998 }
999
1000 def pagedlist_entries(evaluated):
1001 def page_func(n):
1002 start = PAGE_SIZE * n
1003 for i in INDICES[start: start + PAGE_SIZE]:
1004 yield entry(i, evaluated)
1005 return OnDemandPagedList(page_func, PAGE_SIZE)
1006
1007 def page_num(i):
1008 return (i + PAGE_SIZE - 1) // PAGE_SIZE
1009
1010 def generator_entries(evaluated):
1011 for i in INDICES:
1012 yield entry(i, evaluated)
1013
1014 def list_entries(evaluated):
1015 return list(generator_entries(evaluated))
1016
1017 def lazylist_entries(evaluated):
1018 return LazyList(generator_entries(evaluated))
1019
1020 def get_downloaded_info_dicts(params, entries):
1021 ydl = YDL(params)
1022 ydl.process_ie_result({
1023 '_type': 'playlist',
1024 'id': 'test',
1025 'extractor': 'test:playlist',
1026 'extractor_key': 'test:playlist',
1027 'webpage_url': 'http://example.com',
1028 'entries': entries,
1029 })
1030 return ydl.downloaded_info_dicts
1031
1032 def test_selection(params, expected_ids, evaluate_all=False):
1033 expected_ids = list(expected_ids)
1034 if evaluate_all:
1035 generator_eval = pagedlist_eval = INDICES
1036 elif not expected_ids:
1037 generator_eval = pagedlist_eval = []
1038 else:
1039 generator_eval = INDICES[0: max(expected_ids)]
1040 pagedlist_eval = INDICES[PAGE_SIZE * page_num(min(expected_ids)) - PAGE_SIZE:
1041 PAGE_SIZE * page_num(max(expected_ids))]
1042
1043 for name, func, expected_eval in (
1044 ('list', list_entries, INDICES),
1045 ('Generator', generator_entries, generator_eval),
1046 # ('LazyList', lazylist_entries, generator_eval), # Generator and LazyList follow the exact same code path
1047 ('PagedList', pagedlist_entries, pagedlist_eval),
1048 ):
1049 evaluated = []
1050 entries = func(evaluated)
1051 results = [(v['playlist_autonumber'] - 1, (int(v['id']), v['playlist_index']))
1052 for v in get_downloaded_info_dicts(params, entries)]
1053 self.assertEqual(results, list(enumerate(zip(expected_ids, expected_ids))), f'Entries of {name} for {params}')
1054 self.assertEqual(sorted(evaluated), expected_eval, f'Evaluation of {name} for {params}')
1055
1056 test_selection({}, INDICES)
1057 test_selection({'playlistend': 20}, INDICES, True)
1058 test_selection({'playlistend': 2}, INDICES[:2])
1059 test_selection({'playliststart': 11}, [], True)
1060 test_selection({'playliststart': 2}, INDICES[1:])
1061 test_selection({'playlist_items': '2-4'}, INDICES[1:4])
1062 test_selection({'playlist_items': '2,4'}, [2, 4])
1063 test_selection({'playlist_items': '20'}, [], True)
1064 test_selection({'playlist_items': '0'}, [])
1065
1066 # Tests for https://github.com/ytdl-org/youtube-dl/issues/10591
1067 test_selection({'playlist_items': '2-4,3-4,3'}, [2, 3, 4])
1068 test_selection({'playlist_items': '4,2'}, [4, 2])
1069
1070 # Tests for https://github.com/yt-dlp/yt-dlp/issues/720
1071 # https://github.com/yt-dlp/yt-dlp/issues/302
1072 test_selection({'playlistreverse': True}, INDICES[::-1])
1073 test_selection({'playliststart': 2, 'playlistreverse': True}, INDICES[:0:-1])
1074 test_selection({'playlist_items': '2,4', 'playlistreverse': True}, [4, 2])
1075 test_selection({'playlist_items': '4,2'}, [4, 2])
1076
1077 # Tests for --playlist-items start:end:step
1078 test_selection({'playlist_items': ':'}, INDICES, True)
1079 test_selection({'playlist_items': '::1'}, INDICES, True)
1080 test_selection({'playlist_items': '::-1'}, INDICES[::-1], True)
1081 test_selection({'playlist_items': ':6'}, INDICES[:6])
1082 test_selection({'playlist_items': ':-6'}, INDICES[:-5], True)
1083 test_selection({'playlist_items': '-1:6:-2'}, INDICES[:4:-2], True)
1084 test_selection({'playlist_items': '9:-6:-2'}, INDICES[8:3:-2], True)
1085
1086 test_selection({'playlist_items': '1:inf:2'}, INDICES[::2], True)
1087 test_selection({'playlist_items': '-2:inf'}, INDICES[-2:], True)
1088 test_selection({'playlist_items': ':inf:-1'}, [], True)
1089 test_selection({'playlist_items': '0-2:2'}, [2])
1090 test_selection({'playlist_items': '1-:2'}, INDICES[::2], True)
1091 test_selection({'playlist_items': '0--2:2'}, INDICES[1:-1:2], True)
1092
1093 test_selection({'playlist_items': '10::3'}, [10], True)
1094 test_selection({'playlist_items': '-1::3'}, [10], True)
1095 test_selection({'playlist_items': '11::3'}, [], True)
1096 test_selection({'playlist_items': '-15::2'}, INDICES[1::2], True)
1097 test_selection({'playlist_items': '-15::15'}, [], True)
1098
1099 def test_do_not_override_ie_key_in_url_transparent(self):
1100 ydl = YDL()
1101
1102 class Foo1IE(InfoExtractor):
1103 _VALID_URL = r'foo1:'
1104
1105 def _real_extract(self, url):
1106 return {
1107 '_type': 'url_transparent',
1108 'url': 'foo2:',
1109 'ie_key': 'Foo2',
1110 'title': 'foo1 title',
1111 'id': 'foo1_id',
1112 }
1113
1114 class Foo2IE(InfoExtractor):
1115 _VALID_URL = r'foo2:'
1116
1117 def _real_extract(self, url):
1118 return {
1119 '_type': 'url',
1120 'url': 'foo3:',
1121 'ie_key': 'Foo3',
1122 }
1123
1124 class Foo3IE(InfoExtractor):
1125 _VALID_URL = r'foo3:'
1126
1127 def _real_extract(self, url):
1128 return _make_result([{'url': TEST_URL}], title='foo3 title')
1129
1130 ydl.add_info_extractor(Foo1IE(ydl))
1131 ydl.add_info_extractor(Foo2IE(ydl))
1132 ydl.add_info_extractor(Foo3IE(ydl))
1133 ydl.extract_info('foo1:')
1134 downloaded = ydl.downloaded_info_dicts[0]
1135 self.assertEqual(downloaded['url'], TEST_URL)
1136 self.assertEqual(downloaded['title'], 'foo1 title')
1137 self.assertEqual(downloaded['id'], 'testid')
1138 self.assertEqual(downloaded['extractor'], 'testex')
1139 self.assertEqual(downloaded['extractor_key'], 'TestEx')
1140
1141 # Test case for https://github.com/ytdl-org/youtube-dl/issues/27064
1142 def test_ignoreerrors_for_playlist_with_url_transparent_iterable_entries(self):
1143
1144 class _YDL(YDL):
1145 def __init__(self, *args, **kwargs):
1146 super().__init__(*args, **kwargs)
1147
1148 def trouble(self, s, tb=None):
1149 pass
1150
1151 ydl = _YDL({
1152 'format': 'extra',
1153 'ignoreerrors': True,
1154 })
1155
1156 class VideoIE(InfoExtractor):
1157 _VALID_URL = r'video:(?P<id>\d+)'
1158
1159 def _real_extract(self, url):
1160 video_id = self._match_id(url)
1161 formats = [{
1162 'format_id': 'default',
1163 'url': 'url:',
1164 }]
1165 if video_id == '0':
1166 raise ExtractorError('foo')
1167 if video_id == '2':
1168 formats.append({
1169 'format_id': 'extra',
1170 'url': TEST_URL,
1171 })
1172 return {
1173 'id': video_id,
1174 'title': 'Video %s' % video_id,
1175 'formats': formats,
1176 }
1177
1178 class PlaylistIE(InfoExtractor):
1179 _VALID_URL = r'playlist:'
1180
1181 def _entries(self):
1182 for n in range(3):
1183 video_id = str(n)
1184 yield {
1185 '_type': 'url_transparent',
1186 'ie_key': VideoIE.ie_key(),
1187 'id': video_id,
1188 'url': 'video:%s' % video_id,
1189 'title': 'Video Transparent %s' % video_id,
1190 }
1191
1192 def _real_extract(self, url):
1193 return self.playlist_result(self._entries())
1194
1195 ydl.add_info_extractor(VideoIE(ydl))
1196 ydl.add_info_extractor(PlaylistIE(ydl))
1197 info = ydl.extract_info('playlist:')
1198 entries = info['entries']
1199 self.assertEqual(len(entries), 3)
1200 self.assertTrue(entries[0] is None)
1201 self.assertTrue(entries[1] is None)
1202 self.assertEqual(len(ydl.downloaded_info_dicts), 1)
1203 downloaded = ydl.downloaded_info_dicts[0]
1204 entries[2].pop('requested_downloads', None)
1205 self.assertEqual(entries[2], downloaded)
1206 self.assertEqual(downloaded['url'], TEST_URL)
1207 self.assertEqual(downloaded['title'], 'Video Transparent 2')
1208 self.assertEqual(downloaded['id'], '2')
1209 self.assertEqual(downloaded['extractor'], 'Video')
1210 self.assertEqual(downloaded['extractor_key'], 'Video')
1211
1212
1213 if __name__ == '__main__':
1214 unittest.main()