]> jfr.im git - yt-dlp.git/blame - test/test_download.py
[utils] Simplify setproctitle
[yt-dlp.git] / test / test_download.py
CommitLineData
fd5ff020
FV
1#!/usr/bin/env python
2
44a5f171
PH
3# Allow direct execution
4import os
5import sys
6import unittest
7sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
8
dd508b7c
FV
9from test.helper import (
10 get_params,
ff14fc49 11 gettestcases,
dd508b7c
FV
12 try_rm,
13 md5,
14 report_warning
15)
44a5f171
PH
16
17
efe8902f 18import hashlib
fd5ff020 19import io
7f60b5aa 20import json
491ed3dd 21import re
6b3aef80 22import socket
cdab8aa3 23
8222d8de 24import youtube_dl.YoutubeDL
44a5f171 25from youtube_dl.utils import (
dcf3eec4 26 compat_http_client,
44a5f171
PH
27 compat_str,
28 compat_urllib_error,
f6cc16f5 29 compat_HTTPError,
44a5f171
PH
30 DownloadError,
31 ExtractorError,
32 UnavailableVideoError,
33)
9ee2b5f6 34from youtube_dl.extractor import get_info_extractor
fd5ff020 35
8cc83b8d
FV
36RETRIES = 3
37
8222d8de 38class YoutubeDL(youtube_dl.YoutubeDL):
fd5ff020 39 def __init__(self, *args, **kwargs):
fd5ff020 40 self.to_stderr = self.to_screen
0eaf520d 41 self.processed_info_dicts = []
8222d8de 42 super(YoutubeDL, self).__init__(*args, **kwargs)
476203d0 43 def report_warning(self, message):
be95cac1
FV
44 # Don't accept warnings during tests
45 raise ExtractorError(message)
0eaf520d
FV
46 def process_info(self, info_dict):
47 self.processed_info_dicts.append(info_dict)
8222d8de 48 return super(YoutubeDL, self).process_info(info_dict)
1535ac2a 49
fd5ff020
FV
50def _file_md5(fn):
51 with open(fn, 'rb') as f:
52 return hashlib.md5(f.read()).hexdigest()
53
ff14fc49 54defs = gettestcases()
6b47c7f2 55
0eaf520d 56
1535ac2a 57class TestDownload(unittest.TestCase):
744435f2 58 maxDiff = None
fd5ff020 59 def setUp(self):
fd5ff020
FV
60 self.defs = defs
61
911ee27e 62### Dynamically generate tests
5d01a647
PH
63def generator(test_case):
64
1535ac2a 65 def test_template(self):
d1cade5a 66 ie = youtube_dl.extractor.get_info_extractor(test_case['name'])
9ee2b5f6 67 other_ies = [get_info_extractor(ie_key) for ie_key in test_case.get('add_ie', [])]
bc2884af
JMF
68 def print_skipping(reason):
69 print('Skipping %s: %s' % (test_case['name'], reason))
9ee2b5f6 70 if not ie.working():
bc2884af 71 print_skipping('IE marked as not _WORKING')
fd5ff020 72 return
702665c0
JMF
73 if 'playlist' not in test_case:
74 info_dict = test_case.get('info_dict', {})
75 if not test_case.get('file') and not (info_dict.get('id') and info_dict.get('ext')):
2437fbca 76 raise Exception('Test definition incorrect. The output file cannot be known. Are both \'id\' and \'ext\' keys present?')
fd5ff020 77 if 'skip' in test_case:
bc2884af 78 print_skipping(test_case['skip'])
fd5ff020 79 return
9ee2b5f6
JMF
80 for other_ie in other_ies:
81 if not other_ie.working():
82 print_skipping(u'test depends on %sIE, marked as not WORKING' % other_ie.ie_key())
83 return
0eaf520d 84
44a5f171 85 params = get_params(test_case.get('params', {}))
0eaf520d 86
8222d8de 87 ydl = YoutubeDL(params)
023fa8c4 88 ydl.add_default_info_extractors()
bffbd5f0
PH
89 finished_hook_called = set()
90 def _hook(status):
91 if status['status'] == 'finished':
92 finished_hook_called.add(status['filename'])
933605d7 93 ydl.add_progress_hook(_hook)
5c892b0b 94
702665c0
JMF
95 def get_tc_filename(tc):
96 return tc.get('file') or ydl.prepare_filename(tc.get('info_dict', {}))
97
5c892b0b 98 test_cases = test_case.get('playlist', [test_case])
702665c0
JMF
99 def try_rm_tcs_files():
100 for tc in test_cases:
101 tc_filename = get_tc_filename(tc)
102 try_rm(tc_filename)
103 try_rm(tc_filename + '.part')
4eb92208 104 try_rm(os.path.splitext(tc_filename)[0] + '.info.json')
702665c0 105 try_rm_tcs_files()
5c892b0b 106 try:
dd508b7c
FV
107 try_num = 1
108 while True:
8cc83b8d 109 try:
8222d8de 110 ydl.download([test_case['url']])
8cc83b8d 111 except (DownloadError, ExtractorError) as err:
8cc83b8d 112 # Check if the exception is not a network related one
dcf3eec4 113 if not err.exc_info[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError, compat_http_client.BadStatusLine) or (err.exc_info[0] == compat_HTTPError and err.exc_info[1].code == 503):
8cc83b8d
FV
114 raise
115
dd508b7c
FV
116 if try_num == RETRIES:
117 report_warning(u'Failed due to network errors, skipping...')
118 return
119
120 print('Retrying: {0} failed tries\n\n##########\n\n'.format(try_num))
121
122 try_num += 1
8cc83b8d
FV
123 else:
124 break
5c892b0b
PH
125
126 for tc in test_cases:
702665c0 127 tc_filename = get_tc_filename(tc)
511eda8e 128 if not test_case.get('params', {}).get('skip_download', False):
702665c0
JMF
129 self.assertTrue(os.path.exists(tc_filename), msg='Missing file ' + tc_filename)
130 self.assertTrue(tc_filename in finished_hook_called)
4eb92208
PH
131 info_json_fn = os.path.splitext(tc_filename)[0] + '.info.json'
132 self.assertTrue(os.path.exists(info_json_fn))
5c892b0b 133 if 'md5' in tc:
702665c0 134 md5_for_file = _file_md5(tc_filename)
5c892b0b 135 self.assertEqual(md5_for_file, tc['md5'])
4eb92208 136 with io.open(info_json_fn, encoding='utf-8') as infof:
5c892b0b 137 info_dict = json.load(infof)
51ce3a75 138 for (info_field, expected) in tc.get('info_dict', {}).items():
491ed3dd 139 if isinstance(expected, compat_str) and expected.startswith('re:'):
51ce3a75 140 got = info_dict.get(info_field)
491ed3dd
PH
141 match_str = expected[len('re:'):]
142 match_rex = re.compile(match_str)
143
144 self.assertTrue(
145 isinstance(got, compat_str) and match_rex.match(got),
146 u'field %s (value: %r) should match %r' % (info_field, got, match_str))
84769e70
PH
147 elif isinstance(expected, type):
148 got = info_dict.get(info_field)
149 self.assertTrue(isinstance(got, expected),
150 u'Expected type %r, but got value %r of type %r' % (expected, got, type(got)))
491ed3dd
PH
151 else:
152 if isinstance(expected, compat_str) and expected.startswith('md5:'):
153 got = 'md5:' + md5(info_dict.get(info_field))
154 else:
155 got = info_dict.get(info_field)
156 self.assertEqual(expected, got,
157 u'invalid value for field %s, expected %r, got %r' % (info_field, expected, got))
78d3442b 158
78d3442b
FV
159 # Check for the presence of mandatory fields
160 for key in ('id', 'url', 'title', 'ext'):
161 self.assertTrue(key in info_dict.keys() and info_dict[key])
9103bbc5 162 # Check for mandatory fields that are automatically set by YoutubeDL
be97abc2 163 for key in ['webpage_url', 'extractor', 'extractor_key']:
9103bbc5 164 self.assertTrue(info_dict.get(key), u'Missing field: %s' % key)
2a1db721 165
a9c2896e 166 # Are checkable fields missing from the test case definition?
2a1db721
PH
167 test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
168 for key, value in info_dict.items()
955c4514 169 if value and key in ('title', 'description', 'uploader', 'upload_date', 'timestamp', 'uploader_id', 'location'))
a9c2896e
PH
170 missing_keys = set(test_info_dict.keys()) - set(tc.get('info_dict', {}).keys())
171 if missing_keys:
2a1db721 172 sys.stderr.write(u'\n"info_dict": ' + json.dumps(test_info_dict, ensure_ascii=False, indent=4) + u'\n')
a9c2896e
PH
173 self.assertFalse(
174 missing_keys,
175 'Missing keys in test definition: %s' % (
176 ','.join(sorted(missing_keys))))
5c892b0b 177 finally:
702665c0 178 try_rm_tcs_files()
fd5ff020 179
1535ac2a 180 return test_template
fd5ff020 181
5d01a647 182### And add them to TestDownload
f7ab6cbe 183for n, test_case in enumerate(defs):
5d01a647 184 test_method = generator(test_case)
2eb88d95
PH
185 tname = 'test_' + str(test_case['name'])
186 i = 1
187 while hasattr(TestDownload, tname):
41beccba 188 tname = 'test_' + str(test_case['name']) + '_' + str(i)
2eb88d95
PH
189 i += 1
190 test_method.__name__ = tname
fd5ff020 191 setattr(TestDownload, test_method.__name__, test_method)
5d01a647 192 del test_method
cdab8aa3
PH
193
194
195if __name__ == '__main__':
196 unittest.main()