test_download.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 hashlib
  10. import socket
  11. # Allow direct execution
  12. sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  13. import youtube_dl.FileDownloader
  14. import youtube_dl.InfoExtractors
  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. class FileDownloader(youtube_dl.FileDownloader):
  34. def __init__(self, *args, **kwargs):
  35. self._to_stderr = self.to_stderr
  36. self.to_stderr = self.to_screen
  37. self.processed_info_dicts = []
  38. return youtube_dl.FileDownloader.__init__(self, *args, **kwargs)
  39. def report_warning(self, message):
  40. # let warnings pass to output
  41. if sys.stderr.isatty() and os.name != 'nt':
  42. _msg_header=u'\033[0;33mWARNING:\033[0m'
  43. else:
  44. _msg_header=u'WARNING:'
  45. warning_message=u'%s %s' % (_msg_header,message)
  46. self._to_stderr(warning_message)
  47. def process_info(self, info_dict):
  48. self.processed_info_dicts.append(info_dict)
  49. return youtube_dl.FileDownloader.process_info(self, info_dict)
  50. def _file_md5(fn):
  51. with open(fn, 'rb') as f:
  52. return hashlib.md5(f.read()).hexdigest()
  53. with io.open(DEF_FILE, encoding='utf-8') as deff:
  54. defs = json.load(deff)
  55. with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
  56. parameters = json.load(pf)
  57. class TestDownload(unittest.TestCase):
  58. maxDiff = None
  59. def setUp(self):
  60. self.parameters = parameters
  61. self.defs = defs
  62. ### Dynamically generate tests
  63. def generator(test_case):
  64. def test_template(self):
  65. ie = youtube_dl.InfoExtractors.get_info_extractor(test_case['name'])
  66. if not ie._WORKING:
  67. print('Skipping: IE marked as not _WORKING')
  68. return
  69. if 'playlist' not in test_case and not test_case['file']:
  70. print('Skipping: No output file specified')
  71. return
  72. if 'skip' in test_case:
  73. print('Skipping: {0}'.format(test_case['skip']))
  74. return
  75. params = self.parameters.copy()
  76. params.update(test_case.get('params', {}))
  77. fd = FileDownloader(params)
  78. for ie in youtube_dl.InfoExtractors.gen_extractors():
  79. fd.add_info_extractor(ie)
  80. finished_hook_called = set()
  81. def _hook(status):
  82. if status['status'] == 'finished':
  83. finished_hook_called.add(status['filename'])
  84. fd.add_progress_hook(_hook)
  85. test_cases = test_case.get('playlist', [test_case])
  86. for tc in test_cases:
  87. _try_rm(tc['file'])
  88. _try_rm(tc['file'] + '.part')
  89. _try_rm(tc['file'] + '.info.json')
  90. try:
  91. for retry in range(1, RETRIES + 1):
  92. try:
  93. fd.download([test_case['url']])
  94. except (DownloadError, ExtractorError) as err:
  95. if retry == RETRIES: raise
  96. # Check if the exception is not a network related one
  97. if not err.exc_info[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
  98. raise
  99. print('Retrying: {0} failed tries\n\n##########\n\n'.format(retry))
  100. else:
  101. break
  102. for tc in test_cases:
  103. if not test_case.get('params', {}).get('skip_download', False):
  104. self.assertTrue(os.path.exists(tc['file']), msg='Missing file ' + tc['file'])
  105. self.assertTrue(tc['file'] in finished_hook_called)
  106. self.assertTrue(os.path.exists(tc['file'] + '.info.json'))
  107. if 'md5' in tc:
  108. md5_for_file = _file_md5(tc['file'])
  109. self.assertEqual(md5_for_file, tc['md5'])
  110. with io.open(tc['file'] + '.info.json', encoding='utf-8') as infof:
  111. info_dict = json.load(infof)
  112. for (info_field, value) in tc.get('info_dict', {}).items():
  113. self.assertEqual(value, info_dict.get(info_field))
  114. finally:
  115. for tc in test_cases:
  116. _try_rm(tc['file'])
  117. _try_rm(tc['file'] + '.part')
  118. _try_rm(tc['file'] + '.info.json')
  119. return test_template
  120. ### And add them to TestDownload
  121. for test_case in defs:
  122. test_method = generator(test_case)
  123. test_method.__name__ = "test_{0}".format(test_case["name"])
  124. setattr(TestDownload, test_method.__name__, test_method)
  125. del test_method
  126. if __name__ == '__main__':
  127. unittest.main()