]> jfr.im git - yt-dlp.git/blame - test/test_utils.py
[ora] minimise fragile regex shenanigans; recognise unsafespeech.com URLs
[yt-dlp.git] / test / test_utils.py
CommitLineData
e387eb5a 1#!/usr/bin/env python
9d4660ca 2# coding: utf-8
e387eb5a 3
4e408e47
PH
4from __future__ import unicode_literals
5
44a5f171
PH
6# Allow direct execution
7import os
dae7c920 8import sys
44fb3454 9import unittest
44a5f171 10sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
44fb3454 11
44a5f171
PH
12
13# Various small unit tests
62e609ab 14import io
fac55558 15import json
44a5f171 16import xml.etree.ElementTree
dae7c920 17
a921f407 18from youtube_dl.utils import (
05900629 19 age_restricted,
cae97f65 20 args_to_str,
5eb6bdce 21 encode_base_n,
e4bdb37e 22 clean_html,
eb9c3edd 23 date_from_str,
a921f407 24 DateRange,
cae97f65 25 detect_exe_version,
5035536e 26 determine_ext,
cbecc9b9 27 dict_get,
6b77d52b 28 encode_compat_str,
29eb5174 29 encodeFilename,
cae97f65
PH
30 escape_rfc3986,
31 escape_url,
8bb56eee 32 extract_attributes,
5379a2d4 33 ExtractorError,
a921f407 34 find_xpath_attr,
5aafe895 35 fix_xml_ampersands,
9c44d242 36 InAdvancePagedList,
cae97f65 37 intlist_to_bytes,
61ca9a80 38 is_html,
cae97f65
PH
39 js_to_json,
40 limit_length,
5bc880b9 41 ohdave_rsa_encrypt,
cae97f65
PH
42 OnDemandPagedList,
43 orderedSet,
608d11f5 44 parse_duration,
cae97f65 45 parse_filesize,
fb47597b 46 parse_count,
cae97f65 47 parse_iso8601,
62e609ab 48 read_batch_urls,
29eb5174 49 sanitize_filename,
a2aaf4db 50 sanitize_path,
a4bcaad7 51 prepend_extension,
b3ed15b7 52 replace_extension,
31b2051e 53 remove_quotes,
a6a173c2 54 shell_quote,
29eb5174 55 smuggle_url,
f53c966a 56 str_to_int,
cae97f65 57 strip_jsonp,
29eb5174
PH
58 timeconvert,
59 unescapeHTML,
60 unified_strdate,
61 unsmuggle_url,
cae97f65 62 uppercase_escape,
0fe2ff78 63 lowercase_escape,
29eb5174 64 url_basename,
b74fa8cd 65 urlencode_postdata,
fb640d0a 66 update_url_query,
5f9b8394 67 version_tuple,
cae97f65 68 xpath_with_ns,
87f70ab3 69 xpath_element,
5379a2d4 70 xpath_text,
87f70ab3 71 xpath_attr,
cfb56d1a 72 render_table,
347de493 73 match_str,
bf6427d2
YCH
74 parse_dfxp_time_expr,
75 dfxp2srt,
f7126449
S
76 cli_option,
77 cli_valueless_option,
78 cli_bool_option,
a921f407 79)
36e6f62c 80from youtube_dl.compat import (
8bb56eee 81 compat_chr,
36e6f62c 82 compat_etree_fromstring,
fb640d0a 83 compat_urlparse,
84 compat_parse_qs,
36e6f62c 85)
44fb3454 86
627dcfff 87
44fb3454 88class TestUtil(unittest.TestCase):
59ae15a5
PH
89 def test_timeconvert(self):
90 self.assertTrue(timeconvert('') is None)
91 self.assertTrue(timeconvert('bougrg') is None)
92
93 def test_sanitize_filename(self):
94 self.assertEqual(sanitize_filename('abc'), 'abc')
95 self.assertEqual(sanitize_filename('abc_d-e'), 'abc_d-e')
96
97 self.assertEqual(sanitize_filename('123'), '123')
98
99 self.assertEqual('abc_de', sanitize_filename('abc/de'))
100 self.assertFalse('/' in sanitize_filename('abc/de///'))
101
102 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de'))
103 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|'))
104 self.assertEqual('yes no', sanitize_filename('yes? no'))
105 self.assertEqual('this - that', sanitize_filename('this: that'))
106
107 self.assertEqual(sanitize_filename('AT&T'), 'AT&T')
4e408e47 108 aumlaut = 'ä'
59ae15a5 109 self.assertEqual(sanitize_filename(aumlaut), aumlaut)
4e408e47 110 tests = '\u043a\u0438\u0440\u0438\u043b\u043b\u0438\u0446\u0430'
59ae15a5
PH
111 self.assertEqual(sanitize_filename(tests), tests)
112
2aeb06d6
PH
113 self.assertEqual(
114 sanitize_filename('New World record at 0:12:34'),
115 'New World record at 0_12_34')
a7440261 116
5a42414b
PH
117 self.assertEqual(sanitize_filename('--gasdgf'), '_-gasdgf')
118 self.assertEqual(sanitize_filename('--gasdgf', is_id=True), '--gasdgf')
a7440261
PH
119 self.assertEqual(sanitize_filename('.gasdgf'), 'gasdgf')
120 self.assertEqual(sanitize_filename('.gasdgf', is_id=True), '.gasdgf')
2aeb06d6 121
59ae15a5
PH
122 forbidden = '"\0\\/'
123 for fc in forbidden:
124 for fbc in forbidden:
125 self.assertTrue(fbc not in sanitize_filename(fc))
126
127 def test_sanitize_filename_restricted(self):
128 self.assertEqual(sanitize_filename('abc', restricted=True), 'abc')
129 self.assertEqual(sanitize_filename('abc_d-e', restricted=True), 'abc_d-e')
130
131 self.assertEqual(sanitize_filename('123', restricted=True), '123')
132
133 self.assertEqual('abc_de', sanitize_filename('abc/de', restricted=True))
134 self.assertFalse('/' in sanitize_filename('abc/de///', restricted=True))
135
136 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de', restricted=True))
137 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|', restricted=True))
138 self.assertEqual('yes_no', sanitize_filename('yes? no', restricted=True))
139 self.assertEqual('this_-_that', sanitize_filename('this: that', restricted=True))
140
79a2e94e
AT
141 tests = 'aäb\u4e2d\u56fd\u7684c'
142 self.assertEqual(sanitize_filename(tests, restricted=True), 'aab_c')
4e408e47 143 self.assertTrue(sanitize_filename('\xf6', restricted=True) != '') # No empty filename
59ae15a5 144
627dcfff 145 forbidden = '"\0\\/&!: \'\t\n()[]{}$;`^,#'
59ae15a5
PH
146 for fc in forbidden:
147 for fbc in forbidden:
148 self.assertTrue(fbc not in sanitize_filename(fc, restricted=True))
149
150 # Handle a common case more neatly
4e408e47
PH
151 self.assertEqual(sanitize_filename('\u5927\u58f0\u5e26 - Song', restricted=True), 'Song')
152 self.assertEqual(sanitize_filename('\u603b\u7edf: Speech', restricted=True), 'Speech')
59ae15a5
PH
153 # .. but make sure the file name is never empty
154 self.assertTrue(sanitize_filename('-', restricted=True) != '')
155 self.assertTrue(sanitize_filename(':', restricted=True) != '')
156
79a2e94e 157 self.assertEqual(sanitize_filename(
778a1ccc
YCH
158 'ÂÃÄÀÁÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØŒÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøœùúûüýþÿ', restricted=True),
159 'AAAAAAAECEEEEIIIIDNOOOOOOOEUUUUYPssaaaaaaaeceeeeiiiionoooooooeuuuuypy')
79a2e94e 160
796173d0 161 def test_sanitize_ids(self):
314d506b
PH
162 self.assertEqual(sanitize_filename('_n_cd26wFpw', is_id=True), '_n_cd26wFpw')
163 self.assertEqual(sanitize_filename('_BD_eEpuzXw', is_id=True), '_BD_eEpuzXw')
164 self.assertEqual(sanitize_filename('N0Y__7-UOdI', is_id=True), 'N0Y__7-UOdI')
796173d0 165
a2aaf4db
S
166 def test_sanitize_path(self):
167 if sys.platform != 'win32':
168 return
169
170 self.assertEqual(sanitize_path('abc'), 'abc')
171 self.assertEqual(sanitize_path('abc/def'), 'abc\\def')
172 self.assertEqual(sanitize_path('abc\\def'), 'abc\\def')
173 self.assertEqual(sanitize_path('abc|def'), 'abc#def')
174 self.assertEqual(sanitize_path('<>:"|?*'), '#######')
175 self.assertEqual(sanitize_path('C:/abc/def'), 'C:\\abc\\def')
176 self.assertEqual(sanitize_path('C?:/abc/def'), 'C##\\abc\\def')
177
178 self.assertEqual(sanitize_path('\\\\?\\UNC\\ComputerName\\abc'), '\\\\?\\UNC\\ComputerName\\abc')
179 self.assertEqual(sanitize_path('\\\\?\\UNC/ComputerName/abc'), '\\\\?\\UNC\\ComputerName\\abc')
180
181 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
182 self.assertEqual(sanitize_path('\\\\?\\C:/abc'), '\\\\?\\C:\\abc')
183 self.assertEqual(sanitize_path('\\\\?\\C:\\ab?c\\de:f'), '\\\\?\\C:\\ab#c\\de#f')
184 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
185
f18ef2d1
S
186 self.assertEqual(
187 sanitize_path('youtube/%(uploader)s/%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s'),
188 'youtube\\%(uploader)s\\%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s')
189
190 self.assertEqual(
191 sanitize_path('youtube/TheWreckingYard ./00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part'),
192 'youtube\\TheWreckingYard #\\00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part')
193 self.assertEqual(sanitize_path('abc/def...'), 'abc\\def..#')
194 self.assertEqual(sanitize_path('abc.../def'), 'abc..#\\def')
195 self.assertEqual(sanitize_path('abc.../def...'), 'abc..#\\def..#')
196
2ebfeaca
S
197 self.assertEqual(sanitize_path('../abc'), '..\\abc')
198 self.assertEqual(sanitize_path('../../abc'), '..\\..\\abc')
199 self.assertEqual(sanitize_path('./abc'), 'abc')
200 self.assertEqual(sanitize_path('./../abc'), '..\\abc')
201
a4bcaad7
S
202 def test_prepend_extension(self):
203 self.assertEqual(prepend_extension('abc.ext', 'temp'), 'abc.temp.ext')
204 self.assertEqual(prepend_extension('abc.ext', 'temp', 'ext'), 'abc.temp.ext')
205 self.assertEqual(prepend_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
206 self.assertEqual(prepend_extension('abc', 'temp'), 'abc.temp')
207 self.assertEqual(prepend_extension('.abc', 'temp'), '.abc.temp')
208 self.assertEqual(prepend_extension('.abc.ext', 'temp'), '.abc.temp.ext')
209
b3ed15b7
S
210 def test_replace_extension(self):
211 self.assertEqual(replace_extension('abc.ext', 'temp'), 'abc.temp')
212 self.assertEqual(replace_extension('abc.ext', 'temp', 'ext'), 'abc.temp')
213 self.assertEqual(replace_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
214 self.assertEqual(replace_extension('abc', 'temp'), 'abc.temp')
215 self.assertEqual(replace_extension('.abc', 'temp'), '.abc.temp')
216 self.assertEqual(replace_extension('.abc.ext', 'temp'), '.abc.temp')
217
31b2051e
S
218 def test_remove_quotes(self):
219 self.assertEqual(remove_quotes(None), None)
220 self.assertEqual(remove_quotes('"'), '"')
221 self.assertEqual(remove_quotes("'"), "'")
222 self.assertEqual(remove_quotes(';'), ';')
223 self.assertEqual(remove_quotes('";'), '";')
224 self.assertEqual(remove_quotes('""'), '')
225 self.assertEqual(remove_quotes('";"'), ';')
226
59ae15a5 227 def test_ordered_set(self):
627dcfff 228 self.assertEqual(orderedSet([1, 1, 2, 3, 4, 4, 5, 6, 7, 3, 5]), [1, 2, 3, 4, 5, 6, 7])
59ae15a5
PH
229 self.assertEqual(orderedSet([]), [])
230 self.assertEqual(orderedSet([1]), [1])
5f6a1245 231 # keep the list ordered
627dcfff 232 self.assertEqual(orderedSet([135, 1, 1, 1]), [135, 1])
59ae15a5
PH
233
234 def test_unescape_html(self):
4e408e47 235 self.assertEqual(unescapeHTML('%20;'), '%20;')
91757b0f
NJ
236 self.assertEqual(unescapeHTML('&#x2F;'), '/')
237 self.assertEqual(unescapeHTML('&#47;'), '/')
7aefc49c
S
238 self.assertEqual(unescapeHTML('&eacute;'), 'é')
239 self.assertEqual(unescapeHTML('&#2013266066;'), '&#2013266066;')
5f6a1245 240
eb9c3edd
JMF
241 def test_date_from_str(self):
242 self.assertEqual(date_from_str('yesterday'), date_from_str('now-1day'))
243 self.assertEqual(date_from_str('now+7day'), date_from_str('now+1week'))
244 self.assertEqual(date_from_str('now+14day'), date_from_str('now+2week'))
245 self.assertEqual(date_from_str('now+365day'), date_from_str('now+1year'))
246 self.assertEqual(date_from_str('now+30day'), date_from_str('now+1month'))
247
bd558525 248 def test_daterange(self):
5f6a1245 249 _20century = DateRange("19000101", "20000101")
bd558525
JMF
250 self.assertFalse("17890714" in _20century)
251 _ac = DateRange("00010101")
252 self.assertTrue("19690721" in _ac)
253 _firstmilenium = DateRange(end="10000101")
254 self.assertTrue("07110427" in _firstmilenium)
37254abc 255
bf50b038
JMF
256 def test_unified_dates(self):
257 self.assertEqual(unified_strdate('December 21, 2010'), '20101221')
258 self.assertEqual(unified_strdate('8/7/2009'), '20090708')
259 self.assertEqual(unified_strdate('Dec 14, 2012'), '20121214')
260 self.assertEqual(unified_strdate('2012/10/11 01:56:38 +0000'), '20121011')
a69801e2 261 self.assertEqual(unified_strdate('1968 12 10'), '19681210')
026fcc04 262 self.assertEqual(unified_strdate('1968-12-10'), '19681210')
99b67fec 263 self.assertEqual(unified_strdate('28/01/2014 21:00:00 +0100'), '20140128')
42bdd9d0
PH
264 self.assertEqual(
265 unified_strdate('11/26/2014 11:30:00 AM PST', day_first=False),
266 '20141126')
9bb8e0a3
PH
267 self.assertEqual(
268 unified_strdate('2/2/2015 6:47:40 PM', day_first=False),
269 '20150202')
f160785c 270 self.assertEqual(unified_strdate('Feb 14th 2016 5:45PM'), '20160214')
8cf70de4 271 self.assertEqual(unified_strdate('25-09-2014'), '20140925')
6a750402 272 self.assertEqual(unified_strdate('UNKNOWN DATE FORMAT'), None)
dae7c920 273
5035536e
S
274 def test_determine_ext(self):
275 self.assertEqual(determine_ext('http://example.com/foo/bar.mp4/?download'), 'mp4')
276 self.assertEqual(determine_ext('http://example.com/foo/bar/?download', None), None)
9cb9a5df
S
277 self.assertEqual(determine_ext('http://example.com/foo/bar.nonext/?download', None), None)
278 self.assertEqual(determine_ext('http://example.com/foo/bar/mp4?download', None), None)
279 self.assertEqual(determine_ext('http://example.com/foo/bar.m3u8//?download'), 'm3u8')
5035536e 280
59ae56fa 281 def test_find_xpath_attr(self):
4e408e47 282 testxml = '''<root>
59ae56fa
PH
283 <node/>
284 <node x="a"/>
285 <node x="a" y="c" />
286 <node x="b" y="d" />
ee114368 287 <node x="" />
59ae56fa 288 </root>'''
36e6f62c 289 doc = compat_etree_fromstring(testxml)
59ae56fa 290
ee114368 291 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n'), None)
59ae56fa 292 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n', 'v'), None)
ee114368
S
293 self.assertEqual(find_xpath_attr(doc, './/node', 'n'), None)
294 self.assertEqual(find_xpath_attr(doc, './/node', 'n', 'v'), None)
295 self.assertEqual(find_xpath_attr(doc, './/node', 'x'), doc[1])
59ae56fa 296 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'a'), doc[1])
ee114368
S
297 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'b'), doc[3])
298 self.assertEqual(find_xpath_attr(doc, './/node', 'y'), doc[2])
59ae56fa 299 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'c'), doc[2])
ee114368
S
300 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'd'), doc[3])
301 self.assertEqual(find_xpath_attr(doc, './/node', 'x', ''), doc[4])
59ae56fa 302
d7e66d39 303 def test_xpath_with_ns(self):
4e408e47 304 testxml = '''<root xmlns:media="http://example.com/">
d7e66d39
JMF
305 <media:song>
306 <media:author>The Author</media:author>
307 <url>http://server.com/download.mp3</url>
308 </media:song>
309 </root>'''
36e6f62c 310 doc = compat_etree_fromstring(testxml)
d7e66d39
JMF
311 find = lambda p: doc.find(xpath_with_ns(p, {'media': 'http://example.com/'}))
312 self.assertTrue(find('media:song') is not None)
4e408e47
PH
313 self.assertEqual(find('media:song/media:author').text, 'The Author')
314 self.assertEqual(find('media:song/url').text, 'http://server.com/download.mp3')
d7e66d39 315
87f70ab3
S
316 def test_xpath_element(self):
317 doc = xml.etree.ElementTree.Element('root')
318 div = xml.etree.ElementTree.SubElement(doc, 'div')
319 p = xml.etree.ElementTree.SubElement(div, 'p')
320 p.text = 'Foo'
321 self.assertEqual(xpath_element(doc, 'div/p'), p)
578c0745
S
322 self.assertEqual(xpath_element(doc, ['div/p']), p)
323 self.assertEqual(xpath_element(doc, ['div/bar', 'div/p']), p)
87f70ab3 324 self.assertEqual(xpath_element(doc, 'div/bar', default='default'), 'default')
578c0745 325 self.assertEqual(xpath_element(doc, ['div/bar'], default='default'), 'default')
87f70ab3 326 self.assertTrue(xpath_element(doc, 'div/bar') is None)
578c0745
S
327 self.assertTrue(xpath_element(doc, ['div/bar']) is None)
328 self.assertTrue(xpath_element(doc, ['div/bar'], 'div/baz') is None)
87f70ab3 329 self.assertRaises(ExtractorError, xpath_element, doc, 'div/bar', fatal=True)
578c0745
S
330 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar'], fatal=True)
331 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar', 'div/baz'], fatal=True)
87f70ab3 332
5379a2d4
JMF
333 def test_xpath_text(self):
334 testxml = '''<root>
335 <div>
336 <p>Foo</p>
337 </div>
338 </root>'''
36e6f62c 339 doc = compat_etree_fromstring(testxml)
5379a2d4 340 self.assertEqual(xpath_text(doc, 'div/p'), 'Foo')
87f70ab3 341 self.assertEqual(xpath_text(doc, 'div/bar', default='default'), 'default')
5379a2d4
JMF
342 self.assertTrue(xpath_text(doc, 'div/bar') is None)
343 self.assertRaises(ExtractorError, xpath_text, doc, 'div/bar', fatal=True)
344
87f70ab3
S
345 def test_xpath_attr(self):
346 testxml = '''<root>
347 <div>
348 <p x="a">Foo</p>
349 </div>
350 </root>'''
36e6f62c 351 doc = compat_etree_fromstring(testxml)
87f70ab3
S
352 self.assertEqual(xpath_attr(doc, 'div/p', 'x'), 'a')
353 self.assertEqual(xpath_attr(doc, 'div/bar', 'x'), None)
354 self.assertEqual(xpath_attr(doc, 'div/p', 'y'), None)
355 self.assertEqual(xpath_attr(doc, 'div/bar', 'x', default='default'), 'default')
356 self.assertEqual(xpath_attr(doc, 'div/p', 'y', default='default'), 'default')
357 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/bar', 'x', fatal=True)
358 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/p', 'y', fatal=True)
359
9d4660ca 360 def test_smuggle_url(self):
e075a44a 361 data = {"ö": "ö", "abc": [3]}
9d4660ca
PH
362 url = 'https://foo.bar/baz?x=y#a'
363 smug_url = smuggle_url(url, data)
364 unsmug_url, unsmug_data = unsmuggle_url(smug_url)
365 self.assertEqual(url, unsmug_url)
366 self.assertEqual(data, unsmug_data)
367
368 res_url, res_data = unsmuggle_url(url)
369 self.assertEqual(res_url, url)
370 self.assertEqual(res_data, None)
371
a6a173c2 372 def test_shell_quote(self):
4e408e47
PH
373 args = ['ffmpeg', '-i', encodeFilename('ñ€ß\'.mp4')]
374 self.assertEqual(shell_quote(args), """ffmpeg -i 'ñ€ß'"'"'.mp4'""")
a6a173c2 375
f53c966a
JMF
376 def test_str_to_int(self):
377 self.assertEqual(str_to_int('123,456'), 123456)
378 self.assertEqual(str_to_int('123.456'), 123456)
379
29eb5174 380 def test_url_basename(self):
4e408e47
PH
381 self.assertEqual(url_basename('http://foo.de/'), '')
382 self.assertEqual(url_basename('http://foo.de/bar/baz'), 'baz')
383 self.assertEqual(url_basename('http://foo.de/bar/baz?x=y'), 'baz')
384 self.assertEqual(url_basename('http://foo.de/bar/baz#x=y'), 'baz')
385 self.assertEqual(url_basename('http://foo.de/bar/baz/'), 'baz')
d6c7a367 386 self.assertEqual(
4e408e47
PH
387 url_basename('http://media.w3.org/2010/05/sintel/trailer.mp4'),
388 'trailer.mp4')
9d4660ca 389
608d11f5
PH
390 def test_parse_duration(self):
391 self.assertEqual(parse_duration(None), None)
a5fb718c
S
392 self.assertEqual(parse_duration(False), None)
393 self.assertEqual(parse_duration('invalid'), None)
608d11f5
PH
394 self.assertEqual(parse_duration('1'), 1)
395 self.assertEqual(parse_duration('1337:12'), 80232)
396 self.assertEqual(parse_duration('9:12:43'), 33163)
2db806b4
S
397 self.assertEqual(parse_duration('12:00'), 720)
398 self.assertEqual(parse_duration('00:01:01'), 61)
608d11f5 399 self.assertEqual(parse_duration('x:y'), None)
2db806b4 400 self.assertEqual(parse_duration('3h11m53s'), 11513)
ca7b3246
S
401 self.assertEqual(parse_duration('3h 11m 53s'), 11513)
402 self.assertEqual(parse_duration('3 hours 11 minutes 53 seconds'), 11513)
403 self.assertEqual(parse_duration('3 hours 11 mins 53 secs'), 11513)
2db806b4
S
404 self.assertEqual(parse_duration('62m45s'), 3765)
405 self.assertEqual(parse_duration('6m59s'), 419)
406 self.assertEqual(parse_duration('49s'), 49)
407 self.assertEqual(parse_duration('0h0m0s'), 0)
408 self.assertEqual(parse_duration('0m0s'), 0)
409 self.assertEqual(parse_duration('0s'), 0)
7adcbe75 410 self.assertEqual(parse_duration('01:02:03.05'), 3723.05)
6a68bb57 411 self.assertEqual(parse_duration('T30M38S'), 1838)
e8df5cee
PH
412 self.assertEqual(parse_duration('5 s'), 5)
413 self.assertEqual(parse_duration('3 min'), 180)
414 self.assertEqual(parse_duration('2.5 hours'), 9000)
8f4b58d7
PH
415 self.assertEqual(parse_duration('02:03:04'), 7384)
416 self.assertEqual(parse_duration('01:02:03:04'), 93784)
3e675fab 417 self.assertEqual(parse_duration('1 hour 3 minutes'), 3780)
9c29bc69 418 self.assertEqual(parse_duration('87 Min.'), 5220)
acaff495 419 self.assertEqual(parse_duration('PT1H0.040S'), 3600.04)
608d11f5 420
5aafe895
PH
421 def test_fix_xml_ampersands(self):
422 self.assertEqual(
423 fix_xml_ampersands('"&x=y&z=a'), '"&amp;x=y&amp;z=a')
424 self.assertEqual(
425 fix_xml_ampersands('"&amp;x=y&wrong;&z=a'),
426 '"&amp;x=y&amp;wrong;&amp;z=a')
427 self.assertEqual(
428 fix_xml_ampersands('&amp;&apos;&gt;&lt;&quot;'),
429 '&amp;&apos;&gt;&lt;&quot;')
430 self.assertEqual(
431 fix_xml_ampersands('&#1234;&#x1abC;'), '&#1234;&#x1abC;')
432 self.assertEqual(fix_xml_ampersands('&#&#'), '&amp;#&amp;#')
433
b7ab0590
PH
434 def test_paged_list(self):
435 def testPL(size, pagesize, sliceargs, expected):
436 def get_page(pagenum):
437 firstid = pagenum * pagesize
438 upto = min(size, pagenum * pagesize + pagesize)
439 for i in range(firstid, upto):
440 yield i
441
9c44d242 442 pl = OnDemandPagedList(get_page, pagesize)
b7ab0590
PH
443 got = pl.getslice(*sliceargs)
444 self.assertEqual(got, expected)
445
9c44d242
PH
446 iapl = InAdvancePagedList(get_page, size // pagesize + 1, pagesize)
447 got = iapl.getslice(*sliceargs)
448 self.assertEqual(got, expected)
449
b7ab0590
PH
450 testPL(5, 2, (), [0, 1, 2, 3, 4])
451 testPL(5, 2, (1,), [1, 2, 3, 4])
452 testPL(5, 2, (2,), [2, 3, 4])
453 testPL(5, 2, (4,), [4])
454 testPL(5, 2, (0, 3), [0, 1, 2])
455 testPL(5, 2, (1, 4), [1, 2, 3])
456 testPL(5, 2, (2, 99), [2, 3, 4])
457 testPL(5, 2, (20, 99), [])
458
62e609ab 459 def test_read_batch_urls(self):
4e408e47 460 f = io.StringIO('''\xef\xbb\xbf foo
62e609ab
PH
461 bar\r
462 baz
463 # More after this line\r
464 ; or after this
465 bam''')
4e408e47 466 self.assertEqual(read_batch_urls(f), ['foo', 'bar', 'baz', 'bam'])
62e609ab 467
b74fa8cd
JMF
468 def test_urlencode_postdata(self):
469 data = urlencode_postdata({'username': 'foo@bar.com', 'password': '1234'})
470 self.assertTrue(isinstance(data, bytes))
471
fb640d0a 472 def test_update_url_query(self):
473 def query_dict(url):
474 return compat_parse_qs(compat_urlparse.urlparse(url).query)
475 self.assertEqual(query_dict(update_url_query(
476 'http://example.com/path', {'quality': ['HD'], 'format': ['mp4']})),
477 query_dict('http://example.com/path?quality=HD&format=mp4'))
478 self.assertEqual(query_dict(update_url_query(
479 'http://example.com/path', {'system': ['LINUX', 'WINDOWS']})),
480 query_dict('http://example.com/path?system=LINUX&system=WINDOWS'))
481 self.assertEqual(query_dict(update_url_query(
482 'http://example.com/path', {'fields': 'id,formats,subtitles'})),
483 query_dict('http://example.com/path?fields=id,formats,subtitles'))
484 self.assertEqual(query_dict(update_url_query(
485 'http://example.com/path', {'fields': ('id,formats,subtitles', 'thumbnails')})),
486 query_dict('http://example.com/path?fields=id,formats,subtitles&fields=thumbnails'))
487 self.assertEqual(query_dict(update_url_query(
488 'http://example.com/path?manifest=f4m', {'manifest': []})),
489 query_dict('http://example.com/path'))
490 self.assertEqual(query_dict(update_url_query(
491 'http://example.com/path?system=LINUX&system=WINDOWS', {'system': 'LINUX'})),
492 query_dict('http://example.com/path?system=LINUX'))
493 self.assertEqual(query_dict(update_url_query(
494 'http://example.com/path', {'fields': b'id,formats,subtitles'})),
495 query_dict('http://example.com/path?fields=id,formats,subtitles'))
3201a67f 496 self.assertEqual(query_dict(update_url_query(
497 'http://example.com/path', {'width': 1080, 'height': 720})),
498 query_dict('http://example.com/path?width=1080&height=720'))
499 self.assertEqual(query_dict(update_url_query(
500 'http://example.com/path', {'bitrate': 5020.43})),
501 query_dict('http://example.com/path?bitrate=5020.43'))
502 self.assertEqual(query_dict(update_url_query(
503 'http://example.com/path', {'test': '第二行тест'})),
504 query_dict('http://example.com/path?test=%E7%AC%AC%E4%BA%8C%E8%A1%8C%D1%82%D0%B5%D1%81%D1%82'))
fb640d0a 505
cbecc9b9 506 def test_dict_get(self):
86296ad2
S
507 FALSE_VALUES = {
508 'none': None,
509 'false': False,
510 'zero': 0,
511 'empty_string': '',
512 'empty_list': [],
cbecc9b9 513 }
86296ad2
S
514 d = FALSE_VALUES.copy()
515 d['a'] = 42
cbecc9b9
S
516 self.assertEqual(dict_get(d, 'a'), 42)
517 self.assertEqual(dict_get(d, 'b'), None)
518 self.assertEqual(dict_get(d, 'b', 42), 42)
519 self.assertEqual(dict_get(d, ('a', )), 42)
520 self.assertEqual(dict_get(d, ('b', 'a', )), 42)
521 self.assertEqual(dict_get(d, ('b', 'c', 'a', 'd', )), 42)
522 self.assertEqual(dict_get(d, ('b', 'c', )), None)
523 self.assertEqual(dict_get(d, ('b', 'c', ), 42), 42)
86296ad2
S
524 for key, false_value in FALSE_VALUES.items():
525 self.assertEqual(dict_get(d, ('b', 'c', key, )), None)
526 self.assertEqual(dict_get(d, ('b', 'c', key, ), skip_false_values=False), false_value)
cbecc9b9 527
6b77d52b
S
528 def test_encode_compat_str(self):
529 self.assertEqual(encode_compat_str(b'\xd1\x82\xd0\xb5\xd1\x81\xd1\x82', 'utf-8'), 'тест')
530 self.assertEqual(encode_compat_str('тест', 'utf-8'), 'тест')
531
912b38b4
PH
532 def test_parse_iso8601(self):
533 self.assertEqual(parse_iso8601('2014-03-23T23:04:26+0100'), 1395612266)
534 self.assertEqual(parse_iso8601('2014-03-23T22:04:26+0000'), 1395612266)
535 self.assertEqual(parse_iso8601('2014-03-23T22:04:26Z'), 1395612266)
6ad4013d 536 self.assertEqual(parse_iso8601('2014-03-23T22:04:26.1234Z'), 1395612266)
52c3a6e4
S
537 self.assertEqual(parse_iso8601('2015-09-29T08:27:31.727'), 1443515251)
538 self.assertEqual(parse_iso8601('2015-09-29T08-27-31.727'), None)
912b38b4 539
fac55558
PH
540 def test_strip_jsonp(self):
541 stripped = strip_jsonp('cb ([ {"id":"532cb",\n\n\n"x":\n3}\n]\n);')
542 d = json.loads(stripped)
543 self.assertEqual(d, [{"id": "532cb", "x": 3}])
544
609a61e3
PH
545 stripped = strip_jsonp('parseMetadata({"STATUS":"OK"})\n\n\n//epc')
546 d = json.loads(stripped)
547 self.assertEqual(d, {'STATUS': 'OK'})
548
8411229b
S
549 stripped = strip_jsonp('ps.embedHandler({"status": "success"});')
550 d = json.loads(stripped)
551 self.assertEqual(d, {'status': 'success'})
552
173a7026 553 def test_uppercase_escape(self):
4e408e47
PH
554 self.assertEqual(uppercase_escape('aä'), 'aä')
555 self.assertEqual(uppercase_escape('\\U0001d550'), '𝕐')
fac55558 556
0fe2ff78
YCH
557 def test_lowercase_escape(self):
558 self.assertEqual(lowercase_escape('aä'), 'aä')
559 self.assertEqual(lowercase_escape('\\u0026'), '&')
560
a020a0dc
PH
561 def test_limit_length(self):
562 self.assertEqual(limit_length(None, 12), None)
563 self.assertEqual(limit_length('foo', 12), 'foo')
564 self.assertTrue(
565 limit_length('foo bar baz asd', 12).startswith('foo bar'))
566 self.assertTrue('...' in limit_length('foo bar baz asd', 12))
567
d05cfe06
S
568 def test_escape_rfc3986(self):
569 reserved = "!*'();:@&=+$,/?#[]"
570 unreserved = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.~'
571 self.assertEqual(escape_rfc3986(reserved), reserved)
572 self.assertEqual(escape_rfc3986(unreserved), unreserved)
573 self.assertEqual(escape_rfc3986('тест'), '%D1%82%D0%B5%D1%81%D1%82')
574 self.assertEqual(escape_rfc3986('%D1%82%D0%B5%D1%81%D1%82'), '%D1%82%D0%B5%D1%81%D1%82')
575 self.assertEqual(escape_rfc3986('foo bar'), 'foo%20bar')
576 self.assertEqual(escape_rfc3986('foo%20bar'), 'foo%20bar')
577
578 def test_escape_url(self):
579 self.assertEqual(
580 escape_url('http://wowza.imust.org/srv/vod/telemb/new/UPLOAD/UPLOAD/20224_IncendieHavré_FD.mp4'),
581 'http://wowza.imust.org/srv/vod/telemb/new/UPLOAD/UPLOAD/20224_IncendieHavre%CC%81_FD.mp4'
582 )
583 self.assertEqual(
584 escape_url('http://www.ardmediathek.de/tv/Sturm-der-Liebe/Folge-2036-Zu-Mann-und-Frau-erklärt/Das-Erste/Video?documentId=22673108&bcastId=5290'),
585 'http://www.ardmediathek.de/tv/Sturm-der-Liebe/Folge-2036-Zu-Mann-und-Frau-erkl%C3%A4rt/Das-Erste/Video?documentId=22673108&bcastId=5290'
586 )
587 self.assertEqual(
588 escape_url('http://тест.рф/фрагмент'),
2d60465e 589 'http://xn--e1aybc.xn--p1ai/%D1%84%D1%80%D0%B0%D0%B3%D0%BC%D0%B5%D0%BD%D1%82'
d05cfe06
S
590 )
591 self.assertEqual(
592 escape_url('http://тест.рф/абв?абв=абв#абв'),
81f36eba 593 'http://xn--e1aybc.xn--p1ai/%D0%B0%D0%B1%D0%B2?%D0%B0%D0%B1%D0%B2=%D0%B0%D0%B1%D0%B2#%D0%B0%D0%B1%D0%B2'
d05cfe06
S
594 )
595 self.assertEqual(escape_url('http://vimeo.com/56015672#at=0'), 'http://vimeo.com/56015672#at=0')
596
e7b6d122 597 def test_js_to_json_realworld(self):
410f3e73 598 inp = '''{
e7b6d122 599 'clip':{'provider':'pseudo'}
410f3e73
PH
600 }'''
601 self.assertEqual(js_to_json(inp), '''{
e7b6d122 602 "clip":{"provider":"pseudo"}
410f3e73
PH
603 }''')
604 json.loads(js_to_json(inp))
605
e7b6d122
PH
606 inp = '''{
607 'playlist':[{'controls':{'all':null}}]
608 }'''
609 self.assertEqual(js_to_json(inp), '''{
610 "playlist":[{"controls":{"all":null}}]
611 }''')
612
d01949dc
S
613 inp = '''"The CW\\'s \\'Crazy Ex-Girlfriend\\'"'''
614 self.assertEqual(js_to_json(inp), '''"The CW's 'Crazy Ex-Girlfriend'"''')
615
d305dd73
PH
616 inp = '"SAND Number: SAND 2013-7800P\\nPresenter: Tom Russo\\nHabanero Software Training - Xyce Software\\nXyce, Sandia\\u0027s"'
617 json_code = js_to_json(inp)
618 self.assertEqual(json.loads(json_code), json.loads(inp))
619
e7b6d122
PH
620 def test_js_to_json_edgecases(self):
621 on = js_to_json("{abc_def:'1\\'\\\\2\\\\\\'3\"4'}")
622 self.assertEqual(json.loads(on), {"abc_def": "1'\\2\\'3\"4"})
623
624 on = js_to_json('{"abc": true}')
625 self.assertEqual(json.loads(on), {'abc': True})
626
8f4b58d7
PH
627 # Ignore JavaScript code as well
628 on = js_to_json('''{
629 "x": 1,
630 y: "a",
631 z: some.code
632 }''')
633 d = json.loads(on)
634 self.assertEqual(d['x'], 1)
635 self.assertEqual(d['y'], 'a')
636
ba9e68f4
S
637 on = js_to_json('["abc", "def",]')
638 self.assertEqual(json.loads(on), ['abc', 'def'])
639
640 on = js_to_json('{"abc": "def",}')
641 self.assertEqual(json.loads(on), {'abc': 'def'})
642
bd1e4844 643 on = js_to_json('{ 0: /* " \n */ ",]" , }')
644 self.assertEqual(json.loads(on), {'0': ',]'})
645
646 on = js_to_json(r'["<p>x<\/p>"]')
647 self.assertEqual(json.loads(on), ['<p>x</p>'])
648
649 on = js_to_json(r'["\xaa"]')
650 self.assertEqual(json.loads(on), ['\u00aa'])
651
652 on = js_to_json("['a\\\nb']")
653 self.assertEqual(json.loads(on), ['ab'])
654
8bb56eee
BF
655 def test_extract_attributes(self):
656 self.assertEqual(extract_attributes('<e x="y">'), {'x': 'y'})
657 self.assertEqual(extract_attributes("<e x='y'>"), {'x': 'y'})
658 self.assertEqual(extract_attributes('<e x=y>'), {'x': 'y'})
659 self.assertEqual(extract_attributes('<e x="a \'b\' c">'), {'x': "a 'b' c"})
660 self.assertEqual(extract_attributes('<e x=\'a "b" c\'>'), {'x': 'a "b" c'})
661 self.assertEqual(extract_attributes('<e x="&#121;">'), {'x': 'y'})
662 self.assertEqual(extract_attributes('<e x="&#x79;">'), {'x': 'y'})
663 self.assertEqual(extract_attributes('<e x="&amp;">'), {'x': '&'}) # XML
664 self.assertEqual(extract_attributes('<e x="&quot;">'), {'x': '"'})
c5229f39
S
665 self.assertEqual(extract_attributes('<e x="&pound;">'), {'x': '£'}) # HTML 3.2
666 self.assertEqual(extract_attributes('<e x="&lambda;">'), {'x': 'λ'}) # HTML 4.0
8bb56eee
BF
667 self.assertEqual(extract_attributes('<e x="&foo">'), {'x': '&foo'})
668 self.assertEqual(extract_attributes('<e x="\'">'), {'x': "'"})
669 self.assertEqual(extract_attributes('<e x=\'"\'>'), {'x': '"'})
670 self.assertEqual(extract_attributes('<e x >'), {'x': None})
671 self.assertEqual(extract_attributes('<e x=y a>'), {'x': 'y', 'a': None})
672 self.assertEqual(extract_attributes('<e x= y>'), {'x': 'y'})
673 self.assertEqual(extract_attributes('<e x=1 y=2 x=3>'), {'y': '2', 'x': '3'})
674 self.assertEqual(extract_attributes('<e \nx=\ny\n>'), {'x': 'y'})
675 self.assertEqual(extract_attributes('<e \nx=\n"y"\n>'), {'x': 'y'})
676 self.assertEqual(extract_attributes("<e \nx=\n'y'\n>"), {'x': 'y'})
677 self.assertEqual(extract_attributes('<e \nx="\ny\n">'), {'x': '\ny\n'})
c5229f39 678 self.assertEqual(extract_attributes('<e CAPS=x>'), {'caps': 'x'}) # Names lowercased
8bb56eee
BF
679 self.assertEqual(extract_attributes('<e x=1 X=2>'), {'x': '2'})
680 self.assertEqual(extract_attributes('<e X=1 x=2>'), {'x': '2'})
681 self.assertEqual(extract_attributes('<e _:funny-name1=1>'), {'_:funny-name1': '1'})
682 self.assertEqual(extract_attributes('<e x="Fáilte 世界 \U0001f600">'), {'x': 'Fáilte 世界 \U0001f600'})
683 self.assertEqual(extract_attributes('<e x="décompose&#769;">'), {'x': 'décompose\u0301'})
684 # "Narrow" Python builds don't support unicode code points outside BMP.
685 try:
686 compat_chr(0x10000)
687 supports_outside_bmp = True
688 except ValueError:
689 supports_outside_bmp = False
690 if supports_outside_bmp:
691 self.assertEqual(extract_attributes('<e x="Smile &#128512;!">'), {'x': 'Smile \U0001f600!'})
692
e4bdb37e
PH
693 def test_clean_html(self):
694 self.assertEqual(clean_html('a:\nb'), 'a: b')
695 self.assertEqual(clean_html('a:\n "b"'), 'a: "b"')
696
4c0924bb
PH
697 def test_intlist_to_bytes(self):
698 self.assertEqual(
699 intlist_to_bytes([0, 1, 127, 128, 255]),
700 b'\x00\x01\x7f\x80\xff')
701
7d4111ed
PH
702 def test_args_to_str(self):
703 self.assertEqual(
704 args_to_str(['foo', 'ba/r', '-baz', '2 be', '']),
705 'foo ba/r -baz \'2 be\' \'\''
706 )
707
be64b5b0
PH
708 def test_parse_filesize(self):
709 self.assertEqual(parse_filesize(None), None)
710 self.assertEqual(parse_filesize(''), None)
711 self.assertEqual(parse_filesize('91 B'), 91)
712 self.assertEqual(parse_filesize('foobar'), None)
713 self.assertEqual(parse_filesize('2 MiB'), 2097152)
714 self.assertEqual(parse_filesize('5 GB'), 5000000000)
715 self.assertEqual(parse_filesize('1.2Tb'), 1200000000000)
4349c07d 716 self.assertEqual(parse_filesize('1,24 KB'), 1240)
be64b5b0 717
fb47597b
S
718 def test_parse_count(self):
719 self.assertEqual(parse_count(None), None)
720 self.assertEqual(parse_count(''), None)
721 self.assertEqual(parse_count('0'), 0)
722 self.assertEqual(parse_count('1000'), 1000)
723 self.assertEqual(parse_count('1.000'), 1000)
724 self.assertEqual(parse_count('1.1k'), 1100)
725 self.assertEqual(parse_count('1.1kk'), 1100000)
782b1b5b
JMF
726 self.assertEqual(parse_count('1.1kk '), 1100000)
727 self.assertEqual(parse_count('1.1kk views'), 1100000)
fb47597b 728
5f9b8394
PH
729 def test_version_tuple(self):
730 self.assertEqual(version_tuple('1'), (1,))
731 self.assertEqual(version_tuple('10.23.344'), (10, 23, 344))
47d7c642 732 self.assertEqual(version_tuple('10.1-6'), (10, 1, 6)) # avconv style
5f9b8394 733
cae97f65
PH
734 def test_detect_exe_version(self):
735 self.assertEqual(detect_exe_version('''ffmpeg version 1.2.1
736built on May 27 2013 08:37:26 with gcc 4.7 (Debian 4.7.3-4)
737configuration: --prefix=/usr --extra-'''), '1.2.1')
738 self.assertEqual(detect_exe_version('''ffmpeg version N-63176-g1fb4685
739built on May 15 2014 22:09:06 with gcc 4.8.2 (GCC)'''), 'N-63176-g1fb4685')
740 self.assertEqual(detect_exe_version('''X server found. dri2 connection failed!
741Trying to open render node...
742Success at /dev/dri/renderD128.
743ffmpeg version 2.4.4 Copyright (c) 2000-2014 the FFmpeg ...'''), '2.4.4')
744
05900629
PH
745 def test_age_restricted(self):
746 self.assertFalse(age_restricted(None, 10)) # unrestricted content
747 self.assertFalse(age_restricted(1, None)) # unrestricted policy
748 self.assertFalse(age_restricted(8, 10))
749 self.assertTrue(age_restricted(18, 14))
750 self.assertFalse(age_restricted(18, 18))
751
61ca9a80
PH
752 def test_is_html(self):
753 self.assertFalse(is_html(b'\x49\x44\x43<html'))
754 self.assertTrue(is_html(b'<!DOCTYPE foo>\xaaa'))
755 self.assertTrue(is_html( # UTF-8 with BOM
756 b'\xef\xbb\xbf<!DOCTYPE foo>\xaaa'))
757 self.assertTrue(is_html( # UTF-16-LE
758 b'\xff\xfe<\x00h\x00t\x00m\x00l\x00>\x00\xe4\x00'
759 ))
760 self.assertTrue(is_html( # UTF-16-BE
761 b'\xfe\xff\x00<\x00h\x00t\x00m\x00l\x00>\x00\xe4'
762 ))
763 self.assertTrue(is_html( # UTF-32-BE
764 b'\x00\x00\xFE\xFF\x00\x00\x00<\x00\x00\x00h\x00\x00\x00t\x00\x00\x00m\x00\x00\x00l\x00\x00\x00>\x00\x00\x00\xe4'))
765 self.assertTrue(is_html( # UTF-32-LE
766 b'\xFF\xFE\x00\x00<\x00\x00\x00h\x00\x00\x00t\x00\x00\x00m\x00\x00\x00l\x00\x00\x00>\x00\x00\x00\xe4\x00\x00\x00'))
767
cfb56d1a
PH
768 def test_render_table(self):
769 self.assertEqual(
770 render_table(
771 ['a', 'bcd'],
772 [[123, 4], [9999, 51]]),
773 'a bcd\n'
774 '123 4\n'
775 '9999 51')
776
347de493
PH
777 def test_match_str(self):
778 self.assertRaises(ValueError, match_str, 'xy>foobar', {})
779 self.assertFalse(match_str('xy', {'x': 1200}))
780 self.assertTrue(match_str('!xy', {'x': 1200}))
781 self.assertTrue(match_str('x', {'x': 1200}))
782 self.assertFalse(match_str('!x', {'x': 1200}))
783 self.assertTrue(match_str('x', {'x': 0}))
784 self.assertFalse(match_str('x>0', {'x': 0}))
785 self.assertFalse(match_str('x>0', {}))
786 self.assertTrue(match_str('x>?0', {}))
787 self.assertTrue(match_str('x>1K', {'x': 1200}))
788 self.assertFalse(match_str('x>2K', {'x': 1200}))
789 self.assertTrue(match_str('x>=1200 & x < 1300', {'x': 1200}))
790 self.assertFalse(match_str('x>=1100 & x < 1200', {'x': 1200}))
791 self.assertFalse(match_str('y=a212', {'y': 'foobar42'}))
792 self.assertTrue(match_str('y=foobar42', {'y': 'foobar42'}))
793 self.assertFalse(match_str('y!=foobar42', {'y': 'foobar42'}))
794 self.assertTrue(match_str('y!=foobar2', {'y': 'foobar42'}))
795 self.assertFalse(match_str(
796 'like_count > 100 & dislike_count <? 50 & description',
797 {'like_count': 90, 'description': 'foo'}))
798 self.assertTrue(match_str(
799 'like_count > 100 & dislike_count <? 50 & description',
800 {'like_count': 190, 'description': 'foo'}))
801 self.assertFalse(match_str(
802 'like_count > 100 & dislike_count <? 50 & description',
803 {'like_count': 190, 'dislike_count': 60, 'description': 'foo'}))
804 self.assertFalse(match_str(
805 'like_count > 100 & dislike_count <? 50 & description',
806 {'like_count': 190, 'dislike_count': 10}))
807
bf6427d2 808 def test_parse_dfxp_time_expr(self):
d631d5f9
YCH
809 self.assertEqual(parse_dfxp_time_expr(None), None)
810 self.assertEqual(parse_dfxp_time_expr(''), None)
bf6427d2
YCH
811 self.assertEqual(parse_dfxp_time_expr('0.1'), 0.1)
812 self.assertEqual(parse_dfxp_time_expr('0.1s'), 0.1)
813 self.assertEqual(parse_dfxp_time_expr('00:00:01'), 1.0)
814 self.assertEqual(parse_dfxp_time_expr('00:00:01.100'), 1.1)
db2fe38b 815 self.assertEqual(parse_dfxp_time_expr('00:00:01:100'), 1.1)
bf6427d2
YCH
816
817 def test_dfxp2srt(self):
818 dfxp_data = '''<?xml version="1.0" encoding="UTF-8"?>
819 <tt xmlns="http://www.w3.org/ns/ttml" xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
820 <body>
821 <div xml:lang="en">
822 <p begin="0" end="1">The following line contains Chinese characters and special symbols</p>
823 <p begin="1" end="2">第二行<br/>♪♪</p>
7dff0363 824 <p begin="2" dur="1"><span>Third<br/>Line</span></p>
d631d5f9
YCH
825 <p begin="3" end="-1">Lines with invalid timestamps are ignored</p>
826 <p begin="-1" end="-1">Ignore, two</p>
827 <p begin="3" dur="-1">Ignored, three</p>
bf6427d2
YCH
828 </div>
829 </body>
830 </tt>'''
831 srt_data = '''1
83200:00:00,000 --> 00:00:01,000
833The following line contains Chinese characters and special symbols
834
8352
83600:00:01,000 --> 00:00:02,000
837第二行
838♪♪
839
8403
84100:00:02,000 --> 00:00:03,000
842Third
843Line
844
845'''
846 self.assertEqual(dfxp2srt(dfxp_data), srt_data)
847
1b0427e6
YCH
848 dfxp_data_no_default_namespace = '''<?xml version="1.0" encoding="UTF-8"?>
849 <tt xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
850 <body>
851 <div xml:lang="en">
852 <p begin="0" end="1">The first line</p>
853 </div>
854 </body>
855 </tt>'''
856 srt_data = '''1
85700:00:00,000 --> 00:00:01,000
858The first line
859
860'''
861 self.assertEqual(dfxp2srt(dfxp_data_no_default_namespace), srt_data)
862
f7126449
S
863 def test_cli_option(self):
864 self.assertEqual(cli_option({'proxy': '127.0.0.1:3128'}, '--proxy', 'proxy'), ['--proxy', '127.0.0.1:3128'])
865 self.assertEqual(cli_option({'proxy': None}, '--proxy', 'proxy'), [])
866 self.assertEqual(cli_option({}, '--proxy', 'proxy'), [])
867
868 def test_cli_valueless_option(self):
869 self.assertEqual(cli_valueless_option(
870 {'downloader': 'external'}, '--external-downloader', 'downloader', 'external'), ['--external-downloader'])
871 self.assertEqual(cli_valueless_option(
872 {'downloader': 'internal'}, '--external-downloader', 'downloader', 'external'), [])
873 self.assertEqual(cli_valueless_option(
874 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'), ['--no-check-certificate'])
875 self.assertEqual(cli_valueless_option(
876 {'nocheckcertificate': False}, '--no-check-certificate', 'nocheckcertificate'), [])
877 self.assertEqual(cli_valueless_option(
878 {'checkcertificate': True}, '--no-check-certificate', 'checkcertificate', False), [])
879 self.assertEqual(cli_valueless_option(
880 {'checkcertificate': False}, '--no-check-certificate', 'checkcertificate', False), ['--no-check-certificate'])
881
882 def test_cli_bool_option(self):
883 self.assertEqual(
884 cli_bool_option(
885 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'),
886 ['--no-check-certificate', 'true'])
887 self.assertEqual(
888 cli_bool_option(
889 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate', separator='='),
890 ['--no-check-certificate=true'])
891 self.assertEqual(
892 cli_bool_option(
893 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
894 ['--check-certificate', 'false'])
895 self.assertEqual(
896 cli_bool_option(
897 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
898 ['--check-certificate=false'])
899 self.assertEqual(
900 cli_bool_option(
901 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
902 ['--check-certificate', 'true'])
903 self.assertEqual(
904 cli_bool_option(
905 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
906 ['--check-certificate=true'])
907
5bc880b9
YCH
908 def test_ohdave_rsa_encrypt(self):
909 N = 0xab86b6371b5318aaa1d3c9e612a9f1264f372323c8c0f19875b5fc3b3fd3afcc1e5bec527aa94bfa85bffc157e4245aebda05389a5357b75115ac94f074aefcd
910 e = 65537
911
912 self.assertEqual(
913 ohdave_rsa_encrypt(b'aa111222', e, N),
914 '726664bd9a23fd0c70f9f1b84aab5e3905ce1e45a584e9cbcf9bcc7510338fc1986d6c599ff990d923aa43c51c0d9013cd572e13bc58f4ae48f2ed8c0b0ba881')
cfb56d1a 915
5eb6bdce
YCH
916 def test_encode_base_n(self):
917 self.assertEqual(encode_base_n(0, 30), '0')
918 self.assertEqual(encode_base_n(80, 30), '2k')
919
920 custom_table = '9876543210ZYXWVUTSRQPONMLKJIHGFEDCBA'
921 self.assertEqual(encode_base_n(0, 30, custom_table), '9')
922 self.assertEqual(encode_base_n(80, 30, custom_table), '7P')
923
924 self.assertRaises(ValueError, encode_base_n, 0, 70)
925 self.assertRaises(ValueError, encode_base_n, 0, 60, custom_table)
926
dae7c920 927if __name__ == '__main__':
59ae15a5 928 unittest.main()