typo
[youtube-dl] / test / test_download.py
1 #!/usr/bin/env python
2
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
12 # Allow direct execution
13 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
14
15 import youtube_dl.FileDownloader
16 import youtube_dl.InfoExtractors
17 from youtube_dl.utils import *
18
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")
21
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)
28
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)
37
38 def _file_md5(fn):
39     with open(fn, 'rb') as f:
40         return hashlib.md5(f.read()).hexdigest()
41
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)
46
47
48 class TestDownload(unittest.TestCase):
49     def setUp(self):
50         self.parameters = parameters
51         self.defs = defs
52
53         # Clear old files
54         self.tearDown()
55
56     def tearDown(self):
57         for files in [ test['files'] for test in self.defs ]:
58             for fn, md5 in files:
59                 if os.path.exists(fn):
60                     os.remove(fn)
61
62
63 ### Dynamically generate tests
64 def generator(test_case):
65
66     def test_template(self):
67         ie = getattr(youtube_dl.InfoExtractors, test_case['name'] + 'IE')
68         if not ie._WORKING:
69             print('Skipping: IE marked as not _WORKING')
70             return
71         if 'skip' in test_case:
72             print('Skipping: {0}'.format(test_case['skip']))
73             return
74
75         params = dict(self.parameters) # Duplicate it locally
76         for p in test_case.get('params', {}):
77             params[p] = test_case['params'][p]
78
79         fd = FileDownloader(params)
80         fd.add_info_extractor(ie())
81         for ien in test_case.get('add_ie', []):
82             fd.add_info_extractor(getattr(youtube_dl.InfoExtractors, ien + 'IE')())
83         fd.download([test_case['url']])
84
85         for filename, md5 in test_case['files']:
86             self.assertTrue(os.path.exists(filename))
87             if md5:
88                 md5_for_file = _file_md5(filename)
89                 self.assertEqual(md5_for_file, md5)
90         info_dict = fd.processed_info_dicts[0]
91         for (info_field, value) in test_case.get('info_dict', {}).items():
92             if value.startswith('md5:'):
93                 md5_info_value = hashlib.md5(info_dict.get(info_field, '')).hexdigest()
94                 self.assertEqual(value[3:], md5_info_value)
95             else:
96                 self.assertEqual(value, info_dict.get(info_field))
97
98     return test_template
99
100 ### And add them to TestDownload
101 for test_case in defs:
102     test_method = generator(test_case)
103     test_method.__name__ = "test_{0}".format(test_case["name"])
104     setattr(TestDownload, test_method.__name__, test_method)
105     del test_method
106
107
108 if __name__ == '__main__':
109     unittest.main()