Aggressive test timeout to catch hanging servers
[youtube-dl] / test / test_download.py
1 #!/usr/bin/env python
2
3 import errno
4 import hashlib
5 import io
6 import os
7 import json
8 import unittest
9 import sys
10 import hashlib
11 import socket
12
13 # Allow direct execution
14 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
15
16 import youtube_dl.FileDownloader
17 import youtube_dl.InfoExtractors
18 from youtube_dl.utils import *
19
20 DEF_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'tests.json')
21 PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json")
22
23 # General configuration (from __init__, not very elegant...)
24 jar = compat_cookiejar.CookieJar()
25 cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar)
26 proxy_handler = compat_urllib_request.ProxyHandler()
27 opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler())
28 compat_urllib_request.install_opener(opener)
29 socket.setdefaulttimeout(10)
30
31 def _try_rm(filename):
32     """ Remove a file if it exists """
33     try:
34         os.remove(filename)
35     except OSError as ose:
36         if ose.errno != errno.ENOENT:
37             raise
38
39 class FileDownloader(youtube_dl.FileDownloader):
40     def __init__(self, *args, **kwargs):
41         self.to_stderr = self.to_screen
42         self.processed_info_dicts = []
43         return youtube_dl.FileDownloader.__init__(self, *args, **kwargs)
44     def process_info(self, info_dict):
45         self.processed_info_dicts.append(info_dict)
46         return youtube_dl.FileDownloader.process_info(self, info_dict)
47
48 def _file_md5(fn):
49     with open(fn, 'rb') as f:
50         return hashlib.md5(f.read()).hexdigest()
51
52 with io.open(DEF_FILE, encoding='utf-8') as deff:
53     defs = json.load(deff)
54 with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
55     parameters = json.load(pf)
56
57
58 class TestDownload(unittest.TestCase):
59     def setUp(self):
60         self.parameters = parameters
61         self.defs = defs
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 'playlist' not in test_case and not test_case['file']:
72             print('Skipping: No output file specified')
73             return
74         if 'skip' in test_case:
75             print('Skipping: {0}'.format(test_case['skip']))
76             return
77
78         params = self.parameters.copy()
79         params.update(test_case.get('params', {}))
80
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
86         test_cases = test_case.get('playlist', [test_case])
87         for tc in test_cases:
88             _try_rm(tc['file'])
89             _try_rm(tc['file'] + '.part')
90             _try_rm(tc['file'] + '.info.json')
91         try:
92             fd.download([test_case['url']])
93
94             for tc in test_cases:
95                 if not test_case.get('params', {}).get('skip_download', False):
96                     self.assertTrue(os.path.exists(tc['file']))
97                 self.assertTrue(os.path.exists(tc['file'] + '.info.json'))
98                 if 'md5' in tc:
99                     md5_for_file = _file_md5(tc['file'])
100                     self.assertEqual(md5_for_file, tc['md5'])
101                 with io.open(tc['file'] + '.info.json', encoding='utf-8') as infof:
102                     info_dict = json.load(infof)
103                 for (info_field, value) in tc.get('info_dict', {}).items():
104                     if value.startswith('md5:'):
105                         md5_info_value = hashlib.md5(info_dict.get(info_field, '')).hexdigest()
106                         self.assertEqual(value[3:], md5_info_value)
107                     else:
108                         self.assertEqual(value, info_dict.get(info_field))
109         finally:
110             for tc in test_cases:
111                 _try_rm(tc['file'])
112                 _try_rm(tc['file'] + '.part')
113                 _try_rm(tc['file'] + '.info.json')
114
115     return test_template
116
117 ### And add them to TestDownload
118 for test_case in defs:
119     test_method = generator(test_case)
120     test_method.__name__ = "test_{0}".format(test_case["name"])
121     setattr(TestDownload, test_method.__name__, test_method)
122     del test_method
123
124
125 if __name__ == '__main__':
126     unittest.main()