]>
Raphaƫl G. Git Repositories - youtubedl/blob - test/test_download.py
3 from __future__
import unicode_literals
5 # Allow direct execution
9 sys
.path
.insert(0, os
.path
.dirname(os
.path
.dirname(os
.path
.abspath(__file__
))))
11 from test
.helper
import (
27 import youtube_dl
.YoutubeDL
28 from youtube_dl
.compat
import (
33 from youtube_dl
.utils
import (
37 UnavailableVideoError
,
39 from youtube_dl
.extractor
import get_info_extractor
44 class YoutubeDL(youtube_dl
.YoutubeDL
):
45 def __init__(self
, *args
, **kwargs
):
46 self
.to_stderr
= self
.to_screen
47 self
.processed_info_dicts
= []
48 super(YoutubeDL
, self
).__init
__(*args
, **kwargs
)
50 def report_warning(self
, message
):
51 # Don't accept warnings during tests
52 raise ExtractorError(message
)
54 def process_info(self
, info_dict
):
55 self
.processed_info_dicts
.append(info_dict
)
56 return super(YoutubeDL
, self
).process_info(info_dict
)
60 with open(fn
, 'rb') as f
:
61 return hashlib
.md5(f
.read()).hexdigest()
67 class TestDownload(unittest
.TestCase
):
68 # Parallel testing in nosetests. See
69 # http://nose.readthedocs.org/en/latest/doc_tests/test_multiprocess/multiprocess.html
70 _multiprocess_shared_
= True
77 # Dynamically generate tests
80 def generator(test_case
, tname
):
82 def test_template(self
):
83 ie
= youtube_dl
.extractor
.get_info_extractor(test_case
['name'])
84 other_ies
= [get_info_extractor(ie_key
) for ie_key
in test_case
.get('add_ie', [])]
85 is_playlist
= any(k
.startswith('playlist') for k
in test_case
)
86 test_cases
= test_case
.get(
87 'playlist', [] if is_playlist
else [test_case
])
89 def print_skipping(reason
):
90 print('Skipping %s: %s' % (test_case
['name'], reason
))
92 print_skipping('IE marked as not _WORKING')
96 info_dict
= tc
.get('info_dict', {})
97 if not (info_dict
.get('id') and info_dict
.get('ext')):
98 raise Exception('Test definition incorrect. The output file cannot be known. Are both \'id\' and \'ext\' keys present?')
100 if 'skip' in test_case
:
101 print_skipping(test_case
['skip'])
103 for other_ie
in other_ies
:
104 if not other_ie
.working():
105 print_skipping('test depends on %sIE, marked as not WORKING' % other_ie
.ie_key())
108 params
= get_params(test_case
.get('params', {}))
109 params
['outtmpl'] = tname
+ '_' + params
['outtmpl']
110 if is_playlist
and 'playlist' not in test_case
:
111 params
.setdefault('extract_flat', 'in_playlist')
112 params
.setdefault('skip_download', True)
114 ydl
= YoutubeDL(params
, auto_init
=False)
115 ydl
.add_default_info_extractors()
116 finished_hook_called
= set()
119 if status
['status'] == 'finished':
120 finished_hook_called
.add(status
['filename'])
121 ydl
.add_progress_hook(_hook
)
122 expect_warnings(ydl
, test_case
.get('expected_warnings', []))
124 def get_tc_filename(tc
):
125 return ydl
.prepare_filename(tc
.get('info_dict', {}))
129 def try_rm_tcs_files(tcs
=None):
133 tc_filename
= get_tc_filename(tc
)
135 try_rm(tc_filename
+ '.part')
136 try_rm(os
.path
.splitext(tc_filename
)[0] + '.info.json')
142 # We're not using .download here sine that is just a shim
143 # for outside error handling, and returns the exit code
144 # instead of the result dict.
145 res_dict
= ydl
.extract_info(
147 force_generic_extractor
=params
.get('force_generic_extractor', False))
148 except (DownloadError
, ExtractorError
) as err
:
149 # Check if the exception is not a network related one
150 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):
153 if try_num
== RETRIES
:
154 report_warning('%s failed due to network errors, skipping...' % tname
)
157 print('Retrying: {0} failed tries\n\n##########\n\n'.format(try_num
))
164 self
.assertTrue(res_dict
['_type'] in ['playlist', 'multi_video'])
165 self
.assertTrue('entries' in res_dict
)
166 expect_info_dict(self
, res_dict
, test_case
.get('info_dict', {}))
168 if 'playlist_mincount' in test_case
:
171 len(res_dict
['entries']),
172 test_case
['playlist_mincount'],
173 'Expected at least %d in playlist %s, but got only %d' % (
174 test_case
['playlist_mincount'], test_case
['url'],
175 len(res_dict
['entries'])))
176 if 'playlist_count' in test_case
:
178 len(res_dict
['entries']),
179 test_case
['playlist_count'],
180 'Expected %d entries in playlist %s, but got %d.' % (
181 test_case
['playlist_count'],
183 len(res_dict
['entries']),
185 if 'playlist_duration_sum' in test_case
:
186 got_duration
= sum(e
['duration'] for e
in res_dict
['entries'])
188 test_case
['playlist_duration_sum'], got_duration
)
190 for tc
in test_cases
:
191 tc_filename
= get_tc_filename(tc
)
192 if not test_case
.get('params', {}).get('skip_download', False):
193 self
.assertTrue(os
.path
.exists(tc_filename
), msg
='Missing file ' + tc_filename
)
194 self
.assertTrue(tc_filename
in finished_hook_called
)
195 expected_minsize
= tc
.get('file_minsize', 10000)
196 if expected_minsize
is not None:
197 if params
.get('test'):
198 expected_minsize
= max(expected_minsize
, 10000)
199 got_fsize
= os
.path
.getsize(tc_filename
)
201 self
, got_fsize
, expected_minsize
,
202 'Expected %s to be at least %s, but it\'s only %s ' %
203 (tc_filename
, format_bytes(expected_minsize
),
204 format_bytes(got_fsize
)))
206 md5_for_file
= _file_md5(tc_filename
)
207 self
.assertEqual(md5_for_file
, tc
['md5'])
208 info_json_fn
= os
.path
.splitext(tc_filename
)[0] + '.info.json'
210 os
.path
.exists(info_json_fn
),
211 'Missing info file %s' % info_json_fn
)
212 with io
.open(info_json_fn
, encoding
='utf-8') as infof
:
213 info_dict
= json
.load(infof
)
215 expect_info_dict(self
, info_dict
, tc
.get('info_dict', {}))
218 if is_playlist
and res_dict
is not None and res_dict
.get('entries'):
219 # Remove all other files that may have been extracted if the
220 # extractor returns full results even with extract_flat
221 res_tcs
= [{'info_dict': e
} for e
in res_dict
['entries']]
222 try_rm_tcs_files(res_tcs
)
227 # And add them to TestDownload
228 for n
, test_case
in enumerate(defs
):
229 tname
= 'test_' + str(test_case
['name'])
231 while hasattr(TestDownload
, tname
):
232 tname
= 'test_%s_%d' % (test_case
['name'], i
)
234 test_method
= generator(test_case
, tname
)
235 test_method
.__name
__ = str(tname
)
236 setattr(TestDownload
, test_method
.__name
__, test_method
)
240 if __name__
== '__main__':