]> jfr.im git - yt-dlp.git/blame - test/test_utils.py
[discovery] Fix typo
[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,
b53466e1 58 struct_unpack,
29eb5174
PH
59 timeconvert,
60 unescapeHTML,
61 unified_strdate,
62 unsmuggle_url,
cae97f65 63 uppercase_escape,
0fe2ff78 64 lowercase_escape,
29eb5174 65 url_basename,
b74fa8cd 66 urlencode_postdata,
fb640d0a 67 update_url_query,
5f9b8394 68 version_tuple,
cae97f65 69 xpath_with_ns,
87f70ab3 70 xpath_element,
5379a2d4 71 xpath_text,
87f70ab3 72 xpath_attr,
cfb56d1a 73 render_table,
347de493 74 match_str,
bf6427d2
YCH
75 parse_dfxp_time_expr,
76 dfxp2srt,
f7126449
S
77 cli_option,
78 cli_valueless_option,
79 cli_bool_option,
a921f407 80)
36e6f62c 81from youtube_dl.compat import (
8bb56eee 82 compat_chr,
36e6f62c 83 compat_etree_fromstring,
fb640d0a 84 compat_urlparse,
85 compat_parse_qs,
36e6f62c 86)
44fb3454 87
627dcfff 88
44fb3454 89class TestUtil(unittest.TestCase):
59ae15a5
PH
90 def test_timeconvert(self):
91 self.assertTrue(timeconvert('') is None)
92 self.assertTrue(timeconvert('bougrg') is None)
93
94 def test_sanitize_filename(self):
95 self.assertEqual(sanitize_filename('abc'), 'abc')
96 self.assertEqual(sanitize_filename('abc_d-e'), 'abc_d-e')
97
98 self.assertEqual(sanitize_filename('123'), '123')
99
100 self.assertEqual('abc_de', sanitize_filename('abc/de'))
101 self.assertFalse('/' in sanitize_filename('abc/de///'))
102
103 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de'))
104 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|'))
105 self.assertEqual('yes no', sanitize_filename('yes? no'))
106 self.assertEqual('this - that', sanitize_filename('this: that'))
107
108 self.assertEqual(sanitize_filename('AT&T'), 'AT&T')
4e408e47 109 aumlaut = 'ä'
59ae15a5 110 self.assertEqual(sanitize_filename(aumlaut), aumlaut)
4e408e47 111 tests = '\u043a\u0438\u0440\u0438\u043b\u043b\u0438\u0446\u0430'
59ae15a5
PH
112 self.assertEqual(sanitize_filename(tests), tests)
113
2aeb06d6
PH
114 self.assertEqual(
115 sanitize_filename('New World record at 0:12:34'),
116 'New World record at 0_12_34')
a7440261 117
5a42414b
PH
118 self.assertEqual(sanitize_filename('--gasdgf'), '_-gasdgf')
119 self.assertEqual(sanitize_filename('--gasdgf', is_id=True), '--gasdgf')
a7440261
PH
120 self.assertEqual(sanitize_filename('.gasdgf'), 'gasdgf')
121 self.assertEqual(sanitize_filename('.gasdgf', is_id=True), '.gasdgf')
2aeb06d6 122
59ae15a5
PH
123 forbidden = '"\0\\/'
124 for fc in forbidden:
125 for fbc in forbidden:
126 self.assertTrue(fbc not in sanitize_filename(fc))
127
128 def test_sanitize_filename_restricted(self):
129 self.assertEqual(sanitize_filename('abc', restricted=True), 'abc')
130 self.assertEqual(sanitize_filename('abc_d-e', restricted=True), 'abc_d-e')
131
132 self.assertEqual(sanitize_filename('123', restricted=True), '123')
133
134 self.assertEqual('abc_de', sanitize_filename('abc/de', restricted=True))
135 self.assertFalse('/' in sanitize_filename('abc/de///', restricted=True))
136
137 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de', restricted=True))
138 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|', restricted=True))
139 self.assertEqual('yes_no', sanitize_filename('yes? no', restricted=True))
140 self.assertEqual('this_-_that', sanitize_filename('this: that', restricted=True))
141
4e408e47 142 tests = 'a\xe4b\u4e2d\u56fd\u7684c'
59ae15a5 143 self.assertEqual(sanitize_filename(tests, restricted=True), 'a_b_c')
4e408e47 144 self.assertTrue(sanitize_filename('\xf6', restricted=True) != '') # No empty filename
59ae15a5 145
627dcfff 146 forbidden = '"\0\\/&!: \'\t\n()[]{}$;`^,#'
59ae15a5
PH
147 for fc in forbidden:
148 for fbc in forbidden:
149 self.assertTrue(fbc not in sanitize_filename(fc, restricted=True))
150
151 # Handle a common case more neatly
4e408e47
PH
152 self.assertEqual(sanitize_filename('\u5927\u58f0\u5e26 - Song', restricted=True), 'Song')
153 self.assertEqual(sanitize_filename('\u603b\u7edf: Speech', restricted=True), 'Speech')
59ae15a5
PH
154 # .. but make sure the file name is never empty
155 self.assertTrue(sanitize_filename('-', restricted=True) != '')
156 self.assertTrue(sanitize_filename(':', restricted=True) != '')
157
796173d0 158 def test_sanitize_ids(self):
314d506b
PH
159 self.assertEqual(sanitize_filename('_n_cd26wFpw', is_id=True), '_n_cd26wFpw')
160 self.assertEqual(sanitize_filename('_BD_eEpuzXw', is_id=True), '_BD_eEpuzXw')
161 self.assertEqual(sanitize_filename('N0Y__7-UOdI', is_id=True), 'N0Y__7-UOdI')
796173d0 162
a2aaf4db
S
163 def test_sanitize_path(self):
164 if sys.platform != 'win32':
165 return
166
167 self.assertEqual(sanitize_path('abc'), 'abc')
168 self.assertEqual(sanitize_path('abc/def'), 'abc\\def')
169 self.assertEqual(sanitize_path('abc\\def'), 'abc\\def')
170 self.assertEqual(sanitize_path('abc|def'), 'abc#def')
171 self.assertEqual(sanitize_path('<>:"|?*'), '#######')
172 self.assertEqual(sanitize_path('C:/abc/def'), 'C:\\abc\\def')
173 self.assertEqual(sanitize_path('C?:/abc/def'), 'C##\\abc\\def')
174
175 self.assertEqual(sanitize_path('\\\\?\\UNC\\ComputerName\\abc'), '\\\\?\\UNC\\ComputerName\\abc')
176 self.assertEqual(sanitize_path('\\\\?\\UNC/ComputerName/abc'), '\\\\?\\UNC\\ComputerName\\abc')
177
178 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
179 self.assertEqual(sanitize_path('\\\\?\\C:/abc'), '\\\\?\\C:\\abc')
180 self.assertEqual(sanitize_path('\\\\?\\C:\\ab?c\\de:f'), '\\\\?\\C:\\ab#c\\de#f')
181 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
182
f18ef2d1
S
183 self.assertEqual(
184 sanitize_path('youtube/%(uploader)s/%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s'),
185 'youtube\\%(uploader)s\\%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s')
186
187 self.assertEqual(
188 sanitize_path('youtube/TheWreckingYard ./00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part'),
189 'youtube\\TheWreckingYard #\\00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part')
190 self.assertEqual(sanitize_path('abc/def...'), 'abc\\def..#')
191 self.assertEqual(sanitize_path('abc.../def'), 'abc..#\\def')
192 self.assertEqual(sanitize_path('abc.../def...'), 'abc..#\\def..#')
193
2ebfeaca
S
194 self.assertEqual(sanitize_path('../abc'), '..\\abc')
195 self.assertEqual(sanitize_path('../../abc'), '..\\..\\abc')
196 self.assertEqual(sanitize_path('./abc'), 'abc')
197 self.assertEqual(sanitize_path('./../abc'), '..\\abc')
198
a4bcaad7
S
199 def test_prepend_extension(self):
200 self.assertEqual(prepend_extension('abc.ext', 'temp'), 'abc.temp.ext')
201 self.assertEqual(prepend_extension('abc.ext', 'temp', 'ext'), 'abc.temp.ext')
202 self.assertEqual(prepend_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
203 self.assertEqual(prepend_extension('abc', 'temp'), 'abc.temp')
204 self.assertEqual(prepend_extension('.abc', 'temp'), '.abc.temp')
205 self.assertEqual(prepend_extension('.abc.ext', 'temp'), '.abc.temp.ext')
206
b3ed15b7
S
207 def test_replace_extension(self):
208 self.assertEqual(replace_extension('abc.ext', 'temp'), 'abc.temp')
209 self.assertEqual(replace_extension('abc.ext', 'temp', 'ext'), 'abc.temp')
210 self.assertEqual(replace_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
211 self.assertEqual(replace_extension('abc', 'temp'), 'abc.temp')
212 self.assertEqual(replace_extension('.abc', 'temp'), '.abc.temp')
213 self.assertEqual(replace_extension('.abc.ext', 'temp'), '.abc.temp')
214
31b2051e
S
215 def test_remove_quotes(self):
216 self.assertEqual(remove_quotes(None), None)
217 self.assertEqual(remove_quotes('"'), '"')
218 self.assertEqual(remove_quotes("'"), "'")
219 self.assertEqual(remove_quotes(';'), ';')
220 self.assertEqual(remove_quotes('";'), '";')
221 self.assertEqual(remove_quotes('""'), '')
222 self.assertEqual(remove_quotes('";"'), ';')
223
59ae15a5 224 def test_ordered_set(self):
627dcfff 225 self.assertEqual(orderedSet([1, 1, 2, 3, 4, 4, 5, 6, 7, 3, 5]), [1, 2, 3, 4, 5, 6, 7])
59ae15a5
PH
226 self.assertEqual(orderedSet([]), [])
227 self.assertEqual(orderedSet([1]), [1])
5f6a1245 228 # keep the list ordered
627dcfff 229 self.assertEqual(orderedSet([135, 1, 1, 1]), [135, 1])
59ae15a5
PH
230
231 def test_unescape_html(self):
4e408e47 232 self.assertEqual(unescapeHTML('%20;'), '%20;')
91757b0f
NJ
233 self.assertEqual(unescapeHTML('&#x2F;'), '/')
234 self.assertEqual(unescapeHTML('&#47;'), '/')
7aefc49c
S
235 self.assertEqual(unescapeHTML('&eacute;'), 'é')
236 self.assertEqual(unescapeHTML('&#2013266066;'), '&#2013266066;')
5f6a1245 237
eb9c3edd
JMF
238 def test_date_from_str(self):
239 self.assertEqual(date_from_str('yesterday'), date_from_str('now-1day'))
240 self.assertEqual(date_from_str('now+7day'), date_from_str('now+1week'))
241 self.assertEqual(date_from_str('now+14day'), date_from_str('now+2week'))
242 self.assertEqual(date_from_str('now+365day'), date_from_str('now+1year'))
243 self.assertEqual(date_from_str('now+30day'), date_from_str('now+1month'))
244
bd558525 245 def test_daterange(self):
5f6a1245 246 _20century = DateRange("19000101", "20000101")
bd558525
JMF
247 self.assertFalse("17890714" in _20century)
248 _ac = DateRange("00010101")
249 self.assertTrue("19690721" in _ac)
250 _firstmilenium = DateRange(end="10000101")
251 self.assertTrue("07110427" in _firstmilenium)
37254abc 252
bf50b038
JMF
253 def test_unified_dates(self):
254 self.assertEqual(unified_strdate('December 21, 2010'), '20101221')
255 self.assertEqual(unified_strdate('8/7/2009'), '20090708')
256 self.assertEqual(unified_strdate('Dec 14, 2012'), '20121214')
257 self.assertEqual(unified_strdate('2012/10/11 01:56:38 +0000'), '20121011')
a69801e2 258 self.assertEqual(unified_strdate('1968 12 10'), '19681210')
026fcc04 259 self.assertEqual(unified_strdate('1968-12-10'), '19681210')
99b67fec 260 self.assertEqual(unified_strdate('28/01/2014 21:00:00 +0100'), '20140128')
42bdd9d0
PH
261 self.assertEqual(
262 unified_strdate('11/26/2014 11:30:00 AM PST', day_first=False),
263 '20141126')
9bb8e0a3
PH
264 self.assertEqual(
265 unified_strdate('2/2/2015 6:47:40 PM', day_first=False),
266 '20150202')
f160785c 267 self.assertEqual(unified_strdate('Feb 14th 2016 5:45PM'), '20160214')
8cf70de4 268 self.assertEqual(unified_strdate('25-09-2014'), '20140925')
6a750402 269 self.assertEqual(unified_strdate('UNKNOWN DATE FORMAT'), None)
dae7c920 270
5035536e
S
271 def test_determine_ext(self):
272 self.assertEqual(determine_ext('http://example.com/foo/bar.mp4/?download'), 'mp4')
273 self.assertEqual(determine_ext('http://example.com/foo/bar/?download', None), None)
9cb9a5df
S
274 self.assertEqual(determine_ext('http://example.com/foo/bar.nonext/?download', None), None)
275 self.assertEqual(determine_ext('http://example.com/foo/bar/mp4?download', None), None)
276 self.assertEqual(determine_ext('http://example.com/foo/bar.m3u8//?download'), 'm3u8')
5035536e 277
59ae56fa 278 def test_find_xpath_attr(self):
4e408e47 279 testxml = '''<root>
59ae56fa
PH
280 <node/>
281 <node x="a"/>
282 <node x="a" y="c" />
283 <node x="b" y="d" />
ee114368 284 <node x="" />
59ae56fa 285 </root>'''
36e6f62c 286 doc = compat_etree_fromstring(testxml)
59ae56fa 287
ee114368 288 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n'), None)
59ae56fa 289 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n', 'v'), None)
ee114368
S
290 self.assertEqual(find_xpath_attr(doc, './/node', 'n'), None)
291 self.assertEqual(find_xpath_attr(doc, './/node', 'n', 'v'), None)
292 self.assertEqual(find_xpath_attr(doc, './/node', 'x'), doc[1])
59ae56fa 293 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'a'), doc[1])
ee114368
S
294 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'b'), doc[3])
295 self.assertEqual(find_xpath_attr(doc, './/node', 'y'), doc[2])
59ae56fa 296 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'c'), doc[2])
ee114368
S
297 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'd'), doc[3])
298 self.assertEqual(find_xpath_attr(doc, './/node', 'x', ''), doc[4])
59ae56fa 299
d7e66d39 300 def test_xpath_with_ns(self):
4e408e47 301 testxml = '''<root xmlns:media="http://example.com/">
d7e66d39
JMF
302 <media:song>
303 <media:author>The Author</media:author>
304 <url>http://server.com/download.mp3</url>
305 </media:song>
306 </root>'''
36e6f62c 307 doc = compat_etree_fromstring(testxml)
d7e66d39
JMF
308 find = lambda p: doc.find(xpath_with_ns(p, {'media': 'http://example.com/'}))
309 self.assertTrue(find('media:song') is not None)
4e408e47
PH
310 self.assertEqual(find('media:song/media:author').text, 'The Author')
311 self.assertEqual(find('media:song/url').text, 'http://server.com/download.mp3')
d7e66d39 312
87f70ab3
S
313 def test_xpath_element(self):
314 doc = xml.etree.ElementTree.Element('root')
315 div = xml.etree.ElementTree.SubElement(doc, 'div')
316 p = xml.etree.ElementTree.SubElement(div, 'p')
317 p.text = 'Foo'
318 self.assertEqual(xpath_element(doc, 'div/p'), p)
578c0745
S
319 self.assertEqual(xpath_element(doc, ['div/p']), p)
320 self.assertEqual(xpath_element(doc, ['div/bar', 'div/p']), p)
87f70ab3 321 self.assertEqual(xpath_element(doc, 'div/bar', default='default'), 'default')
578c0745 322 self.assertEqual(xpath_element(doc, ['div/bar'], default='default'), 'default')
87f70ab3 323 self.assertTrue(xpath_element(doc, 'div/bar') is None)
578c0745
S
324 self.assertTrue(xpath_element(doc, ['div/bar']) is None)
325 self.assertTrue(xpath_element(doc, ['div/bar'], 'div/baz') is None)
87f70ab3 326 self.assertRaises(ExtractorError, xpath_element, doc, 'div/bar', fatal=True)
578c0745
S
327 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar'], fatal=True)
328 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar', 'div/baz'], fatal=True)
87f70ab3 329
5379a2d4
JMF
330 def test_xpath_text(self):
331 testxml = '''<root>
332 <div>
333 <p>Foo</p>
334 </div>
335 </root>'''
36e6f62c 336 doc = compat_etree_fromstring(testxml)
5379a2d4 337 self.assertEqual(xpath_text(doc, 'div/p'), 'Foo')
87f70ab3 338 self.assertEqual(xpath_text(doc, 'div/bar', default='default'), 'default')
5379a2d4
JMF
339 self.assertTrue(xpath_text(doc, 'div/bar') is None)
340 self.assertRaises(ExtractorError, xpath_text, doc, 'div/bar', fatal=True)
341
87f70ab3
S
342 def test_xpath_attr(self):
343 testxml = '''<root>
344 <div>
345 <p x="a">Foo</p>
346 </div>
347 </root>'''
36e6f62c 348 doc = compat_etree_fromstring(testxml)
87f70ab3
S
349 self.assertEqual(xpath_attr(doc, 'div/p', 'x'), 'a')
350 self.assertEqual(xpath_attr(doc, 'div/bar', 'x'), None)
351 self.assertEqual(xpath_attr(doc, 'div/p', 'y'), None)
352 self.assertEqual(xpath_attr(doc, 'div/bar', 'x', default='default'), 'default')
353 self.assertEqual(xpath_attr(doc, 'div/p', 'y', default='default'), 'default')
354 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/bar', 'x', fatal=True)
355 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/p', 'y', fatal=True)
356
9d4660ca 357 def test_smuggle_url(self):
e075a44a 358 data = {"ö": "ö", "abc": [3]}
9d4660ca
PH
359 url = 'https://foo.bar/baz?x=y#a'
360 smug_url = smuggle_url(url, data)
361 unsmug_url, unsmug_data = unsmuggle_url(smug_url)
362 self.assertEqual(url, unsmug_url)
363 self.assertEqual(data, unsmug_data)
364
365 res_url, res_data = unsmuggle_url(url)
366 self.assertEqual(res_url, url)
367 self.assertEqual(res_data, None)
368
a6a173c2 369 def test_shell_quote(self):
4e408e47
PH
370 args = ['ffmpeg', '-i', encodeFilename('ñ€ß\'.mp4')]
371 self.assertEqual(shell_quote(args), """ffmpeg -i 'ñ€ß'"'"'.mp4'""")
a6a173c2 372
f53c966a
JMF
373 def test_str_to_int(self):
374 self.assertEqual(str_to_int('123,456'), 123456)
375 self.assertEqual(str_to_int('123.456'), 123456)
376
29eb5174 377 def test_url_basename(self):
4e408e47
PH
378 self.assertEqual(url_basename('http://foo.de/'), '')
379 self.assertEqual(url_basename('http://foo.de/bar/baz'), 'baz')
380 self.assertEqual(url_basename('http://foo.de/bar/baz?x=y'), 'baz')
381 self.assertEqual(url_basename('http://foo.de/bar/baz#x=y'), 'baz')
382 self.assertEqual(url_basename('http://foo.de/bar/baz/'), 'baz')
d6c7a367 383 self.assertEqual(
4e408e47
PH
384 url_basename('http://media.w3.org/2010/05/sintel/trailer.mp4'),
385 'trailer.mp4')
9d4660ca 386
608d11f5
PH
387 def test_parse_duration(self):
388 self.assertEqual(parse_duration(None), None)
a5fb718c
S
389 self.assertEqual(parse_duration(False), None)
390 self.assertEqual(parse_duration('invalid'), None)
608d11f5
PH
391 self.assertEqual(parse_duration('1'), 1)
392 self.assertEqual(parse_duration('1337:12'), 80232)
393 self.assertEqual(parse_duration('9:12:43'), 33163)
2db806b4
S
394 self.assertEqual(parse_duration('12:00'), 720)
395 self.assertEqual(parse_duration('00:01:01'), 61)
608d11f5 396 self.assertEqual(parse_duration('x:y'), None)
2db806b4 397 self.assertEqual(parse_duration('3h11m53s'), 11513)
ca7b3246
S
398 self.assertEqual(parse_duration('3h 11m 53s'), 11513)
399 self.assertEqual(parse_duration('3 hours 11 minutes 53 seconds'), 11513)
400 self.assertEqual(parse_duration('3 hours 11 mins 53 secs'), 11513)
2db806b4
S
401 self.assertEqual(parse_duration('62m45s'), 3765)
402 self.assertEqual(parse_duration('6m59s'), 419)
403 self.assertEqual(parse_duration('49s'), 49)
404 self.assertEqual(parse_duration('0h0m0s'), 0)
405 self.assertEqual(parse_duration('0m0s'), 0)
406 self.assertEqual(parse_duration('0s'), 0)
7adcbe75 407 self.assertEqual(parse_duration('01:02:03.05'), 3723.05)
6a68bb57 408 self.assertEqual(parse_duration('T30M38S'), 1838)
e8df5cee
PH
409 self.assertEqual(parse_duration('5 s'), 5)
410 self.assertEqual(parse_duration('3 min'), 180)
411 self.assertEqual(parse_duration('2.5 hours'), 9000)
8f4b58d7
PH
412 self.assertEqual(parse_duration('02:03:04'), 7384)
413 self.assertEqual(parse_duration('01:02:03:04'), 93784)
3e675fab 414 self.assertEqual(parse_duration('1 hour 3 minutes'), 3780)
9c29bc69 415 self.assertEqual(parse_duration('87 Min.'), 5220)
acaff495 416 self.assertEqual(parse_duration('PT1H0.040S'), 3600.04)
608d11f5 417
5aafe895
PH
418 def test_fix_xml_ampersands(self):
419 self.assertEqual(
420 fix_xml_ampersands('"&x=y&z=a'), '"&amp;x=y&amp;z=a')
421 self.assertEqual(
422 fix_xml_ampersands('"&amp;x=y&wrong;&z=a'),
423 '"&amp;x=y&amp;wrong;&amp;z=a')
424 self.assertEqual(
425 fix_xml_ampersands('&amp;&apos;&gt;&lt;&quot;'),
426 '&amp;&apos;&gt;&lt;&quot;')
427 self.assertEqual(
428 fix_xml_ampersands('&#1234;&#x1abC;'), '&#1234;&#x1abC;')
429 self.assertEqual(fix_xml_ampersands('&#&#'), '&amp;#&amp;#')
430
b7ab0590
PH
431 def test_paged_list(self):
432 def testPL(size, pagesize, sliceargs, expected):
433 def get_page(pagenum):
434 firstid = pagenum * pagesize
435 upto = min(size, pagenum * pagesize + pagesize)
436 for i in range(firstid, upto):
437 yield i
438
9c44d242 439 pl = OnDemandPagedList(get_page, pagesize)
b7ab0590
PH
440 got = pl.getslice(*sliceargs)
441 self.assertEqual(got, expected)
442
9c44d242
PH
443 iapl = InAdvancePagedList(get_page, size // pagesize + 1, pagesize)
444 got = iapl.getslice(*sliceargs)
445 self.assertEqual(got, expected)
446
b7ab0590
PH
447 testPL(5, 2, (), [0, 1, 2, 3, 4])
448 testPL(5, 2, (1,), [1, 2, 3, 4])
449 testPL(5, 2, (2,), [2, 3, 4])
450 testPL(5, 2, (4,), [4])
451 testPL(5, 2, (0, 3), [0, 1, 2])
452 testPL(5, 2, (1, 4), [1, 2, 3])
453 testPL(5, 2, (2, 99), [2, 3, 4])
454 testPL(5, 2, (20, 99), [])
455
b53466e1 456 def test_struct_unpack(self):
4e408e47 457 self.assertEqual(struct_unpack('!B', b'\x00'), (0,))
b53466e1 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
8bb56eee
BF
643 def test_extract_attributes(self):
644 self.assertEqual(extract_attributes('<e x="y">'), {'x': 'y'})
645 self.assertEqual(extract_attributes("<e x='y'>"), {'x': 'y'})
646 self.assertEqual(extract_attributes('<e x=y>'), {'x': 'y'})
647 self.assertEqual(extract_attributes('<e x="a \'b\' c">'), {'x': "a 'b' c"})
648 self.assertEqual(extract_attributes('<e x=\'a "b" c\'>'), {'x': 'a "b" c'})
649 self.assertEqual(extract_attributes('<e x="&#121;">'), {'x': 'y'})
650 self.assertEqual(extract_attributes('<e x="&#x79;">'), {'x': 'y'})
651 self.assertEqual(extract_attributes('<e x="&amp;">'), {'x': '&'}) # XML
652 self.assertEqual(extract_attributes('<e x="&quot;">'), {'x': '"'})
c5229f39
S
653 self.assertEqual(extract_attributes('<e x="&pound;">'), {'x': '£'}) # HTML 3.2
654 self.assertEqual(extract_attributes('<e x="&lambda;">'), {'x': 'λ'}) # HTML 4.0
8bb56eee
BF
655 self.assertEqual(extract_attributes('<e x="&foo">'), {'x': '&foo'})
656 self.assertEqual(extract_attributes('<e x="\'">'), {'x': "'"})
657 self.assertEqual(extract_attributes('<e x=\'"\'>'), {'x': '"'})
658 self.assertEqual(extract_attributes('<e x >'), {'x': None})
659 self.assertEqual(extract_attributes('<e x=y a>'), {'x': 'y', 'a': None})
660 self.assertEqual(extract_attributes('<e x= y>'), {'x': 'y'})
661 self.assertEqual(extract_attributes('<e x=1 y=2 x=3>'), {'y': '2', 'x': '3'})
662 self.assertEqual(extract_attributes('<e \nx=\ny\n>'), {'x': 'y'})
663 self.assertEqual(extract_attributes('<e \nx=\n"y"\n>'), {'x': 'y'})
664 self.assertEqual(extract_attributes("<e \nx=\n'y'\n>"), {'x': 'y'})
665 self.assertEqual(extract_attributes('<e \nx="\ny\n">'), {'x': '\ny\n'})
c5229f39 666 self.assertEqual(extract_attributes('<e CAPS=x>'), {'caps': 'x'}) # Names lowercased
8bb56eee
BF
667 self.assertEqual(extract_attributes('<e x=1 X=2>'), {'x': '2'})
668 self.assertEqual(extract_attributes('<e X=1 x=2>'), {'x': '2'})
669 self.assertEqual(extract_attributes('<e _:funny-name1=1>'), {'_:funny-name1': '1'})
670 self.assertEqual(extract_attributes('<e x="Fáilte 世界 \U0001f600">'), {'x': 'Fáilte 世界 \U0001f600'})
671 self.assertEqual(extract_attributes('<e x="décompose&#769;">'), {'x': 'décompose\u0301'})
672 # "Narrow" Python builds don't support unicode code points outside BMP.
673 try:
674 compat_chr(0x10000)
675 supports_outside_bmp = True
676 except ValueError:
677 supports_outside_bmp = False
678 if supports_outside_bmp:
679 self.assertEqual(extract_attributes('<e x="Smile &#128512;!">'), {'x': 'Smile \U0001f600!'})
680
e4bdb37e
PH
681 def test_clean_html(self):
682 self.assertEqual(clean_html('a:\nb'), 'a: b')
683 self.assertEqual(clean_html('a:\n "b"'), 'a: "b"')
684
4c0924bb
PH
685 def test_intlist_to_bytes(self):
686 self.assertEqual(
687 intlist_to_bytes([0, 1, 127, 128, 255]),
688 b'\x00\x01\x7f\x80\xff')
689
7d4111ed
PH
690 def test_args_to_str(self):
691 self.assertEqual(
692 args_to_str(['foo', 'ba/r', '-baz', '2 be', '']),
693 'foo ba/r -baz \'2 be\' \'\''
694 )
695
be64b5b0
PH
696 def test_parse_filesize(self):
697 self.assertEqual(parse_filesize(None), None)
698 self.assertEqual(parse_filesize(''), None)
699 self.assertEqual(parse_filesize('91 B'), 91)
700 self.assertEqual(parse_filesize('foobar'), None)
701 self.assertEqual(parse_filesize('2 MiB'), 2097152)
702 self.assertEqual(parse_filesize('5 GB'), 5000000000)
703 self.assertEqual(parse_filesize('1.2Tb'), 1200000000000)
4349c07d 704 self.assertEqual(parse_filesize('1,24 KB'), 1240)
be64b5b0 705
fb47597b
S
706 def test_parse_count(self):
707 self.assertEqual(parse_count(None), None)
708 self.assertEqual(parse_count(''), None)
709 self.assertEqual(parse_count('0'), 0)
710 self.assertEqual(parse_count('1000'), 1000)
711 self.assertEqual(parse_count('1.000'), 1000)
712 self.assertEqual(parse_count('1.1k'), 1100)
713 self.assertEqual(parse_count('1.1kk'), 1100000)
782b1b5b
JMF
714 self.assertEqual(parse_count('1.1kk '), 1100000)
715 self.assertEqual(parse_count('1.1kk views'), 1100000)
fb47597b 716
5f9b8394
PH
717 def test_version_tuple(self):
718 self.assertEqual(version_tuple('1'), (1,))
719 self.assertEqual(version_tuple('10.23.344'), (10, 23, 344))
47d7c642 720 self.assertEqual(version_tuple('10.1-6'), (10, 1, 6)) # avconv style
5f9b8394 721
cae97f65
PH
722 def test_detect_exe_version(self):
723 self.assertEqual(detect_exe_version('''ffmpeg version 1.2.1
724built on May 27 2013 08:37:26 with gcc 4.7 (Debian 4.7.3-4)
725configuration: --prefix=/usr --extra-'''), '1.2.1')
726 self.assertEqual(detect_exe_version('''ffmpeg version N-63176-g1fb4685
727built on May 15 2014 22:09:06 with gcc 4.8.2 (GCC)'''), 'N-63176-g1fb4685')
728 self.assertEqual(detect_exe_version('''X server found. dri2 connection failed!
729Trying to open render node...
730Success at /dev/dri/renderD128.
731ffmpeg version 2.4.4 Copyright (c) 2000-2014 the FFmpeg ...'''), '2.4.4')
732
05900629
PH
733 def test_age_restricted(self):
734 self.assertFalse(age_restricted(None, 10)) # unrestricted content
735 self.assertFalse(age_restricted(1, None)) # unrestricted policy
736 self.assertFalse(age_restricted(8, 10))
737 self.assertTrue(age_restricted(18, 14))
738 self.assertFalse(age_restricted(18, 18))
739
61ca9a80
PH
740 def test_is_html(self):
741 self.assertFalse(is_html(b'\x49\x44\x43<html'))
742 self.assertTrue(is_html(b'<!DOCTYPE foo>\xaaa'))
743 self.assertTrue(is_html( # UTF-8 with BOM
744 b'\xef\xbb\xbf<!DOCTYPE foo>\xaaa'))
745 self.assertTrue(is_html( # UTF-16-LE
746 b'\xff\xfe<\x00h\x00t\x00m\x00l\x00>\x00\xe4\x00'
747 ))
748 self.assertTrue(is_html( # UTF-16-BE
749 b'\xfe\xff\x00<\x00h\x00t\x00m\x00l\x00>\x00\xe4'
750 ))
751 self.assertTrue(is_html( # UTF-32-BE
752 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'))
753 self.assertTrue(is_html( # UTF-32-LE
754 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'))
755
cfb56d1a
PH
756 def test_render_table(self):
757 self.assertEqual(
758 render_table(
759 ['a', 'bcd'],
760 [[123, 4], [9999, 51]]),
761 'a bcd\n'
762 '123 4\n'
763 '9999 51')
764
347de493
PH
765 def test_match_str(self):
766 self.assertRaises(ValueError, match_str, 'xy>foobar', {})
767 self.assertFalse(match_str('xy', {'x': 1200}))
768 self.assertTrue(match_str('!xy', {'x': 1200}))
769 self.assertTrue(match_str('x', {'x': 1200}))
770 self.assertFalse(match_str('!x', {'x': 1200}))
771 self.assertTrue(match_str('x', {'x': 0}))
772 self.assertFalse(match_str('x>0', {'x': 0}))
773 self.assertFalse(match_str('x>0', {}))
774 self.assertTrue(match_str('x>?0', {}))
775 self.assertTrue(match_str('x>1K', {'x': 1200}))
776 self.assertFalse(match_str('x>2K', {'x': 1200}))
777 self.assertTrue(match_str('x>=1200 & x < 1300', {'x': 1200}))
778 self.assertFalse(match_str('x>=1100 & x < 1200', {'x': 1200}))
779 self.assertFalse(match_str('y=a212', {'y': 'foobar42'}))
780 self.assertTrue(match_str('y=foobar42', {'y': 'foobar42'}))
781 self.assertFalse(match_str('y!=foobar42', {'y': 'foobar42'}))
782 self.assertTrue(match_str('y!=foobar2', {'y': 'foobar42'}))
783 self.assertFalse(match_str(
784 'like_count > 100 & dislike_count <? 50 & description',
785 {'like_count': 90, 'description': 'foo'}))
786 self.assertTrue(match_str(
787 'like_count > 100 & dislike_count <? 50 & description',
788 {'like_count': 190, 'description': 'foo'}))
789 self.assertFalse(match_str(
790 'like_count > 100 & dislike_count <? 50 & description',
791 {'like_count': 190, 'dislike_count': 60, 'description': 'foo'}))
792 self.assertFalse(match_str(
793 'like_count > 100 & dislike_count <? 50 & description',
794 {'like_count': 190, 'dislike_count': 10}))
795
bf6427d2 796 def test_parse_dfxp_time_expr(self):
d631d5f9
YCH
797 self.assertEqual(parse_dfxp_time_expr(None), None)
798 self.assertEqual(parse_dfxp_time_expr(''), None)
bf6427d2
YCH
799 self.assertEqual(parse_dfxp_time_expr('0.1'), 0.1)
800 self.assertEqual(parse_dfxp_time_expr('0.1s'), 0.1)
801 self.assertEqual(parse_dfxp_time_expr('00:00:01'), 1.0)
802 self.assertEqual(parse_dfxp_time_expr('00:00:01.100'), 1.1)
db2fe38b 803 self.assertEqual(parse_dfxp_time_expr('00:00:01:100'), 1.1)
bf6427d2
YCH
804
805 def test_dfxp2srt(self):
806 dfxp_data = '''<?xml version="1.0" encoding="UTF-8"?>
807 <tt xmlns="http://www.w3.org/ns/ttml" xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
808 <body>
809 <div xml:lang="en">
810 <p begin="0" end="1">The following line contains Chinese characters and special symbols</p>
811 <p begin="1" end="2">第二行<br/>♪♪</p>
7dff0363 812 <p begin="2" dur="1"><span>Third<br/>Line</span></p>
d631d5f9
YCH
813 <p begin="3" end="-1">Lines with invalid timestamps are ignored</p>
814 <p begin="-1" end="-1">Ignore, two</p>
815 <p begin="3" dur="-1">Ignored, three</p>
bf6427d2
YCH
816 </div>
817 </body>
818 </tt>'''
819 srt_data = '''1
82000:00:00,000 --> 00:00:01,000
821The following line contains Chinese characters and special symbols
822
8232
82400:00:01,000 --> 00:00:02,000
825第二行
826♪♪
827
8283
82900:00:02,000 --> 00:00:03,000
830Third
831Line
832
833'''
834 self.assertEqual(dfxp2srt(dfxp_data), srt_data)
835
1b0427e6
YCH
836 dfxp_data_no_default_namespace = '''<?xml version="1.0" encoding="UTF-8"?>
837 <tt xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
838 <body>
839 <div xml:lang="en">
840 <p begin="0" end="1">The first line</p>
841 </div>
842 </body>
843 </tt>'''
844 srt_data = '''1
84500:00:00,000 --> 00:00:01,000
846The first line
847
848'''
849 self.assertEqual(dfxp2srt(dfxp_data_no_default_namespace), srt_data)
850
f7126449
S
851 def test_cli_option(self):
852 self.assertEqual(cli_option({'proxy': '127.0.0.1:3128'}, '--proxy', 'proxy'), ['--proxy', '127.0.0.1:3128'])
853 self.assertEqual(cli_option({'proxy': None}, '--proxy', 'proxy'), [])
854 self.assertEqual(cli_option({}, '--proxy', 'proxy'), [])
855
856 def test_cli_valueless_option(self):
857 self.assertEqual(cli_valueless_option(
858 {'downloader': 'external'}, '--external-downloader', 'downloader', 'external'), ['--external-downloader'])
859 self.assertEqual(cli_valueless_option(
860 {'downloader': 'internal'}, '--external-downloader', 'downloader', 'external'), [])
861 self.assertEqual(cli_valueless_option(
862 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'), ['--no-check-certificate'])
863 self.assertEqual(cli_valueless_option(
864 {'nocheckcertificate': False}, '--no-check-certificate', 'nocheckcertificate'), [])
865 self.assertEqual(cli_valueless_option(
866 {'checkcertificate': True}, '--no-check-certificate', 'checkcertificate', False), [])
867 self.assertEqual(cli_valueless_option(
868 {'checkcertificate': False}, '--no-check-certificate', 'checkcertificate', False), ['--no-check-certificate'])
869
870 def test_cli_bool_option(self):
871 self.assertEqual(
872 cli_bool_option(
873 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'),
874 ['--no-check-certificate', 'true'])
875 self.assertEqual(
876 cli_bool_option(
877 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate', separator='='),
878 ['--no-check-certificate=true'])
879 self.assertEqual(
880 cli_bool_option(
881 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
882 ['--check-certificate', 'false'])
883 self.assertEqual(
884 cli_bool_option(
885 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
886 ['--check-certificate=false'])
887 self.assertEqual(
888 cli_bool_option(
889 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
890 ['--check-certificate', 'true'])
891 self.assertEqual(
892 cli_bool_option(
893 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
894 ['--check-certificate=true'])
895
5bc880b9
YCH
896 def test_ohdave_rsa_encrypt(self):
897 N = 0xab86b6371b5318aaa1d3c9e612a9f1264f372323c8c0f19875b5fc3b3fd3afcc1e5bec527aa94bfa85bffc157e4245aebda05389a5357b75115ac94f074aefcd
898 e = 65537
899
900 self.assertEqual(
901 ohdave_rsa_encrypt(b'aa111222', e, N),
902 '726664bd9a23fd0c70f9f1b84aab5e3905ce1e45a584e9cbcf9bcc7510338fc1986d6c599ff990d923aa43c51c0d9013cd572e13bc58f4ae48f2ed8c0b0ba881')
cfb56d1a 903
5eb6bdce
YCH
904 def test_encode_base_n(self):
905 self.assertEqual(encode_base_n(0, 30), '0')
906 self.assertEqual(encode_base_n(80, 30), '2k')
907
908 custom_table = '9876543210ZYXWVUTSRQPONMLKJIHGFEDCBA'
909 self.assertEqual(encode_base_n(0, 30, custom_table), '9')
910 self.assertEqual(encode_base_n(80, 30, custom_table), '7P')
911
912 self.assertRaises(ValueError, encode_base_n, 0, 70)
913 self.assertRaises(ValueError, encode_base_n, 0, 60, custom_table)
914
dae7c920 915if __name__ == '__main__':
59ae15a5 916 unittest.main()