test_download.py 5.7 KB

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