helper.py 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. from __future__ import unicode_literals
  2. import errno
  3. import io
  4. import hashlib
  5. import json
  6. import os.path
  7. import re
  8. import types
  9. import sys
  10. import youtube_dl.extractor
  11. from youtube_dl import YoutubeDL
  12. from youtube_dl.utils import (
  13. compat_str,
  14. preferredencoding,
  15. write_string,
  16. )
  17. def get_params(override=None):
  18. PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)),
  19. "parameters.json")
  20. with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
  21. parameters = json.load(pf)
  22. if override:
  23. parameters.update(override)
  24. return parameters
  25. def try_rm(filename):
  26. """ Remove a file if it exists """
  27. try:
  28. os.remove(filename)
  29. except OSError as ose:
  30. if ose.errno != errno.ENOENT:
  31. raise
  32. def report_warning(message):
  33. '''
  34. Print the message to stderr, it will be prefixed with 'WARNING:'
  35. If stderr is a tty file the 'WARNING:' will be colored
  36. '''
  37. if sys.stderr.isatty() and os.name != 'nt':
  38. _msg_header = '\033[0;33mWARNING:\033[0m'
  39. else:
  40. _msg_header = 'WARNING:'
  41. output = '%s %s\n' % (_msg_header, message)
  42. if 'b' in getattr(sys.stderr, 'mode', '') or sys.version_info[0] < 3:
  43. output = output.encode(preferredencoding())
  44. sys.stderr.write(output)
  45. class FakeYDL(YoutubeDL):
  46. def __init__(self, override=None):
  47. # Different instances of the downloader can't share the same dictionary
  48. # some test set the "sublang" parameter, which would break the md5 checks.
  49. params = get_params(override=override)
  50. super(FakeYDL, self).__init__(params, auto_init=False)
  51. self.result = []
  52. def to_screen(self, s, skip_eol=None):
  53. print(s)
  54. def trouble(self, s, tb=None):
  55. raise Exception(s)
  56. def download(self, x):
  57. self.result.append(x)
  58. def expect_warning(self, regex):
  59. # Silence an expected warning matching a regex
  60. old_report_warning = self.report_warning
  61. def report_warning(self, message):
  62. if re.match(regex, message):
  63. return
  64. old_report_warning(message)
  65. self.report_warning = types.MethodType(report_warning, self)
  66. def gettestcases(include_onlymatching=False):
  67. for ie in youtube_dl.extractor.gen_extractors():
  68. for tc in ie.get_testcases(include_onlymatching):
  69. yield tc
  70. md5 = lambda s: hashlib.md5(s.encode('utf-8')).hexdigest()
  71. def expect_value(self, got, expected, field):
  72. if isinstance(expected, compat_str) and expected.startswith('re:'):
  73. match_str = expected[len('re:'):]
  74. match_rex = re.compile(match_str)
  75. self.assertTrue(
  76. isinstance(got, compat_str),
  77. 'Expected a %s object, but got %s for field %s' % (
  78. compat_str.__name__, type(got).__name__, field))
  79. self.assertTrue(
  80. match_rex.match(got),
  81. 'field %s (value: %r) should match %r' % (field, got, match_str))
  82. elif isinstance(expected, compat_str) and expected.startswith('startswith:'):
  83. start_str = expected[len('startswith:'):]
  84. self.assertTrue(
  85. isinstance(got, compat_str),
  86. 'Expected a %s object, but got %s for field %s' % (
  87. compat_str.__name__, type(got).__name__, field))
  88. self.assertTrue(
  89. got.startswith(start_str),
  90. 'field %s (value: %r) should start with %r' % (field, got, start_str))
  91. elif isinstance(expected, compat_str) and expected.startswith('contains:'):
  92. contains_str = expected[len('contains:'):]
  93. self.assertTrue(
  94. isinstance(got, compat_str),
  95. 'Expected a %s object, but got %s for field %s' % (
  96. compat_str.__name__, type(got).__name__, field))
  97. self.assertTrue(
  98. contains_str in got,
  99. 'field %s (value: %r) should contain %r' % (field, got, contains_str))
  100. elif isinstance(expected, type):
  101. self.assertTrue(
  102. isinstance(got, expected),
  103. 'Expected type %r for field %s, but got value %r of type %r' % (expected, field, got, type(got)))
  104. elif isinstance(expected, dict) and isinstance(got, dict):
  105. expect_dict(self, got, expected)
  106. elif isinstance(expected, list) and isinstance(got, list):
  107. self.assertEqual(
  108. len(expected), len(got),
  109. 'Expect a list of length %d, but got a list of length %d' % (len(expected), len(got)))
  110. for index, (item_got, item_expected) in enumerate(zip(got, expected)):
  111. type_got = type(item_got)
  112. type_expected = type(item_expected)
  113. self.assertEqual(
  114. type_expected, type_got,
  115. 'Type mismatch for list item at index %d for field %s, expected %r, got %r' % (
  116. index, field, type_expected, type_got))
  117. expect_value(self, item_got, item_expected, field)
  118. else:
  119. if isinstance(expected, compat_str) and expected.startswith('md5:'):
  120. got = 'md5:' + md5(got)
  121. elif isinstance(expected, compat_str) and expected.startswith('mincount:'):
  122. self.assertTrue(
  123. isinstance(got, (list, dict)),
  124. 'Expected field %s to be a list or a dict, but it is of type %s' % (
  125. field, type(got).__name__))
  126. expected_num = int(expected.partition(':')[2])
  127. assertGreaterEqual(
  128. self, len(got), expected_num,
  129. 'Expected %d items in field %s, but only got %d' % (expected_num, field, len(got)))
  130. return
  131. self.assertEqual(
  132. expected, got,
  133. 'Invalid value for field %s, expected %r, got %r' % (field, expected, got))
  134. def expect_dict(self, got_dict, expected_dict):
  135. for info_field, expected in expected_dict.items():
  136. got = got_dict.get(info_field)
  137. expect_value(self, got, expected, info_field)
  138. def expect_info_dict(self, got_dict, expected_dict):
  139. expect_dict(self, got_dict, expected_dict)
  140. # Check for the presence of mandatory fields
  141. if got_dict.get('_type') not in ('playlist', 'multi_video'):
  142. for key in ('id', 'url', 'title', 'ext'):
  143. self.assertTrue(got_dict.get(key), 'Missing mandatory field %s' % key)
  144. # Check for mandatory fields that are automatically set by YoutubeDL
  145. for key in ['webpage_url', 'extractor', 'extractor_key']:
  146. self.assertTrue(got_dict.get(key), 'Missing field: %s' % key)
  147. # Are checkable fields missing from the test case definition?
  148. test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
  149. for key, value in got_dict.items()
  150. if value and key in ('id', 'title', 'description', 'uploader', 'upload_date', 'timestamp', 'uploader_id', 'location', 'age_limit'))
  151. missing_keys = set(test_info_dict.keys()) - set(expected_dict.keys())
  152. if missing_keys:
  153. def _repr(v):
  154. if isinstance(v, compat_str):
  155. return "'%s'" % v.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n')
  156. else:
  157. return repr(v)
  158. info_dict_str = ''
  159. if len(missing_keys) != len(expected_dict):
  160. info_dict_str += ''.join(
  161. ' %s: %s,\n' % (_repr(k), _repr(v))
  162. for k, v in test_info_dict.items() if k not in missing_keys)
  163. if info_dict_str:
  164. info_dict_str += '\n'
  165. info_dict_str += ''.join(
  166. ' %s: %s,\n' % (_repr(k), _repr(test_info_dict[k]))
  167. for k in missing_keys)
  168. write_string(
  169. '\n\'info_dict\': {\n' + info_dict_str + '},\n', out=sys.stderr)
  170. self.assertFalse(
  171. missing_keys,
  172. 'Missing keys in test definition: %s' % (
  173. ', '.join(sorted(missing_keys))))
  174. def assertRegexpMatches(self, text, regexp, msg=None):
  175. if hasattr(self, 'assertRegexp'):
  176. return self.assertRegexp(text, regexp, msg)
  177. else:
  178. m = re.match(regexp, text)
  179. if not m:
  180. note = 'Regexp didn\'t match: %r not found' % (regexp)
  181. if len(text) < 1000:
  182. note += ' in %r' % text
  183. if msg is None:
  184. msg = note
  185. else:
  186. msg = note + ', ' + msg
  187. self.assertTrue(m, msg)
  188. def assertGreaterEqual(self, got, expected, msg=None):
  189. if not (got >= expected):
  190. if msg is None:
  191. msg = '%r not greater than or equal to %r' % (got, expected)
  192. self.assertTrue(got >= expected, msg)
  193. def expect_warnings(ydl, warnings_re):
  194. real_warning = ydl.report_warning
  195. def _report_warning(w):
  196. if not any(re.search(w_re, w) for w_re in warnings_re):
  197. real_warning(w)
  198. ydl.report_warning = _report_warning