]> jfr.im git - yt-dlp.git/blame - test/helper.py
[test] recursively check dict and list in expect_info_dict
[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
dd508b7c 10import sys
112da0a0 11
fc2c063e 12import youtube_dl.extractor
44a5f171 13from youtube_dl import YoutubeDL
257cfebf
PH
14from youtube_dl.utils import (
15 compat_str,
16 preferredencoding,
c0f64ac6 17 write_string,
257cfebf 18)
112da0a0 19
112da0a0 20
44a5f171
PH
21def get_params(override=None):
22 PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)),
23 "parameters.json")
24 with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
25 parameters = json.load(pf)
26 if override:
27 parameters.update(override)
28 return parameters
112da0a0 29
f4aac741
PH
30
31def try_rm(filename):
32 """ Remove a file if it exists """
33 try:
34 os.remove(filename)
35 except OSError as ose:
36 if ose.errno != errno.ENOENT:
37 raise
38
39
dd508b7c
FV
40def report_warning(message):
41 '''
42 Print the message to stderr, it will be prefixed with 'WARNING:'
43 If stderr is a tty file the 'WARNING:' will be colored
44 '''
45 if sys.stderr.isatty() and os.name != 'nt':
7a08ad7d 46 _msg_header = '\033[0;33mWARNING:\033[0m'
dd508b7c 47 else:
7a08ad7d
PH
48 _msg_header = 'WARNING:'
49 output = '%s %s\n' % (_msg_header, message)
dd508b7c
FV
50 if 'b' in getattr(sys.stderr, 'mode', '') or sys.version_info[0] < 3:
51 output = output.encode(preferredencoding())
52 sys.stderr.write(output)
53
54
112da0a0 55class FakeYDL(YoutubeDL):
f4d96df0 56 def __init__(self, override=None):
112da0a0
PH
57 # Different instances of the downloader can't share the same dictionary
58 # some test set the "sublang" parameter, which would break the md5 checks.
f4d96df0 59 params = get_params(override=override)
ac35c266 60 super(FakeYDL, self).__init__(params, auto_init=False)
f4aac741 61 self.result = []
5f6a1245 62
f4aac741 63 def to_screen(self, s, skip_eol=None):
112da0a0 64 print(s)
f4aac741 65
112da0a0
PH
66 def trouble(self, s, tb=None):
67 raise Exception(s)
f4aac741 68
112da0a0 69 def download(self, x):
fc2c063e 70 self.result.append(x)
f4aac741 71
00fcc17a
FV
72 def expect_warning(self, regex):
73 # Silence an expected warning matching a regex
74 old_report_warning = self.report_warning
5f6a1245 75
00fcc17a 76 def report_warning(self, message):
5f6a1245
JW
77 if re.match(regex, message):
78 return
00fcc17a
FV
79 old_report_warning(message)
80 self.report_warning = types.MethodType(report_warning, self)
fc2c063e 81
52fadd5f
PH
82
83def gettestcases(include_onlymatching=False):
fc2c063e 84 for ie in youtube_dl.extractor.gen_extractors():
05900629
PH
85 for tc in ie.get_testcases(include_onlymatching):
86 yield tc
44a5f171
PH
87
88
89md5 = lambda s: hashlib.md5(s.encode('utf-8')).hexdigest()
257cfebf
PH
90
91
93bc7ef1 92def expect_dict(self, got_dict, expected_dict):
257cfebf
PH
93 for info_field, expected in expected_dict.items():
94 if isinstance(expected, compat_str) and expected.startswith('re:'):
95 got = got_dict.get(info_field)
96 match_str = expected[len('re:'):]
97 match_rex = re.compile(match_str)
98
99 self.assertTrue(
0990305d 100 isinstance(got, compat_str),
7a08ad7d 101 'Expected a %s object, but got %s for field %s' % (
22a6f150 102 compat_str.__name__, type(got).__name__, info_field))
0990305d
PH
103 self.assertTrue(
104 match_rex.match(got),
7a08ad7d 105 'field %s (value: %r) should match %r' % (info_field, got, match_str))
23d9ded6
PH
106 elif isinstance(expected, compat_str) and expected.startswith('startswith:'):
107 got = got_dict.get(info_field)
108 start_str = expected[len('startswith:'):]
109 self.assertTrue(
110 isinstance(got, compat_str),
111 'Expected a %s object, but got %s for field %s' % (
112 compat_str.__name__, type(got).__name__, info_field))
113 self.assertTrue(
114 got.startswith(start_str),
115 'field %s (value: %r) should start with %r' % (info_field, got, start_str))
9789d753
PH
116 elif isinstance(expected, compat_str) and expected.startswith('contains:'):
117 got = got_dict.get(info_field)
118 contains_str = expected[len('contains:'):]
119 self.assertTrue(
120 isinstance(got, compat_str),
121 'Expected a %s object, but got %s for field %s' % (
122 compat_str.__name__, type(got).__name__, info_field))
123 self.assertTrue(
124 contains_str in got,
125 'field %s (value: %r) should contain %r' % (info_field, got, contains_str))
257cfebf
PH
126 elif isinstance(expected, type):
127 got = got_dict.get(info_field)
128 self.assertTrue(isinstance(got, expected),
9e1a5b84 129 'Expected type %r for field %s, but got value %r of type %r' % (expected, info_field, got, type(got)))
93bc7ef1
QF
130 elif isinstance(expected, dict) and isinstance(got_dict.get(info_field, None), dict):
131 expect_dict(self, got_dict.get(info_field), expected)
132 elif isinstance(expected, list) and isinstance(got_dict.get(info_field, None), list):
133 got = got_dict.get(info_field, None)
134 self.assertEqual(len(expected), len(got),
135 'Expect a list of length %d, but got a list of length %d' % (
136 len(expected), len(got)))
137 _id = 0
138 for i, j in zip(got, expected):
139 _type_i = type(i)
140 _type_j = type(j)
141 self.assertEqual(_type_j, _type_i,
142 'Type doesn\'t match at element %d of the list in field %s, expect %s, got %s' % (
143 _id, info_field, _type_j, _type_i))
144 expect_dict(self, {'_': i}, {'_': j})
145 _id += 1
257cfebf
PH
146 else:
147 if isinstance(expected, compat_str) and expected.startswith('md5:'):
148 got = 'md5:' + md5(got_dict.get(info_field))
dd622d7c
PH
149 elif isinstance(expected, compat_str) and expected.startswith('mincount:'):
150 got = got_dict.get(info_field)
151 self.assertTrue(
645f8145
S
152 isinstance(got, (list, dict)),
153 'Expected field %s to be a list or a dict, but it is of type %s' % (
dd622d7c
PH
154 info_field, type(got).__name__))
155 expected_num = int(expected.partition(':')[2])
156 assertGreaterEqual(
157 self, len(got), expected_num,
158 'Expected %d items in field %s, but only got %d' % (
159 expected_num, info_field, len(got)
160 )
161 )
162 continue
257cfebf
PH
163 else:
164 got = got_dict.get(info_field)
165 self.assertEqual(expected, got,
9e1a5b84 166 'invalid value for field %s, expected %r, got %r' % (info_field, expected, got))
257cfebf 167
93bc7ef1
QF
168
169def expect_info_dict(self, got_dict, expected_dict):
170 expect_dict(self, got_dict, expected_dict)
ea38e55f 171 # Check for the presence of mandatory fields
880ee801 172 if got_dict.get('_type') not in ('playlist', 'multi_video'):
e8ee972c
PH
173 for key in ('id', 'url', 'title', 'ext'):
174 self.assertTrue(got_dict.get(key), 'Missing mandatory field %s' % key)
ea38e55f
PH
175 # Check for mandatory fields that are automatically set by YoutubeDL
176 for key in ['webpage_url', 'extractor', 'extractor_key']:
7a08ad7d 177 self.assertTrue(got_dict.get(key), 'Missing field: %s' % key)
ea38e55f
PH
178
179 # Are checkable fields missing from the test case definition?
180 test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
9e1a5b84 181 for key, value in got_dict.items()
8e2b1be1 182 if value and key in ('id', 'title', 'description', 'uploader', 'upload_date', 'timestamp', 'uploader_id', 'location', 'age_limit'))
ea38e55f
PH
183 missing_keys = set(test_info_dict.keys()) - set(expected_dict.keys())
184 if missing_keys:
c0f64ac6
PH
185 def _repr(v):
186 if isinstance(v, compat_str):
155f9550 187 return "'%s'" % v.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n')
c0f64ac6
PH
188 else:
189 return repr(v)
dc35bfd2
PH
190 info_dict_str = ''
191 if len(missing_keys) != len(expected_dict):
192 info_dict_str += ''.join(
193 ' %s: %s,\n' % (_repr(k), _repr(v))
194 for k, v in test_info_dict.items() if k not in missing_keys)
6f53c63d
PH
195
196 if info_dict_str:
197 info_dict_str += '\n'
dc35bfd2
PH
198 info_dict_str += ''.join(
199 ' %s: %s,\n' % (_repr(k), _repr(test_info_dict[k]))
200 for k in missing_keys)
3e6e4999 201 write_string(
f21e915f 202 '\n\'info_dict\': {\n' + info_dict_str + '},\n', out=sys.stderr)
ea38e55f
PH
203 self.assertFalse(
204 missing_keys,
205 'Missing keys in test definition: %s' % (
206 ', '.join(sorted(missing_keys))))
c57f7757
PH
207
208
209def assertRegexpMatches(self, text, regexp, msg=None):
0fd7fd71
PH
210 if hasattr(self, 'assertRegexp'):
211 return self.assertRegexp(text, regexp, msg)
c57f7757
PH
212 else:
213 m = re.match(regexp, text)
214 if not m:
8bdcb436
PH
215 note = 'Regexp didn\'t match: %r not found' % (regexp)
216 if len(text) < 1000:
217 note += ' in %r' % text
c57f7757
PH
218 if msg is None:
219 msg = note
220 else:
221 msg = note + ', ' + msg
222 self.assertTrue(m, msg)
d8624e6a
PH
223
224
225def assertGreaterEqual(self, got, expected, msg=None):
226 if not (got >= expected):
227 if msg is None:
228 msg = '%r not greater than or equal to %r' % (got, expected)
229 self.assertTrue(got >= expected, msg)
70b7e3fb
PH
230
231
232def expect_warnings(ydl, warnings_re):
233 real_warning = ydl.report_warning
234
235 def _report_warning(w):
236 if not any(re.search(w_re, w) for w_re in warnings_re):
237 real_warning(w)
238
239 ydl.report_warning = _report_warning