helper.py 8.8 KB

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