12 # Allow direct execution
13 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
15 import youtube_dl.FileDownloader
16 import youtube_dl.InfoExtractors
17 from youtube_dl.utils import *
19 DEF_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'tests.json')
20 PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json")
22 # General configuration (from __init__, not very elegant...)
23 jar = compat_cookiejar.CookieJar()
24 cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar)
25 proxy_handler = compat_urllib_request.ProxyHandler()
26 opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler())
27 compat_urllib_request.install_opener(opener)
29 class FileDownloader(youtube_dl.FileDownloader):
30 def __init__(self, *args, **kwargs):
31 self.to_stderr = self.to_screen
32 self.processed_info_dicts = []
33 return youtube_dl.FileDownloader.__init__(self, *args, **kwargs)
34 def process_info(self, info_dict):
35 self.processed_info_dicts.append(info_dict)
36 return youtube_dl.FileDownloader.process_info(self, info_dict)
39 with open(fn, 'rb') as f:
40 return hashlib.md5(f.read()).hexdigest()
42 with io.open(DEF_FILE, encoding='utf-8') as deff:
43 defs = json.load(deff)
44 with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
45 parameters = json.load(pf)
48 class TestDownload(unittest.TestCase):
50 self.parameters = parameters
57 for fn in [ test.get('file', False) for test in self.defs ]:
58 if fn and os.path.exists(fn):
62 ### Dinamically generate tests
63 def generator(test_case):
65 def test_template(self):
66 ie = getattr(youtube_dl.InfoExtractors, test_case['name'] + 'IE')
68 print('Skipping: IE marked as not _WORKING')
70 if not test_case['file']:
71 print('Skipping: No output file specified')
73 if 'skip' in test_case:
74 print('Skipping: {0}'.format(test_case['skip']))
77 params = dict(self.parameters) # Duplicate it locally
78 for p in test_case.get('params', {}):
79 params[p] = test_case['params'][p]
81 fd = FileDownloader(params)
82 fd.add_info_extractor(ie())
83 for ien in test_case.get('add_ie', []):
84 fd.add_info_extractor(getattr(youtube_dl.InfoExtractors, ien + 'IE')())
85 fd.download([test_case['url']])
87 self.assertTrue(os.path.exists(test_case['file']))
88 if 'md5' in test_case:
89 md5_for_file = _file_md5(test_case['file'])
90 self.assertEqual(md5_for_file, test_case['md5'])
91 info_dict = fd.processed_info_dicts[0]
92 for (info_field, value) in test_case.get('info_dict', {}).items():
93 if value.startswith('md5:'):
94 md5_info_value = hashlib.md5(info_dict.get(info_field, '')).hexdigest()
95 self.assertEqual(value[3:], md5_info_value)
97 self.assertEqual(value, info_dict.get(info_field))
101 ### And add them to TestDownload
102 for test_case in defs:
103 test_method = generator(test_case)
104 test_method.__name__ = "test_{0}".format(test_case["name"])
105 setattr(TestDownload, test_method.__name__, test_method)
109 if __name__ == '__main__':