test_download.py 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. #!/usr/bin/env python
  2. import errno
  3. import hashlib
  4. import io
  5. import os
  6. import json
  7. import unittest
  8. import sys
  9. import socket
  10. import binascii
  11. # Allow direct execution
  12. sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  13. import youtube_dl.YoutubeDL
  14. import youtube_dl.extractor
  15. from youtube_dl.utils import *
  16. DEF_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'tests.json')
  17. PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json")
  18. RETRIES = 3
  19. # General configuration (from __init__, not very elegant...)
  20. jar = compat_cookiejar.CookieJar()
  21. cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar)
  22. proxy_handler = compat_urllib_request.ProxyHandler()
  23. opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler())
  24. compat_urllib_request.install_opener(opener)
  25. socket.setdefaulttimeout(10)
  26. def _try_rm(filename):
  27. """ Remove a file if it exists """
  28. try:
  29. os.remove(filename)
  30. except OSError as ose:
  31. if ose.errno != errno.ENOENT:
  32. raise
  33. md5 = lambda s: hashlib.md5(s.encode('utf-8')).hexdigest()
  34. class YoutubeDL(youtube_dl.YoutubeDL):
  35. def __init__(self, *args, **kwargs):
  36. self.to_stderr = self.to_screen
  37. self.processed_info_dicts = []
  38. super(YoutubeDL, self).__init__(*args, **kwargs)
  39. def report_warning(self, message):
  40. # Don't accept warnings during tests
  41. raise ExtractorError(message)
  42. def process_info(self, info_dict):
  43. self.processed_info_dicts.append(info_dict)
  44. return super(YoutubeDL, self).process_info(info_dict)
  45. def _file_md5(fn):
  46. with open(fn, 'rb') as f:
  47. return hashlib.md5(f.read()).hexdigest()
  48. with io.open(DEF_FILE, encoding='utf-8') as deff:
  49. defs = json.load(deff)
  50. for ie in youtube_dl.extractor.gen_extractors():
  51. t = getattr(ie, '_TEST', None)
  52. if t:
  53. t['name'] = type(ie).__name__[:-len('IE')]
  54. defs.append(t)
  55. for t in getattr(ie, '_TESTS', []):
  56. t['name'] = type(ie).__name__[:-len('IE')]
  57. defs.append(t)
  58. with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
  59. parameters = json.load(pf)
  60. class TestDownload(unittest.TestCase):
  61. maxDiff = None
  62. def setUp(self):
  63. self.parameters = parameters
  64. self.defs = defs
  65. ### Dynamically generate tests
  66. def generator(test_case):
  67. def test_template(self):
  68. ie = youtube_dl.extractor.get_info_extractor(test_case['name'])
  69. if not ie._WORKING:
  70. print('Skipping: IE marked as not _WORKING')
  71. return
  72. if 'playlist' not in test_case and not test_case['file']:
  73. print('Skipping: No output file specified')
  74. return
  75. if 'skip' in test_case:
  76. print('Skipping: {0}'.format(test_case['skip']))
  77. return
  78. params = self.parameters.copy()
  79. params.update(test_case.get('params', {}))
  80. ydl = YoutubeDL(params)
  81. for ie in youtube_dl.extractor.gen_extractors():
  82. ydl.add_info_extractor(ie)
  83. finished_hook_called = set()
  84. def _hook(status):
  85. if status['status'] == 'finished':
  86. finished_hook_called.add(status['filename'])
  87. ydl.fd.add_progress_hook(_hook)
  88. test_cases = test_case.get('playlist', [test_case])
  89. for tc in test_cases:
  90. _try_rm(tc['file'])
  91. _try_rm(tc['file'] + '.part')
  92. _try_rm(tc['file'] + '.info.json')
  93. try:
  94. for retry in range(1, RETRIES + 1):
  95. try:
  96. ydl.download([test_case['url']])
  97. except (DownloadError, ExtractorError) as err:
  98. if retry == RETRIES: raise
  99. # Check if the exception is not a network related one
  100. if not err.exc_info[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
  101. raise
  102. print('Retrying: {0} failed tries\n\n##########\n\n'.format(retry))
  103. else:
  104. break
  105. for tc in test_cases:
  106. if not test_case.get('params', {}).get('skip_download', False):
  107. self.assertTrue(os.path.exists(tc['file']), msg='Missing file ' + tc['file'])
  108. self.assertTrue(tc['file'] in finished_hook_called)
  109. self.assertTrue(os.path.exists(tc['file'] + '.info.json'))
  110. if 'md5' in tc:
  111. md5_for_file = _file_md5(tc['file'])
  112. self.assertEqual(md5_for_file, tc['md5'])
  113. with io.open(tc['file'] + '.info.json', encoding='utf-8') as infof:
  114. info_dict = json.load(infof)
  115. for (info_field, expected) in tc.get('info_dict', {}).items():
  116. if isinstance(expected, compat_str) and expected.startswith('md5:'):
  117. self.assertEqual(expected, 'md5:' + md5(info_dict.get(info_field)))
  118. else:
  119. got = info_dict.get(info_field)
  120. self.assertEqual(
  121. expected, got,
  122. u'invalid value for field %s, expected %r, got %r' % (info_field, expected, got))
  123. # If checkable fields are missing from the test case, print the info_dict
  124. test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
  125. for key, value in info_dict.items()
  126. if value and key in ('title', 'description', 'uploader', 'upload_date', 'uploader_id', 'location'))
  127. if not all(key in tc.get('info_dict', {}).keys() for key in test_info_dict.keys()):
  128. sys.stderr.write(u'\n"info_dict": ' + json.dumps(test_info_dict, ensure_ascii=False, indent=2) + u'\n')
  129. # Check for the presence of mandatory fields
  130. for key in ('id', 'url', 'title', 'ext'):
  131. self.assertTrue(key in info_dict.keys() and info_dict[key])
  132. finally:
  133. for tc in test_cases:
  134. _try_rm(tc['file'])
  135. _try_rm(tc['file'] + '.part')
  136. _try_rm(tc['file'] + '.info.json')
  137. return test_template
  138. ### And add them to TestDownload
  139. for n, test_case in enumerate(defs):
  140. test_method = generator(test_case)
  141. tname = 'test_' + str(test_case['name'])
  142. i = 1
  143. while hasattr(TestDownload, tname):
  144. tname = 'test_' + str(test_case['name']) + '_' + str(i)
  145. i += 1
  146. test_method.__name__ = tname
  147. setattr(TestDownload, test_method.__name__, test_method)
  148. del test_method
  149. if __name__ == '__main__':
  150. unittest.main()