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.

145 lines
5.0 KiB

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