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.

180 lines
6.7 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. global_setup,
  11. try_rm,
  12. md5,
  13. report_warning
  14. )
  15. global_setup()
  16. import hashlib
  17. import io
  18. import json
  19. import socket
  20. import youtube_dl.YoutubeDL
  21. from youtube_dl.utils import (
  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.fd.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) 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('md5:'):
  121. got = 'md5:' + md5(info_dict.get(info_field))
  122. else:
  123. got = info_dict.get(info_field)
  124. self.assertEqual(expected, got,
  125. u'invalid value for field %s, expected %r, got %r' % (info_field, expected, got))
  126. # If checkable fields are missing from the test case, print the info_dict
  127. test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
  128. for key, value in info_dict.items()
  129. if value and key in ('title', 'description', 'uploader', 'upload_date', 'uploader_id', 'location'))
  130. if not all(key in tc.get('info_dict', {}).keys() for key in test_info_dict.keys()):
  131. sys.stderr.write(u'\n"info_dict": ' + json.dumps(test_info_dict, ensure_ascii=False, indent=2) + u'\n')
  132. # Check for the presence of mandatory fields
  133. for key in ('id', 'url', 'title', 'ext'):
  134. self.assertTrue(key in info_dict.keys() and info_dict[key])
  135. # Check for mandatory fields that are automatically set by YoutubeDL
  136. for key in ['webpage_url', 'extractor', 'extractor_key']:
  137. self.assertTrue(info_dict.get(key), u'Missing field: %s' % key)
  138. finally:
  139. try_rm_tcs_files()
  140. return test_template
  141. ### And add them to TestDownload
  142. for n, test_case in enumerate(defs):
  143. test_method = generator(test_case)
  144. tname = 'test_' + str(test_case['name'])
  145. i = 1
  146. while hasattr(TestDownload, tname):
  147. tname = 'test_' + str(test_case['name']) + '_' + str(i)
  148. i += 1
  149. test_method.__name__ = tname
  150. setattr(TestDownload, test_method.__name__, test_method)
  151. del test_method
  152. if __name__ == '__main__':
  153. unittest.main()