]> jfr.im git - yt-dlp.git/blame - test/test_download.py
setup.py: Make sure the setuptools_available variable is set
[yt-dlp.git] / test / test_download.py
CommitLineData
fd5ff020
FV
1#!/usr/bin/env python
2
44a5f171
PH
3# Allow direct execution
4import os
5import sys
6import unittest
7sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
8
9from test.helper import get_params, get_testcases, global_setup, try_rm, md5
10global_setup()
11
12
efe8902f 13import hashlib
fd5ff020 14import io
7f60b5aa 15import json
6b3aef80 16import socket
cdab8aa3 17
8222d8de 18import youtube_dl.YoutubeDL
44a5f171
PH
19from youtube_dl.utils import (
20 compat_str,
21 compat_urllib_error,
22 DownloadError,
23 ExtractorError,
24 UnavailableVideoError,
25)
fd5ff020 26
8cc83b8d
FV
27RETRIES = 3
28
8222d8de 29class YoutubeDL(youtube_dl.YoutubeDL):
fd5ff020 30 def __init__(self, *args, **kwargs):
fd5ff020 31 self.to_stderr = self.to_screen
0eaf520d 32 self.processed_info_dicts = []
8222d8de 33 super(YoutubeDL, self).__init__(*args, **kwargs)
476203d0 34 def report_warning(self, message):
be95cac1
FV
35 # Don't accept warnings during tests
36 raise ExtractorError(message)
0eaf520d
FV
37 def process_info(self, info_dict):
38 self.processed_info_dicts.append(info_dict)
8222d8de 39 return super(YoutubeDL, self).process_info(info_dict)
1535ac2a 40
fd5ff020
FV
41def _file_md5(fn):
42 with open(fn, 'rb') as f:
43 return hashlib.md5(f.read()).hexdigest()
44
fc2c063e 45defs = get_testcases()
6b47c7f2 46
0eaf520d 47
1535ac2a 48class TestDownload(unittest.TestCase):
744435f2 49 maxDiff = None
fd5ff020 50 def setUp(self):
fd5ff020
FV
51 self.defs = defs
52
911ee27e 53### Dynamically generate tests
5d01a647
PH
54def generator(test_case):
55
1535ac2a 56 def test_template(self):
d1cade5a 57 ie = youtube_dl.extractor.get_info_extractor(test_case['name'])
bc2884af
JMF
58 def print_skipping(reason):
59 print('Skipping %s: %s' % (test_case['name'], reason))
fd5ff020 60 if not ie._WORKING:
bc2884af 61 print_skipping('IE marked as not _WORKING')
fd5ff020 62 return
5c892b0b 63 if 'playlist' not in test_case and not test_case['file']:
bc2884af 64 print_skipping('No output file specified')
6985325e 65 return
fd5ff020 66 if 'skip' in test_case:
bc2884af 67 print_skipping(test_case['skip'])
fd5ff020 68 return
0eaf520d 69
44a5f171 70 params = get_params(test_case.get('params', {}))
0eaf520d 71
8222d8de 72 ydl = YoutubeDL(params)
023fa8c4 73 ydl.add_default_info_extractors()
bffbd5f0
PH
74 finished_hook_called = set()
75 def _hook(status):
76 if status['status'] == 'finished':
77 finished_hook_called.add(status['filename'])
8222d8de 78 ydl.fd.add_progress_hook(_hook)
5c892b0b
PH
79
80 test_cases = test_case.get('playlist', [test_case])
81 for tc in test_cases:
f4aac741
PH
82 try_rm(tc['file'])
83 try_rm(tc['file'] + '.part')
84 try_rm(tc['file'] + '.info.json')
5c892b0b 85 try:
8cc83b8d
FV
86 for retry in range(1, RETRIES + 1):
87 try:
8222d8de 88 ydl.download([test_case['url']])
8cc83b8d
FV
89 except (DownloadError, ExtractorError) as err:
90 if retry == RETRIES: raise
91
92 # Check if the exception is not a network related one
90a99c1b 93 if not err.exc_info[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
8cc83b8d
FV
94 raise
95
96 print('Retrying: {0} failed tries\n\n##########\n\n'.format(retry))
97 else:
98 break
5c892b0b
PH
99
100 for tc in test_cases:
511eda8e 101 if not test_case.get('params', {}).get('skip_download', False):
233a2296 102 self.assertTrue(os.path.exists(tc['file']), msg='Missing file ' + tc['file'])
bffbd5f0 103 self.assertTrue(tc['file'] in finished_hook_called)
5c892b0b
PH
104 self.assertTrue(os.path.exists(tc['file'] + '.info.json'))
105 if 'md5' in tc:
106 md5_for_file = _file_md5(tc['file'])
107 self.assertEqual(md5_for_file, tc['md5'])
108 with io.open(tc['file'] + '.info.json', encoding='utf-8') as infof:
109 info_dict = json.load(infof)
51ce3a75
PH
110 for (info_field, expected) in tc.get('info_dict', {}).items():
111 if isinstance(expected, compat_str) and expected.startswith('md5:'):
b7052e50 112 got = 'md5:' + md5(info_dict.get(info_field))
78d3442b 113 else:
51ce3a75 114 got = info_dict.get(info_field)
b7052e50
JMF
115 self.assertEqual(expected, got,
116 u'invalid value for field %s, expected %r, got %r' % (info_field, expected, got))
78d3442b
FV
117
118 # If checkable fields are missing from the test case, print the info_dict
ee55fcbe 119 test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
78d3442b
FV
120 for key, value in info_dict.items()
121 if value and key in ('title', 'description', 'uploader', 'upload_date', 'uploader_id', 'location'))
122 if not all(key in tc.get('info_dict', {}).keys() for key in test_info_dict.keys()):
123 sys.stderr.write(u'\n"info_dict": ' + json.dumps(test_info_dict, ensure_ascii=False, indent=2) + u'\n')
124
125 # Check for the presence of mandatory fields
126 for key in ('id', 'url', 'title', 'ext'):
127 self.assertTrue(key in info_dict.keys() and info_dict[key])
5c892b0b
PH
128 finally:
129 for tc in test_cases:
f4aac741
PH
130 try_rm(tc['file'])
131 try_rm(tc['file'] + '.part')
132 try_rm(tc['file'] + '.info.json')
fd5ff020 133
1535ac2a 134 return test_template
fd5ff020 135
5d01a647 136### And add them to TestDownload
f7ab6cbe 137for n, test_case in enumerate(defs):
5d01a647 138 test_method = generator(test_case)
2eb88d95
PH
139 tname = 'test_' + str(test_case['name'])
140 i = 1
141 while hasattr(TestDownload, tname):
41beccba 142 tname = 'test_' + str(test_case['name']) + '_' + str(i)
2eb88d95
PH
143 i += 1
144 test_method.__name__ = tname
fd5ff020 145 setattr(TestDownload, test_method.__name__, test_method)
5d01a647 146 del test_method
cdab8aa3
PH
147
148
149if __name__ == '__main__':
150 unittest.main()