]> jfr.im git - yt-dlp.git/blame - test/helper.py
[utils] Simplify setproctitle
[yt-dlp.git] / test / helper.py
CommitLineData
f4aac741 1import errno
112da0a0 2import io
44a5f171 3import hashlib
112da0a0
PH
4import json
5import os.path
00fcc17a
FV
6import re
7import types
dd508b7c 8import sys
112da0a0 9
fc2c063e 10import youtube_dl.extractor
44a5f171 11from youtube_dl import YoutubeDL
dd508b7c 12from youtube_dl.utils import preferredencoding
112da0a0 13
112da0a0 14
44a5f171
PH
15def get_params(override=None):
16 PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)),
17 "parameters.json")
18 with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
19 parameters = json.load(pf)
20 if override:
21 parameters.update(override)
22 return parameters
112da0a0 23
f4aac741
PH
24
25def try_rm(filename):
26 """ Remove a file if it exists """
27 try:
28 os.remove(filename)
29 except OSError as ose:
30 if ose.errno != errno.ENOENT:
31 raise
32
33
dd508b7c
FV
34def report_warning(message):
35 '''
36 Print the message to stderr, it will be prefixed with 'WARNING:'
37 If stderr is a tty file the 'WARNING:' will be colored
38 '''
39 if sys.stderr.isatty() and os.name != 'nt':
40 _msg_header = u'\033[0;33mWARNING:\033[0m'
41 else:
42 _msg_header = u'WARNING:'
43 output = u'%s %s\n' % (_msg_header, message)
44 if 'b' in getattr(sys.stderr, 'mode', '') or sys.version_info[0] < 3:
45 output = output.encode(preferredencoding())
46 sys.stderr.write(output)
47
48
112da0a0 49class FakeYDL(YoutubeDL):
f4d96df0 50 def __init__(self, override=None):
112da0a0
PH
51 # Different instances of the downloader can't share the same dictionary
52 # some test set the "sublang" parameter, which would break the md5 checks.
f4d96df0 53 params = get_params(override=override)
f4aac741
PH
54 super(FakeYDL, self).__init__(params)
55 self.result = []
56
57 def to_screen(self, s, skip_eol=None):
112da0a0 58 print(s)
f4aac741 59
112da0a0
PH
60 def trouble(self, s, tb=None):
61 raise Exception(s)
f4aac741 62
112da0a0 63 def download(self, x):
fc2c063e 64 self.result.append(x)
f4aac741 65
00fcc17a
FV
66 def expect_warning(self, regex):
67 # Silence an expected warning matching a regex
68 old_report_warning = self.report_warning
69 def report_warning(self, message):
70 if re.match(regex, message): return
71 old_report_warning(message)
72 self.report_warning = types.MethodType(report_warning, self)
fc2c063e 73
ff14fc49 74def gettestcases():
fc2c063e
PH
75 for ie in youtube_dl.extractor.gen_extractors():
76 t = getattr(ie, '_TEST', None)
77 if t:
78 t['name'] = type(ie).__name__[:-len('IE')]
79 yield t
80 for t in getattr(ie, '_TESTS', []):
81 t['name'] = type(ie).__name__[:-len('IE')]
82 yield t
44a5f171
PH
83
84
85md5 = lambda s: hashlib.md5(s.encode('utf-8')).hexdigest()