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