]> jfr.im git - yt-dlp.git/blame - test/helper.py
[docs] Improvements
[yt-dlp.git] / test / helper.py
CommitLineData
7a08ad7d
PH
1from __future__ import unicode_literals
2
f4aac741 3import errno
112da0a0 4import io
44a5f171 5import hashlib
112da0a0
PH
6import json
7import os.path
00fcc17a
FV
8import re
9import types
95e42d73 10import ssl
dd508b7c 11import sys
112da0a0 12
7a5c1cfe
P
13import yt_dlp.extractor
14from yt_dlp import YoutubeDL
15from yt_dlp.compat import (
e9c0cdd3 16 compat_os_name,
257cfebf 17 compat_str,
e9c0cdd3 18)
7a5c1cfe 19from yt_dlp.utils import (
257cfebf 20 preferredencoding,
c0f64ac6 21 write_string,
257cfebf 22)
112da0a0 23
112da0a0 24
b5ae35ee 25if 'pytest' in sys.modules:
060ac762 26 import pytest
27 is_download_test = pytest.mark.download
28else:
29 def is_download_test(testClass):
30 return testClass
31
32
44a5f171
PH
33def get_params(override=None):
34 PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)),
b5ae35ee 35 'parameters.json')
72f3289a 36 LOCAL_PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)),
b5ae35ee 37 'local_parameters.json')
44a5f171
PH
38 with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
39 parameters = json.load(pf)
72f3289a
YCH
40 if os.path.exists(LOCAL_PARAMETERS_FILE):
41 with io.open(LOCAL_PARAMETERS_FILE, encoding='utf-8') as pf:
42 parameters.update(json.load(pf))
44a5f171
PH
43 if override:
44 parameters.update(override)
45 return parameters
112da0a0 46
f4aac741
PH
47
48def try_rm(filename):
49 """ Remove a file if it exists """
50 try:
51 os.remove(filename)
52 except OSError as ose:
53 if ose.errno != errno.ENOENT:
54 raise
55
56
dd508b7c
FV
57def report_warning(message):
58 '''
59 Print the message to stderr, it will be prefixed with 'WARNING:'
60 If stderr is a tty file the 'WARNING:' will be colored
61 '''
e9c0cdd3 62 if sys.stderr.isatty() and compat_os_name != 'nt':
7a08ad7d 63 _msg_header = '\033[0;33mWARNING:\033[0m'
dd508b7c 64 else:
7a08ad7d
PH
65 _msg_header = 'WARNING:'
66 output = '%s %s\n' % (_msg_header, message)
dd508b7c
FV
67 if 'b' in getattr(sys.stderr, 'mode', '') or sys.version_info[0] < 3:
68 output = output.encode(preferredencoding())
69 sys.stderr.write(output)
70
71
112da0a0 72class FakeYDL(YoutubeDL):
f4d96df0 73 def __init__(self, override=None):
112da0a0
PH
74 # Different instances of the downloader can't share the same dictionary
75 # some test set the "sublang" parameter, which would break the md5 checks.
f4d96df0 76 params = get_params(override=override)
ac35c266 77 super(FakeYDL, self).__init__(params, auto_init=False)
f4aac741 78 self.result = []
5f6a1245 79
f4aac741 80 def to_screen(self, s, skip_eol=None):
112da0a0 81 print(s)
f4aac741 82
112da0a0
PH
83 def trouble(self, s, tb=None):
84 raise Exception(s)
f4aac741 85
112da0a0 86 def download(self, x):
fc2c063e 87 self.result.append(x)
f4aac741 88
00fcc17a
FV
89 def expect_warning(self, regex):
90 # Silence an expected warning matching a regex
91 old_report_warning = self.report_warning
5f6a1245 92
00fcc17a 93 def report_warning(self, message):
5f6a1245
JW
94 if re.match(regex, message):
95 return
00fcc17a
FV
96 old_report_warning(message)
97 self.report_warning = types.MethodType(report_warning, self)
fc2c063e 98
52fadd5f
PH
99
100def gettestcases(include_onlymatching=False):
7a5c1cfe 101 for ie in yt_dlp.extractor.gen_extractors():
05900629
PH
102 for tc in ie.get_testcases(include_onlymatching):
103 yield tc
44a5f171
PH
104
105
106md5 = lambda s: hashlib.md5(s.encode('utf-8')).hexdigest()
257cfebf
PH
107
108
40c931de
QF
109def expect_value(self, got, expected, field):
110 if isinstance(expected, compat_str) and expected.startswith('re:'):
111 match_str = expected[len('re:'):]
112 match_rex = re.compile(match_str)
113
114 self.assertTrue(
115 isinstance(got, compat_str),
116 'Expected a %s object, but got %s for field %s' % (
117 compat_str.__name__, type(got).__name__, field))
118 self.assertTrue(
119 match_rex.match(got),
120 'field %s (value: %r) should match %r' % (field, got, match_str))
121 elif isinstance(expected, compat_str) and expected.startswith('startswith:'):
122 start_str = expected[len('startswith:'):]
123 self.assertTrue(
124 isinstance(got, compat_str),
125 'Expected a %s object, but got %s for field %s' % (
126 compat_str.__name__, type(got).__name__, field))
127 self.assertTrue(
128 got.startswith(start_str),
129 'field %s (value: %r) should start with %r' % (field, got, start_str))
130 elif isinstance(expected, compat_str) and expected.startswith('contains:'):
131 contains_str = expected[len('contains:'):]
132 self.assertTrue(
133 isinstance(got, compat_str),
134 'Expected a %s object, but got %s for field %s' % (
135 compat_str.__name__, type(got).__name__, field))
136 self.assertTrue(
137 contains_str in got,
138 'field %s (value: %r) should contain %r' % (field, got, contains_str))
139 elif isinstance(expected, type):
2e885de7
S
140 self.assertTrue(
141 isinstance(got, expected),
142 'Expected type %r for field %s, but got value %r of type %r' % (expected, field, got, type(got)))
40c931de
QF
143 elif isinstance(expected, dict) and isinstance(got, dict):
144 expect_dict(self, got, expected)
145 elif isinstance(expected, list) and isinstance(got, list):
2e885de7
S
146 self.assertEqual(
147 len(expected), len(got),
f88f1b40
S
148 'Expect a list of length %d, but got a list of length %d for field %s' % (
149 len(expected), len(got), field))
687c04cb
QF
150 for index, (item_got, item_expected) in enumerate(zip(got, expected)):
151 type_got = type(item_got)
152 type_expected = type(item_expected)
2e885de7
S
153 self.assertEqual(
154 type_expected, type_got,
386a7b52 155 'Type mismatch for list item at index %d for field %s, expected %r, got %r' % (
7d0ada5f 156 index, field, type_expected, type_got))
687c04cb 157 expect_value(self, item_got, item_expected, field)
40c931de
QF
158 else:
159 if isinstance(expected, compat_str) and expected.startswith('md5:'):
6c4c7539
YCH
160 self.assertTrue(
161 isinstance(got, compat_str),
162 'Expected field %s to be a unicode object, but got value %r of type %r' % (field, got, type(got)))
40c931de 163 got = 'md5:' + md5(got)
a16c7c03 164 elif isinstance(expected, compat_str) and re.match(r'^(?:min|max)?count:\d+', expected):
9789d753 165 self.assertTrue(
40c931de
QF
166 isinstance(got, (list, dict)),
167 'Expected field %s to be a list or a dict, but it is of type %s' % (
168 field, type(got).__name__))
a16c7c03
S
169 op, _, expected_num = expected.partition(':')
170 expected_num = int(expected_num)
171 if op == 'mincount':
172 assert_func = assertGreaterEqual
173 msg_tmpl = 'Expected %d items in field %s, but only got %d'
174 elif op == 'maxcount':
175 assert_func = assertLessEqual
176 msg_tmpl = 'Expected maximum %d items in field %s, but got %d'
177 elif op == 'count':
178 assert_func = assertEqual
179 msg_tmpl = 'Expected exactly %d items in field %s, but got %d'
180 else:
181 assert False
182 assert_func(
40c931de 183 self, len(got), expected_num,
a16c7c03 184 msg_tmpl % (expected_num, field, len(got)))
40c931de 185 return
2e885de7
S
186 self.assertEqual(
187 expected, got,
386a7b52 188 'Invalid value for field %s, expected %r, got %r' % (field, expected, got))
40c931de
QF
189
190
191def expect_dict(self, got_dict, expected_dict):
192 for info_field, expected in expected_dict.items():
193 got = got_dict.get(info_field)
194 expect_value(self, got, expected, info_field)
257cfebf 195
93bc7ef1 196
75ad3357 197def sanitize_got_info_dict(got_dict):
198 IGNORED_FIELDS = (
ff9f925b 199 # Format keys
200 'url', 'manifest_url', 'format', 'format_id', 'format_note', 'width', 'height', 'resolution',
201 'dynamic_range', 'tbr', 'abr', 'acodec', 'asr', 'vbr', 'fps', 'vcodec', 'container', 'filesize',
202 'filesize_approx', 'player_url', 'protocol', 'fragment_base_url', 'fragments', 'preference',
203 'language', 'language_preference', 'quality', 'source_preference', 'http_headers',
204 'stretched_ratio', 'no_resume', 'has_drm', 'downloader_options',
205
206 # RTMP formats
207 'page_url', 'app', 'play_path', 'tc_url', 'flash_version', 'rtmp_live', 'rtmp_conn', 'rtmp_protocol', 'rtmp_real_time',
208
209 # Lists
210 'formats', 'thumbnails', 'subtitles', 'automatic_captions', 'comments', 'entries',
211
212 # Auto-generated
75ad3357 213 'autonumber', 'playlist', 'format_index', 'video_ext', 'audio_ext', 'duration_string', 'epoch',
497d77e1 214 'fulltitle', 'extractor', 'extractor_key', 'filepath', 'infojson_filename', 'original_url', 'n_entries',
ff9f925b 215
216 # Only live_status needs to be checked
217 'is_live', 'was_live',
218 )
219
75ad3357 220 IGNORED_PREFIXES = ('', 'playlist', 'requested', 'webpage')
ff9f925b 221
222 def sanitize(key, value):
223 if isinstance(value, str) and len(value) > 100:
224 return f'md5:{md5(value)}'
225 elif isinstance(value, list) and len(value) > 10:
226 return f'count:{len(value)}'
976ae3ea 227 elif key.endswith('_count') and isinstance(value, int):
228 return int
ff9f925b 229 return value
230
231 test_info_dict = {
232 key: sanitize(key, value) for key, value in got_dict.items()
75ad3357 233 if value is not None and key not in IGNORED_FIELDS and not any(
234 key.startswith(f'{prefix}_') for prefix in IGNORED_PREFIXES)
ff9f925b 235 }
236
237 # display_id may be generated from id
238 if test_info_dict.get('display_id') == test_info_dict['id']:
239 test_info_dict.pop('display_id')
240
75ad3357 241 return test_info_dict
242
243
244def expect_info_dict(self, got_dict, expected_dict):
245 expect_dict(self, got_dict, expected_dict)
246 # Check for the presence of mandatory fields
247 if got_dict.get('_type') not in ('playlist', 'multi_video'):
248 mandatory_fields = ['id', 'title']
249 if expected_dict.get('ext'):
250 mandatory_fields.extend(('url', 'ext'))
251 for key in mandatory_fields:
252 self.assertTrue(got_dict.get(key), 'Missing mandatory field %s' % key)
253 # Check for mandatory fields that are automatically set by YoutubeDL
254 for key in ['webpage_url', 'extractor', 'extractor_key']:
255 self.assertTrue(got_dict.get(key), 'Missing field: %s' % key)
256
257 test_info_dict = sanitize_got_info_dict(got_dict)
258
ea38e55f
PH
259 missing_keys = set(test_info_dict.keys()) - set(expected_dict.keys())
260 if missing_keys:
c0f64ac6
PH
261 def _repr(v):
262 if isinstance(v, compat_str):
155f9550 263 return "'%s'" % v.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n')
976ae3ea 264 elif isinstance(v, type):
265 return v.__name__
c0f64ac6
PH
266 else:
267 return repr(v)
dc35bfd2
PH
268 info_dict_str = ''
269 if len(missing_keys) != len(expected_dict):
270 info_dict_str += ''.join(
271 ' %s: %s,\n' % (_repr(k), _repr(v))
272 for k, v in test_info_dict.items() if k not in missing_keys)
6f53c63d
PH
273
274 if info_dict_str:
275 info_dict_str += '\n'
dc35bfd2
PH
276 info_dict_str += ''.join(
277 ' %s: %s,\n' % (_repr(k), _repr(test_info_dict[k]))
278 for k in missing_keys)
3e6e4999 279 write_string(
f21e915f 280 '\n\'info_dict\': {\n' + info_dict_str + '},\n', out=sys.stderr)
ea38e55f
PH
281 self.assertFalse(
282 missing_keys,
283 'Missing keys in test definition: %s' % (
284 ', '.join(sorted(missing_keys))))
c57f7757
PH
285
286
287def assertRegexpMatches(self, text, regexp, msg=None):
0fd7fd71
PH
288 if hasattr(self, 'assertRegexp'):
289 return self.assertRegexp(text, regexp, msg)
c57f7757
PH
290 else:
291 m = re.match(regexp, text)
292 if not m:
8bdcb436
PH
293 note = 'Regexp didn\'t match: %r not found' % (regexp)
294 if len(text) < 1000:
295 note += ' in %r' % text
c57f7757
PH
296 if msg is None:
297 msg = note
298 else:
299 msg = note + ', ' + msg
300 self.assertTrue(m, msg)
d8624e6a
PH
301
302
303def assertGreaterEqual(self, got, expected, msg=None):
304 if not (got >= expected):
305 if msg is None:
306 msg = '%r not greater than or equal to %r' % (got, expected)
307 self.assertTrue(got >= expected, msg)
70b7e3fb
PH
308
309
a16c7c03
S
310def assertLessEqual(self, got, expected, msg=None):
311 if not (got <= expected):
312 if msg is None:
313 msg = '%r not less than or equal to %r' % (got, expected)
314 self.assertTrue(got <= expected, msg)
315
316
317def assertEqual(self, got, expected, msg=None):
318 if not (got == expected):
319 if msg is None:
320 msg = '%r not equal to %r' % (got, expected)
321 self.assertTrue(got == expected, msg)
322
323
70b7e3fb
PH
324def expect_warnings(ydl, warnings_re):
325 real_warning = ydl.report_warning
326
327 def _report_warning(w):
328 if not any(re.search(w_re, w) for w_re in warnings_re):
329 real_warning(w)
330
331 ydl.report_warning = _report_warning
95e42d73
XDG
332
333
334def http_server_port(httpd):
335 if os.name == 'java' and isinstance(httpd.socket, ssl.SSLSocket):
336 # In Jython SSLSocket is not a subclass of socket.socket
337 sock = httpd.socket.sock
338 else:
339 sock = httpd.socket
340 return sock.getsockname()[1]