]> jfr.im git - yt-dlp.git/blame - test/helper.py
[cleanup] Misc cleanup
[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
QF
196
197def expect_info_dict(self, got_dict, expected_dict):
198 expect_dict(self, got_dict, expected_dict)
ea38e55f 199 # Check for the presence of mandatory fields
880ee801 200 if got_dict.get('_type') not in ('playlist', 'multi_video'):
0855702f 201 mandatory_fields = ['id', 'title']
202 if expected_dict.get('ext'):
203 mandatory_fields.extend(('url', 'ext'))
204 for key in mandatory_fields:
e8ee972c 205 self.assertTrue(got_dict.get(key), 'Missing mandatory field %s' % key)
ea38e55f
PH
206 # Check for mandatory fields that are automatically set by YoutubeDL
207 for key in ['webpage_url', 'extractor', 'extractor_key']:
7a08ad7d 208 self.assertTrue(got_dict.get(key), 'Missing field: %s' % key)
ea38e55f
PH
209
210 # Are checkable fields missing from the test case definition?
211 test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
9e1a5b84 212 for key, value in got_dict.items()
8e2b1be1 213 if value and key in ('id', 'title', 'description', 'uploader', 'upload_date', 'timestamp', 'uploader_id', 'location', 'age_limit'))
ea38e55f
PH
214 missing_keys = set(test_info_dict.keys()) - set(expected_dict.keys())
215 if missing_keys:
c0f64ac6
PH
216 def _repr(v):
217 if isinstance(v, compat_str):
155f9550 218 return "'%s'" % v.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n')
c0f64ac6
PH
219 else:
220 return repr(v)
dc35bfd2
PH
221 info_dict_str = ''
222 if len(missing_keys) != len(expected_dict):
223 info_dict_str += ''.join(
224 ' %s: %s,\n' % (_repr(k), _repr(v))
225 for k, v in test_info_dict.items() if k not in missing_keys)
6f53c63d
PH
226
227 if info_dict_str:
228 info_dict_str += '\n'
dc35bfd2
PH
229 info_dict_str += ''.join(
230 ' %s: %s,\n' % (_repr(k), _repr(test_info_dict[k]))
231 for k in missing_keys)
3e6e4999 232 write_string(
f21e915f 233 '\n\'info_dict\': {\n' + info_dict_str + '},\n', out=sys.stderr)
ea38e55f
PH
234 self.assertFalse(
235 missing_keys,
236 'Missing keys in test definition: %s' % (
237 ', '.join(sorted(missing_keys))))
c57f7757
PH
238
239
240def assertRegexpMatches(self, text, regexp, msg=None):
0fd7fd71
PH
241 if hasattr(self, 'assertRegexp'):
242 return self.assertRegexp(text, regexp, msg)
c57f7757
PH
243 else:
244 m = re.match(regexp, text)
245 if not m:
8bdcb436
PH
246 note = 'Regexp didn\'t match: %r not found' % (regexp)
247 if len(text) < 1000:
248 note += ' in %r' % text
c57f7757
PH
249 if msg is None:
250 msg = note
251 else:
252 msg = note + ', ' + msg
253 self.assertTrue(m, msg)
d8624e6a
PH
254
255
256def assertGreaterEqual(self, got, expected, msg=None):
257 if not (got >= expected):
258 if msg is None:
259 msg = '%r not greater than or equal to %r' % (got, expected)
260 self.assertTrue(got >= expected, msg)
70b7e3fb
PH
261
262
a16c7c03
S
263def assertLessEqual(self, got, expected, msg=None):
264 if not (got <= expected):
265 if msg is None:
266 msg = '%r not less than or equal to %r' % (got, expected)
267 self.assertTrue(got <= expected, msg)
268
269
270def assertEqual(self, got, expected, msg=None):
271 if not (got == expected):
272 if msg is None:
273 msg = '%r not equal to %r' % (got, expected)
274 self.assertTrue(got == expected, msg)
275
276
70b7e3fb
PH
277def expect_warnings(ydl, warnings_re):
278 real_warning = ydl.report_warning
279
280 def _report_warning(w):
281 if not any(re.search(w_re, w) for w_re in warnings_re):
282 real_warning(w)
283
284 ydl.report_warning = _report_warning
95e42d73
XDG
285
286
287def http_server_port(httpd):
288 if os.name == 'java' and isinstance(httpd.socket, ssl.SSLSocket):
289 # In Jython SSLSocket is not a subclass of socket.socket
290 sock = httpd.socket.sock
291 else:
292 sock = httpd.socket
293 return sock.getsockname()[1]