You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

189 lines
7.3 KiB

12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
  1. #!/usr/bin/env python
  2. # Allow direct execution
  3. import os
  4. import sys
  5. import unittest
  6. sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  7. from test.helper import (
  8. get_params,
  9. get_testcases,
  10. try_rm,
  11. md5,
  12. report_warning
  13. )
  14. import hashlib
  15. import io
  16. import json
  17. import re
  18. import socket
  19. import youtube_dl.YoutubeDL
  20. from youtube_dl.utils import (
  21. compat_http_client,
  22. compat_str,
  23. compat_urllib_error,
  24. compat_HTTPError,
  25. DownloadError,
  26. ExtractorError,
  27. UnavailableVideoError,
  28. )
  29. from youtube_dl.extractor import get_info_extractor
  30. RETRIES = 3
  31. class YoutubeDL(youtube_dl.YoutubeDL):
  32. def __init__(self, *args, **kwargs):
  33. self.to_stderr = self.to_screen
  34. self.processed_info_dicts = []
  35. super(YoutubeDL, self).__init__(*args, **kwargs)
  36. def report_warning(self, message):
  37. # Don't accept warnings during tests
  38. raise ExtractorError(message)
  39. def process_info(self, info_dict):
  40. self.processed_info_dicts.append(info_dict)
  41. return super(YoutubeDL, self).process_info(info_dict)
  42. def _file_md5(fn):
  43. with open(fn, 'rb') as f:
  44. return hashlib.md5(f.read()).hexdigest()
  45. defs = get_testcases()
  46. class TestDownload(unittest.TestCase):
  47. maxDiff = None
  48. def setUp(self):
  49. self.defs = defs
  50. ### Dynamically generate tests
  51. def generator(test_case):
  52. def test_template(self):
  53. ie = youtube_dl.extractor.get_info_extractor(test_case['name'])
  54. other_ies = [get_info_extractor(ie_key) for ie_key in test_case.get('add_ie', [])]
  55. def print_skipping(reason):
  56. print('Skipping %s: %s' % (test_case['name'], reason))
  57. if not ie.working():
  58. print_skipping('IE marked as not _WORKING')
  59. return
  60. if 'playlist' not in test_case:
  61. info_dict = test_case.get('info_dict', {})
  62. if not test_case.get('file') and not (info_dict.get('id') and info_dict.get('ext')):
  63. print_skipping('The output file cannot be know, the "file" '
  64. 'key is missing or the info_dict is incomplete')
  65. return
  66. if 'skip' in test_case:
  67. print_skipping(test_case['skip'])
  68. return
  69. for other_ie in other_ies:
  70. if not other_ie.working():
  71. print_skipping(u'test depends on %sIE, marked as not WORKING' % other_ie.ie_key())
  72. return
  73. params = get_params(test_case.get('params', {}))
  74. ydl = YoutubeDL(params)
  75. ydl.add_default_info_extractors()
  76. finished_hook_called = set()
  77. def _hook(status):
  78. if status['status'] == 'finished':
  79. finished_hook_called.add(status['filename'])
  80. ydl.add_progress_hook(_hook)
  81. def get_tc_filename(tc):
  82. return tc.get('file') or ydl.prepare_filename(tc.get('info_dict', {}))
  83. test_cases = test_case.get('playlist', [test_case])
  84. def try_rm_tcs_files():
  85. for tc in test_cases:
  86. tc_filename = get_tc_filename(tc)
  87. try_rm(tc_filename)
  88. try_rm(tc_filename + '.part')
  89. try_rm(os.path.splitext(tc_filename)[0] + '.info.json')
  90. try_rm_tcs_files()
  91. try:
  92. try_num = 1
  93. while True:
  94. try:
  95. ydl.download([test_case['url']])
  96. except (DownloadError, ExtractorError) as err:
  97. # Check if the exception is not a network related one
  98. if not err.exc_info[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError, compat_http_client.BadStatusLine) or (err.exc_info[0] == compat_HTTPError and err.exc_info[1].code == 503):
  99. raise
  100. if try_num == RETRIES:
  101. report_warning(u'Failed due to network errors, skipping...')
  102. return
  103. print('Retrying: {0} failed tries\n\n##########\n\n'.format(try_num))
  104. try_num += 1
  105. else:
  106. break
  107. for tc in test_cases:
  108. tc_filename = get_tc_filename(tc)
  109. if not test_case.get('params', {}).get('skip_download', False):
  110. self.assertTrue(os.path.exists(tc_filename), msg='Missing file ' + tc_filename)
  111. self.assertTrue(tc_filename in finished_hook_called)
  112. info_json_fn = os.path.splitext(tc_filename)[0] + '.info.json'
  113. self.assertTrue(os.path.exists(info_json_fn))
  114. if 'md5' in tc:
  115. md5_for_file = _file_md5(tc_filename)
  116. self.assertEqual(md5_for_file, tc['md5'])
  117. with io.open(info_json_fn, encoding='utf-8') as infof:
  118. info_dict = json.load(infof)
  119. for (info_field, expected) in tc.get('info_dict', {}).items():
  120. if isinstance(expected, compat_str) and expected.startswith('re:'):
  121. got = info_dict.get(info_field)
  122. match_str = expected[len('re:'):]
  123. match_rex = re.compile(match_str)
  124. self.assertTrue(
  125. isinstance(got, compat_str) and match_rex.match(got),
  126. u'field %s (value: %r) should match %r' % (info_field, got, match_str))
  127. else:
  128. if isinstance(expected, compat_str) and expected.startswith('md5:'):
  129. got = 'md5:' + md5(info_dict.get(info_field))
  130. else:
  131. got = info_dict.get(info_field)
  132. self.assertEqual(expected, got,
  133. u'invalid value for field %s, expected %r, got %r' % (info_field, expected, got))
  134. # If checkable fields are missing from the test case, print the info_dict
  135. test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
  136. for key, value in info_dict.items()
  137. if value and key in ('title', 'description', 'uploader', 'upload_date', 'uploader_id', 'location'))
  138. if not all(key in tc.get('info_dict', {}).keys() for key in test_info_dict.keys()):
  139. sys.stderr.write(u'\n"info_dict": ' + json.dumps(test_info_dict, ensure_ascii=False, indent=4) + u'\n')
  140. # Check for the presence of mandatory fields
  141. for key in ('id', 'url', 'title', 'ext'):
  142. self.assertTrue(key in info_dict.keys() and info_dict[key])
  143. # Check for mandatory fields that are automatically set by YoutubeDL
  144. for key in ['webpage_url', 'extractor', 'extractor_key']:
  145. self.assertTrue(info_dict.get(key), u'Missing field: %s' % key)
  146. finally:
  147. try_rm_tcs_files()
  148. return test_template
  149. ### And add them to TestDownload
  150. for n, test_case in enumerate(defs):
  151. test_method = generator(test_case)
  152. tname = 'test_' + str(test_case['name'])
  153. i = 1
  154. while hasattr(TestDownload, tname):
  155. tname = 'test_' + str(test_case['name']) + '_' + str(i)
  156. i += 1
  157. test_method.__name__ = tname
  158. setattr(TestDownload, test_method.__name__, test_method)
  159. del test_method
  160. if __name__ == '__main__':
  161. unittest.main()