[test] split expect_dict to two functions
[youtube-dl] / test / helper.py
1 from __future__ import unicode_literals
2
3 import errno
4 import io
5 import hashlib
6 import json
7 import os.path
8 import re
9 import types
10 import sys
11
12 import youtube_dl.extractor
13 from youtube_dl import YoutubeDL
14 from youtube_dl.utils import (
15     compat_str,
16     preferredencoding,
17     write_string,
18 )
19
20
21 def 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
29
30
31 def 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
40 def 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':
46         _msg_header = '\033[0;33mWARNING:\033[0m'
47     else:
48         _msg_header = 'WARNING:'
49     output = '%s %s\n' % (_msg_header, message)
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
55 class FakeYDL(YoutubeDL):
56     def __init__(self, override=None):
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.
59         params = get_params(override=override)
60         super(FakeYDL, self).__init__(params, auto_init=False)
61         self.result = []
62
63     def to_screen(self, s, skip_eol=None):
64         print(s)
65
66     def trouble(self, s, tb=None):
67         raise Exception(s)
68
69     def download(self, x):
70         self.result.append(x)
71
72     def expect_warning(self, regex):
73         # Silence an expected warning matching a regex
74         old_report_warning = self.report_warning
75
76         def report_warning(self, message):
77             if re.match(regex, message):
78                 return
79             old_report_warning(message)
80         self.report_warning = types.MethodType(report_warning, self)
81
82
83 def gettestcases(include_onlymatching=False):
84     for ie in youtube_dl.extractor.gen_extractors():
85         for tc in ie.get_testcases(include_onlymatching):
86             yield tc
87
88
89 md5 = lambda s: hashlib.md5(s.encode('utf-8')).hexdigest()
90
91
92 def expect_value(self, got, expected, field):
93     if isinstance(expected, compat_str) and expected.startswith('re:'):
94         match_str = expected[len('re:'):]
95         match_rex = re.compile(match_str)
96
97         self.assertTrue(
98             isinstance(got, compat_str),
99             'Expected a %s object, but got %s for field %s' % (
100                 compat_str.__name__, type(got).__name__, field))
101         self.assertTrue(
102             match_rex.match(got),
103             'field %s (value: %r) should match %r' % (field, got, match_str))
104     elif isinstance(expected, compat_str) and expected.startswith('startswith:'):
105         start_str = expected[len('startswith:'):]
106         self.assertTrue(
107             isinstance(got, compat_str),
108             'Expected a %s object, but got %s for field %s' % (
109                 compat_str.__name__, type(got).__name__, field))
110         self.assertTrue(
111             got.startswith(start_str),
112             'field %s (value: %r) should start with %r' % (field, got, start_str))
113     elif isinstance(expected, compat_str) and expected.startswith('contains:'):
114         contains_str = expected[len('contains:'):]
115         self.assertTrue(
116             isinstance(got, compat_str),
117             'Expected a %s object, but got %s for field %s' % (
118                 compat_str.__name__, type(got).__name__, field))
119         self.assertTrue(
120             contains_str in got,
121             'field %s (value: %r) should contain %r' % (field, got, contains_str))
122     elif isinstance(expected, type):
123         self.assertTrue(isinstance(got, expected),
124                         'Expected type %r for field %s, but got value %r of type %r' % (expected, field, got, type(got)))
125     elif isinstance(expected, dict) and isinstance(got, dict):
126         expect_dict(self, got, expected)
127     elif isinstance(expected, list) and isinstance(got, list):
128         self.assertEqual(len(expected), len(got),
129                          'Expect a list of length %d, but got a list of length %d' % (
130                          len(expected), len(got)))
131         _id = 0
132         for i, j in zip(got, expected):
133             _type_i = type(i)
134             _type_j = type(j)
135             self.assertEqual(_type_j, _type_i,
136                              'Type doesn\'t match at element %d of the list in field %s, expect %s, got %s' % (
137                              _id, field, _type_j, _type_i))
138             expect_value(self, i, j, field)
139             _id += 1
140     else:
141         if isinstance(expected, compat_str) and expected.startswith('md5:'):
142             got = 'md5:' + md5(got)
143         elif isinstance(expected, compat_str) and expected.startswith('mincount:'):
144             self.assertTrue(
145                 isinstance(got, (list, dict)),
146                 'Expected field %s to be a list or a dict, but it is of type %s' % (
147                     field, type(got).__name__))
148             expected_num = int(expected.partition(':')[2])
149             assertGreaterEqual(
150                 self, len(got), expected_num,
151                 'Expected %d items in field %s, but only got %d' % (
152                     expected_num, field, len(got)
153                 )
154             )
155             return
156         self.assertEqual(expected, got,
157                          'invalid value for field %s, expected %r, got %r' % (field, expected, got))
158
159
160 def expect_dict(self, got_dict, expected_dict):
161     for info_field, expected in expected_dict.items():
162         got = got_dict.get(info_field)
163         expect_value(self, got, expected, info_field)
164
165
166 def expect_info_dict(self, got_dict, expected_dict):
167     expect_dict(self, got_dict, expected_dict)
168     # Check for the presence of mandatory fields
169     if got_dict.get('_type') not in ('playlist', 'multi_video'):
170         for key in ('id', 'url', 'title', 'ext'):
171             self.assertTrue(got_dict.get(key), 'Missing mandatory field %s' % key)
172     # Check for mandatory fields that are automatically set by YoutubeDL
173     for key in ['webpage_url', 'extractor', 'extractor_key']:
174         self.assertTrue(got_dict.get(key), 'Missing field: %s' % key)
175
176     # Are checkable fields missing from the test case definition?
177     test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
178                           for key, value in got_dict.items()
179                           if value and key in ('id', 'title', 'description', 'uploader', 'upload_date', 'timestamp', 'uploader_id', 'location', 'age_limit'))
180     missing_keys = set(test_info_dict.keys()) - set(expected_dict.keys())
181     if missing_keys:
182         def _repr(v):
183             if isinstance(v, compat_str):
184                 return "'%s'" % v.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n')
185             else:
186                 return repr(v)
187         info_dict_str = ''
188         if len(missing_keys) != len(expected_dict):
189             info_dict_str += ''.join(
190                 '    %s: %s,\n' % (_repr(k), _repr(v))
191                 for k, v in test_info_dict.items() if k not in missing_keys)
192
193             if info_dict_str:
194                 info_dict_str += '\n'
195         info_dict_str += ''.join(
196             '    %s: %s,\n' % (_repr(k), _repr(test_info_dict[k]))
197             for k in missing_keys)
198         write_string(
199             '\n\'info_dict\': {\n' + info_dict_str + '},\n', out=sys.stderr)
200         self.assertFalse(
201             missing_keys,
202             'Missing keys in test definition: %s' % (
203                 ', '.join(sorted(missing_keys))))
204
205
206 def assertRegexpMatches(self, text, regexp, msg=None):
207     if hasattr(self, 'assertRegexp'):
208         return self.assertRegexp(text, regexp, msg)
209     else:
210         m = re.match(regexp, text)
211         if not m:
212             note = 'Regexp didn\'t match: %r not found' % (regexp)
213             if len(text) < 1000:
214                 note += ' in %r' % text
215             if msg is None:
216                 msg = note
217             else:
218                 msg = note + ', ' + msg
219             self.assertTrue(m, msg)
220
221
222 def assertGreaterEqual(self, got, expected, msg=None):
223     if not (got >= expected):
224         if msg is None:
225             msg = '%r not greater than or equal to %r' % (got, expected)
226         self.assertTrue(got >= expected, msg)
227
228
229 def expect_warnings(ydl, warnings_re):
230     real_warning = ydl.report_warning
231
232     def _report_warning(w):
233         if not any(re.search(w_re, w) for w_re in warnings_re):
234             real_warning(w)
235
236     ydl.report_warning = _report_warning