2021-06-03 09:43:42 +00:00
|
|
|
#!/usr/bin/env python3
|
2022-06-24 11:06:16 +00:00
|
|
|
|
2013-10-15 00:00:53 +00:00
|
|
|
# Allow direct execution
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import unittest
|
2022-04-11 22:32:57 +00:00
|
|
|
|
2013-10-15 00:00:53 +00:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2022-06-24 08:10:17 +00:00
|
|
|
|
2022-07-08 11:23:05 +00:00
|
|
|
import collections
|
2022-06-24 08:10:17 +00:00
|
|
|
import hashlib
|
|
|
|
import json
|
|
|
|
|
2013-10-28 22:03:26 +00:00
|
|
|
from test.helper import (
|
2014-08-25 16:03:01 +00:00
|
|
|
assertGreaterEqual,
|
2021-07-23 14:48:15 +00:00
|
|
|
expect_info_dict,
|
2014-10-26 19:49:51 +00:00
|
|
|
expect_warnings,
|
2013-10-28 22:03:26 +00:00
|
|
|
get_params,
|
2014-03-17 13:30:13 +00:00
|
|
|
gettestcases,
|
2022-07-08 11:23:05 +00:00
|
|
|
getwebpagetestcases,
|
2021-07-23 14:48:15 +00:00
|
|
|
is_download_test,
|
2014-03-23 14:52:21 +00:00
|
|
|
report_warning,
|
2021-07-23 14:48:15 +00:00
|
|
|
try_rm,
|
2013-10-28 22:03:26 +00:00
|
|
|
)
|
2022-06-24 11:06:16 +00:00
|
|
|
|
2022-06-24 08:10:17 +00:00
|
|
|
import yt_dlp.YoutubeDL # isort: split
|
2022-04-11 22:32:57 +00:00
|
|
|
from yt_dlp.extractor import get_info_extractor
|
2023-07-15 10:25:23 +00:00
|
|
|
from yt_dlp.networking.exceptions import HTTPError, TransportError
|
2021-02-24 18:45:56 +00:00
|
|
|
from yt_dlp.utils import (
|
2013-10-15 00:00:53 +00:00
|
|
|
DownloadError,
|
|
|
|
ExtractorError,
|
|
|
|
UnavailableVideoError,
|
2023-09-21 22:48:57 +00:00
|
|
|
YoutubeDLError,
|
2022-04-11 22:32:57 +00:00
|
|
|
format_bytes,
|
2022-07-08 11:23:05 +00:00
|
|
|
join_nonempty,
|
2013-10-15 00:00:53 +00:00
|
|
|
)
|
2012-12-12 13:15:21 +00:00
|
|
|
|
2013-03-09 09:05:43 +00:00
|
|
|
RETRIES = 3
|
|
|
|
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2021-02-24 18:45:56 +00:00
|
|
|
class YoutubeDL(yt_dlp.YoutubeDL):
|
2012-12-12 13:15:21 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.to_stderr = self.to_screen
|
2012-12-20 13:14:43 +00:00
|
|
|
self.processed_info_dicts = []
|
2022-04-11 15:10:28 +00:00
|
|
|
super().__init__(*args, **kwargs)
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2022-06-21 07:21:46 +00:00
|
|
|
def report_warning(self, message, *args, **kwargs):
|
2013-06-07 09:19:27 +00:00
|
|
|
# Don't accept warnings during tests
|
|
|
|
raise ExtractorError(message)
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2012-12-20 13:14:43 +00:00
|
|
|
def process_info(self, info_dict):
|
2022-01-03 13:36:26 +00:00
|
|
|
self.processed_info_dicts.append(info_dict.copy())
|
2022-04-11 15:10:28 +00:00
|
|
|
return super().process_info(info_dict)
|
2012-12-12 02:55:06 +00:00
|
|
|
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2012-12-12 13:15:21 +00:00
|
|
|
def _file_md5(fn):
|
|
|
|
with open(fn, 'rb') as f:
|
|
|
|
return hashlib.md5(f.read()).hexdigest()
|
|
|
|
|
2016-11-17 11:42:56 +00:00
|
|
|
|
2022-07-08 11:23:05 +00:00
|
|
|
normal_test_cases = gettestcases()
|
|
|
|
webpage_test_cases = getwebpagetestcases()
|
|
|
|
tests_counter = collections.defaultdict(collections.Counter)
|
2013-06-27 16:28:45 +00:00
|
|
|
|
2012-12-20 13:14:43 +00:00
|
|
|
|
2021-07-23 14:48:15 +00:00
|
|
|
@is_download_test
|
2012-12-12 02:55:06 +00:00
|
|
|
class TestDownload(unittest.TestCase):
|
2015-10-20 16:37:28 +00:00
|
|
|
# Parallel testing in nosetests. See
|
|
|
|
# http://nose.readthedocs.org/en/latest/doc_tests/test_multiprocess/multiprocess.html
|
|
|
|
_multiprocess_shared_ = True
|
|
|
|
|
2013-04-11 16:38:43 +00:00
|
|
|
maxDiff = None
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2021-08-06 04:29:41 +00:00
|
|
|
COMPLETED_TESTS = {}
|
|
|
|
|
2017-03-25 14:36:40 +00:00
|
|
|
def __str__(self):
|
|
|
|
"""Identify each test with the `add_ie` attribute, if available."""
|
2022-07-08 11:23:05 +00:00
|
|
|
cls, add_ie = type(self), getattr(self, self._testMethodName).add_ie
|
|
|
|
return f'{self._testMethodName} ({cls.__module__}.{cls.__name__}){f" [{add_ie}]" if add_ie else ""}:'
|
2017-03-25 14:36:40 +00:00
|
|
|
|
2012-12-12 13:15:21 +00:00
|
|
|
|
2014-11-23 19:41:03 +00:00
|
|
|
# Dynamically generate tests
|
|
|
|
|
2015-10-20 16:37:28 +00:00
|
|
|
def generator(test_case, tname):
|
2012-12-12 02:55:06 +00:00
|
|
|
def test_template(self):
|
2021-08-06 04:29:41 +00:00
|
|
|
if self.COMPLETED_TESTS.get(tname):
|
|
|
|
return
|
|
|
|
self.COMPLETED_TESTS[tname] = True
|
2021-02-24 18:45:56 +00:00
|
|
|
ie = yt_dlp.extractor.get_info_extractor(test_case['name'])()
|
2018-01-21 11:15:11 +00:00
|
|
|
other_ies = [get_info_extractor(ie_key)() for ie_key in test_case.get('add_ie', [])]
|
2014-08-21 09:52:07 +00:00
|
|
|
is_playlist = any(k.startswith('playlist') for k in test_case)
|
|
|
|
test_cases = test_case.get(
|
|
|
|
'playlist', [] if is_playlist else [test_case])
|
|
|
|
|
2013-06-28 09:20:00 +00:00
|
|
|
def print_skipping(reason):
|
|
|
|
print('Skipping %s: %s' % (test_case['name'], reason))
|
2022-06-20 04:44:12 +00:00
|
|
|
self.skipTest(reason)
|
|
|
|
|
2013-11-03 18:14:53 +00:00
|
|
|
if not ie.working():
|
2024-04-01 14:47:23 +00:00
|
|
|
print_skipping('IE is _REPORTED_BROKEN')
|
2014-08-21 09:52:07 +00:00
|
|
|
|
|
|
|
for tc in test_cases:
|
2023-09-21 22:48:57 +00:00
|
|
|
if tc.get('expected_exception'):
|
|
|
|
continue
|
2014-08-21 09:52:07 +00:00
|
|
|
info_dict = tc.get('info_dict', {})
|
2021-08-01 22:16:45 +00:00
|
|
|
params = tc.get('params', {})
|
|
|
|
if not info_dict.get('id'):
|
2022-08-14 21:52:57 +00:00
|
|
|
raise Exception(f'Test {tname} definition incorrect - "id" key is not present')
|
2022-11-10 02:02:25 +00:00
|
|
|
elif not info_dict.get('ext') and info_dict.get('_type', 'video') == 'video':
|
2021-08-01 22:16:45 +00:00
|
|
|
if params.get('skip_download') and params.get('ignore_no_formats_error'):
|
|
|
|
continue
|
2022-08-14 21:52:57 +00:00
|
|
|
raise Exception(f'Test {tname} definition incorrect - "ext" key must be present to define the output file')
|
2014-08-21 09:52:07 +00:00
|
|
|
|
2012-12-12 13:15:21 +00:00
|
|
|
if 'skip' in test_case:
|
2013-06-28 09:20:00 +00:00
|
|
|
print_skipping(test_case['skip'])
|
2022-06-20 04:44:12 +00:00
|
|
|
|
2013-11-03 18:14:53 +00:00
|
|
|
for other_ie in other_ies:
|
|
|
|
if not other_ie.working():
|
2024-04-01 14:59:15 +00:00
|
|
|
print_skipping(f'test depends on {other_ie.ie_key()}IE, is _REPORTED_BROKEN')
|
2012-12-20 13:14:43 +00:00
|
|
|
|
2013-10-15 00:00:53 +00:00
|
|
|
params = get_params(test_case.get('params', {}))
|
2015-10-20 16:37:28 +00:00
|
|
|
params['outtmpl'] = tname + '_' + params['outtmpl']
|
2014-08-21 09:52:07 +00:00
|
|
|
if is_playlist and 'playlist' not in test_case:
|
2015-10-23 12:12:46 +00:00
|
|
|
params.setdefault('extract_flat', 'in_playlist')
|
2022-10-25 10:20:48 +00:00
|
|
|
params.setdefault('playlistend', test_case.get(
|
|
|
|
'playlist_mincount', test_case.get('playlist_count', -2) + 1))
|
2014-08-21 09:52:07 +00:00
|
|
|
params.setdefault('skip_download', True)
|
2012-12-20 13:14:43 +00:00
|
|
|
|
2014-11-02 16:53:12 +00:00
|
|
|
ydl = YoutubeDL(params, auto_init=False)
|
2013-06-27 21:51:06 +00:00
|
|
|
ydl.add_default_info_extractors()
|
2013-01-12 19:34:50 +00:00
|
|
|
finished_hook_called = set()
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2013-01-12 19:34:50 +00:00
|
|
|
def _hook(status):
|
|
|
|
if status['status'] == 'finished':
|
|
|
|
finished_hook_called.add(status['filename'])
|
2013-12-23 09:37:27 +00:00
|
|
|
ydl.add_progress_hook(_hook)
|
2014-10-26 19:49:51 +00:00
|
|
|
expect_warnings(ydl, test_case.get('expected_warnings', []))
|
2013-01-01 18:30:29 +00:00
|
|
|
|
2013-10-28 21:01:37 +00:00
|
|
|
def get_tc_filename(tc):
|
2021-08-09 12:10:24 +00:00
|
|
|
return ydl.prepare_filename(dict(tc.get('info_dict', {})))
|
2013-10-28 21:01:37 +00:00
|
|
|
|
2014-08-27 15:11:45 +00:00
|
|
|
res_dict = None
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2023-09-21 22:48:57 +00:00
|
|
|
def match_exception(err):
|
|
|
|
expected_exception = test_case.get('expected_exception')
|
|
|
|
if not expected_exception:
|
|
|
|
return False
|
|
|
|
if err.__class__.__name__ == expected_exception:
|
|
|
|
return True
|
|
|
|
for exc in err.exc_info:
|
|
|
|
if exc.__class__.__name__ == expected_exception:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2014-08-27 15:11:45 +00:00
|
|
|
def try_rm_tcs_files(tcs=None):
|
|
|
|
if tcs is None:
|
|
|
|
tcs = test_cases
|
|
|
|
for tc in tcs:
|
2013-10-28 21:01:37 +00:00
|
|
|
tc_filename = get_tc_filename(tc)
|
|
|
|
try_rm(tc_filename)
|
|
|
|
try_rm(tc_filename + '.part')
|
2013-11-20 05:34:48 +00:00
|
|
|
try_rm(os.path.splitext(tc_filename)[0] + '.info.json')
|
2013-10-28 21:01:37 +00:00
|
|
|
try_rm_tcs_files()
|
2013-01-01 18:30:29 +00:00
|
|
|
try:
|
2013-10-28 22:03:26 +00:00
|
|
|
try_num = 1
|
|
|
|
while True:
|
2013-03-09 09:05:43 +00:00
|
|
|
try:
|
2017-04-08 04:27:52 +00:00
|
|
|
# We're not using .download here since that is just a shim
|
2014-08-21 09:52:07 +00:00
|
|
|
# for outside error handling, and returns the exit code
|
|
|
|
# instead of the result dict.
|
2015-08-01 19:14:41 +00:00
|
|
|
res_dict = ydl.extract_info(
|
|
|
|
test_case['url'],
|
|
|
|
force_generic_extractor=params.get('force_generic_extractor', False))
|
2013-03-09 09:05:43 +00:00
|
|
|
except (DownloadError, ExtractorError) as err:
|
|
|
|
# Check if the exception is not a network related one
|
2023-07-09 07:53:02 +00:00
|
|
|
if not isinstance(err.exc_info[1], (TransportError, UnavailableVideoError)) or (isinstance(err.exc_info[1], HTTPError) and err.exc_info[1].status == 503):
|
2023-09-21 22:48:57 +00:00
|
|
|
if match_exception(err):
|
|
|
|
return
|
2022-08-14 21:52:57 +00:00
|
|
|
err.msg = f'{getattr(err, "msg", err)} ({tname})'
|
2013-03-09 09:05:43 +00:00
|
|
|
raise
|
|
|
|
|
2013-10-28 22:03:26 +00:00
|
|
|
if try_num == RETRIES:
|
2015-10-20 16:37:28 +00:00
|
|
|
report_warning('%s failed due to network errors, skipping...' % tname)
|
2013-10-28 22:03:26 +00:00
|
|
|
return
|
|
|
|
|
2022-04-11 15:10:28 +00:00
|
|
|
print(f'Retrying: {try_num} failed tries\n\n##########\n\n')
|
2013-10-28 22:03:26 +00:00
|
|
|
|
|
|
|
try_num += 1
|
2023-09-21 22:48:57 +00:00
|
|
|
except YoutubeDLError as err:
|
|
|
|
if match_exception(err):
|
|
|
|
return
|
|
|
|
raise
|
2013-03-09 09:05:43 +00:00
|
|
|
else:
|
|
|
|
break
|
2013-01-01 18:30:29 +00:00
|
|
|
|
2014-08-21 09:52:07 +00:00
|
|
|
if is_playlist:
|
2015-04-19 11:08:37 +00:00
|
|
|
self.assertTrue(res_dict['_type'] in ['playlist', 'multi_video'])
|
2014-09-28 10:14:16 +00:00
|
|
|
self.assertTrue('entries' in res_dict)
|
2014-12-26 17:07:24 +00:00
|
|
|
expect_info_dict(self, res_dict, test_case.get('info_dict', {}))
|
2014-09-28 10:14:16 +00:00
|
|
|
|
2014-08-21 09:52:07 +00:00
|
|
|
if 'playlist_mincount' in test_case:
|
2014-08-25 16:03:01 +00:00
|
|
|
assertGreaterEqual(
|
|
|
|
self,
|
2014-08-21 09:52:07 +00:00
|
|
|
len(res_dict['entries']),
|
|
|
|
test_case['playlist_mincount'],
|
|
|
|
'Expected at least %d in playlist %s, but got only %d' % (
|
|
|
|
test_case['playlist_mincount'], test_case['url'],
|
|
|
|
len(res_dict['entries'])))
|
2014-08-25 15:02:52 +00:00
|
|
|
if 'playlist_count' in test_case:
|
|
|
|
self.assertEqual(
|
|
|
|
len(res_dict['entries']),
|
|
|
|
test_case['playlist_count'],
|
2014-08-27 15:11:45 +00:00
|
|
|
'Expected %d entries in playlist %s, but got %d.' % (
|
2014-08-27 22:58:24 +00:00
|
|
|
test_case['playlist_count'],
|
2014-08-27 15:11:45 +00:00
|
|
|
test_case['url'],
|
2014-08-27 22:58:24 +00:00
|
|
|
len(res_dict['entries']),
|
|
|
|
))
|
2014-08-27 15:11:45 +00:00
|
|
|
if 'playlist_duration_sum' in test_case:
|
|
|
|
got_duration = sum(e['duration'] for e in res_dict['entries'])
|
|
|
|
self.assertEqual(
|
|
|
|
test_case['playlist_duration_sum'], got_duration)
|
2014-08-21 09:52:07 +00:00
|
|
|
|
2017-04-10 16:59:38 +00:00
|
|
|
# Generalize both playlists and single videos to unified format for
|
|
|
|
# simplicity
|
|
|
|
if 'entries' not in res_dict:
|
|
|
|
res_dict['entries'] = [res_dict]
|
|
|
|
|
2017-04-08 07:10:12 +00:00
|
|
|
for tc_num, tc in enumerate(test_cases):
|
2017-04-10 16:59:38 +00:00
|
|
|
tc_res_dict = res_dict['entries'][tc_num]
|
|
|
|
# First, check test cases' data against extracted data alone
|
2017-04-08 07:10:12 +00:00
|
|
|
expect_info_dict(self, tc_res_dict, tc.get('info_dict', {}))
|
2022-11-10 02:02:25 +00:00
|
|
|
if tc_res_dict.get('_type', 'video') != 'video':
|
|
|
|
continue
|
2017-04-10 16:59:38 +00:00
|
|
|
# Now, check downloaded file consistency
|
2013-10-28 21:01:37 +00:00
|
|
|
tc_filename = get_tc_filename(tc)
|
2013-01-01 20:01:49 +00:00
|
|
|
if not test_case.get('params', {}).get('skip_download', False):
|
2013-10-28 21:01:37 +00:00
|
|
|
self.assertTrue(os.path.exists(tc_filename), msg='Missing file ' + tc_filename)
|
|
|
|
self.assertTrue(tc_filename in finished_hook_called)
|
2014-08-29 11:42:42 +00:00
|
|
|
expected_minsize = tc.get('file_minsize', 10000)
|
|
|
|
if expected_minsize is not None:
|
|
|
|
if params.get('test'):
|
|
|
|
expected_minsize = max(expected_minsize, 10000)
|
|
|
|
got_fsize = os.path.getsize(tc_filename)
|
|
|
|
assertGreaterEqual(
|
|
|
|
self, got_fsize, expected_minsize,
|
|
|
|
'Expected %s to be at least %s, but it\'s only %s ' %
|
|
|
|
(tc_filename, format_bytes(expected_minsize),
|
|
|
|
format_bytes(got_fsize)))
|
|
|
|
if 'md5' in tc:
|
|
|
|
md5_for_file = _file_md5(tc_filename)
|
2017-04-27 09:04:21 +00:00
|
|
|
self.assertEqual(tc['md5'], md5_for_file)
|
2017-04-10 16:59:38 +00:00
|
|
|
# Finally, check test cases' data again but this time against
|
|
|
|
# extracted data from info JSON file written during processing
|
2013-11-20 05:34:48 +00:00
|
|
|
info_json_fn = os.path.splitext(tc_filename)[0] + '.info.json'
|
2014-10-26 23:39:39 +00:00
|
|
|
self.assertTrue(
|
|
|
|
os.path.exists(info_json_fn),
|
|
|
|
'Missing info file %s' % info_json_fn)
|
2022-04-11 15:10:28 +00:00
|
|
|
with open(info_json_fn, encoding='utf-8') as infof:
|
2013-01-01 18:30:29 +00:00
|
|
|
info_dict = json.load(infof)
|
2014-12-26 17:07:24 +00:00
|
|
|
expect_info_dict(self, info_dict, tc.get('info_dict', {}))
|
2013-01-01 18:30:29 +00:00
|
|
|
finally:
|
2013-10-28 21:01:37 +00:00
|
|
|
try_rm_tcs_files()
|
2014-09-28 10:14:16 +00:00
|
|
|
if is_playlist and res_dict is not None and res_dict.get('entries'):
|
2014-08-27 15:11:45 +00:00
|
|
|
# Remove all other files that may have been extracted if the
|
|
|
|
# extractor returns full results even with extract_flat
|
|
|
|
res_tcs = [{'info_dict': e} for e in res_dict['entries']]
|
|
|
|
try_rm_tcs_files(res_tcs)
|
2023-07-15 10:25:23 +00:00
|
|
|
ydl.close()
|
2012-12-12 02:55:06 +00:00
|
|
|
return test_template
|
2012-12-12 13:15:21 +00:00
|
|
|
|
2016-11-17 11:42:56 +00:00
|
|
|
|
2014-11-23 19:41:03 +00:00
|
|
|
# And add them to TestDownload
|
2022-07-08 11:23:05 +00:00
|
|
|
def inject_tests(test_cases, label=''):
|
|
|
|
for test_case in test_cases:
|
|
|
|
name = test_case['name']
|
|
|
|
tname = join_nonempty('test', name, label, tests_counter[name][label], delim='_')
|
|
|
|
tests_counter[name][label] += 1
|
2012-11-28 14:09:56 +00:00
|
|
|
|
2022-07-08 11:23:05 +00:00
|
|
|
test_method = generator(test_case, tname)
|
|
|
|
test_method.__name__ = tname
|
|
|
|
test_method.add_ie = ','.join(test_case.get('add_ie', []))
|
|
|
|
setattr(TestDownload, test_method.__name__, test_method)
|
2012-11-28 14:09:56 +00:00
|
|
|
|
2021-08-06 04:29:41 +00:00
|
|
|
|
2022-07-08 11:23:05 +00:00
|
|
|
inject_tests(normal_test_cases)
|
|
|
|
|
|
|
|
# TODO: disable redirection to the IE to ensure we are actually testing the webpage extraction
|
|
|
|
inject_tests(webpage_test_cases, 'webpage')
|
|
|
|
|
|
|
|
|
|
|
|
def batch_generator(name):
|
2021-08-06 04:29:41 +00:00
|
|
|
def test_template(self):
|
2022-07-08 11:23:05 +00:00
|
|
|
for label, num_tests in tests_counter[name].items():
|
|
|
|
for i in range(num_tests):
|
|
|
|
test_name = join_nonempty('test', name, label, i, delim='_')
|
|
|
|
try:
|
|
|
|
getattr(self, test_name)()
|
|
|
|
except unittest.SkipTest:
|
|
|
|
print(f'Skipped {test_name}')
|
2021-08-06 04:29:41 +00:00
|
|
|
|
|
|
|
return test_template
|
|
|
|
|
|
|
|
|
2022-07-08 11:23:05 +00:00
|
|
|
for name in tests_counter:
|
|
|
|
test_method = batch_generator(name)
|
2021-08-06 04:29:41 +00:00
|
|
|
test_method.__name__ = f'test_{name}_all'
|
|
|
|
test_method.add_ie = ''
|
|
|
|
setattr(TestDownload, test_method.__name__, test_method)
|
2022-07-08 11:23:05 +00:00
|
|
|
del test_method
|
2021-08-06 04:29:41 +00:00
|
|
|
|
|
|
|
|
2012-11-28 14:09:56 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|