]> jfr.im git - yt-dlp.git/blame - test/test_utils.py
[line] Add support for tv.line.me (closes #9427)
[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,
84c237fb 36 get_element_by_class,
2af12ad9
TC
37 get_element_by_attribute,
38 get_elements_by_class,
39 get_elements_by_attribute,
9c44d242 40 InAdvancePagedList,
cae97f65 41 intlist_to_bytes,
61ca9a80 42 is_html,
cae97f65
PH
43 js_to_json,
44 limit_length,
6562d34a 45 mimetype2ext,
f6717dec 46 month_by_name,
0c265486 47 multipart_encode,
5bc880b9 48 ohdave_rsa_encrypt,
cae97f65
PH
49 OnDemandPagedList,
50 orderedSet,
a8795327 51 parse_age_limit,
608d11f5 52 parse_duration,
cae97f65 53 parse_filesize,
fb47597b 54 parse_count,
cae97f65 55 parse_iso8601,
b871d7e9 56 parse_resolution,
f48409c7 57 pkcs1pad,
62e609ab 58 read_batch_urls,
29eb5174 59 sanitize_filename,
a2aaf4db 60 sanitize_path,
befa4708 61 sanitize_url,
51098426 62 expand_path,
a4bcaad7 63 prepend_extension,
b3ed15b7 64 replace_extension,
46bc9b7d
S
65 remove_start,
66 remove_end,
31b2051e 67 remove_quotes,
a6a173c2 68 shell_quote,
29eb5174 69 smuggle_url,
f53c966a 70 str_to_int,
cae97f65 71 strip_jsonp,
29eb5174
PH
72 timeconvert,
73 unescapeHTML,
74 unified_strdate,
46f59e89 75 unified_timestamp,
29eb5174 76 unsmuggle_url,
cae97f65 77 uppercase_escape,
0fe2ff78 78 lowercase_escape,
29eb5174 79 url_basename,
02dc0a36 80 base_url,
e34c3361 81 urljoin,
b74fa8cd 82 urlencode_postdata,
1143535d 83 urshift,
fb640d0a 84 update_url_query,
5f9b8394 85 version_tuple,
cae97f65 86 xpath_with_ns,
87f70ab3 87 xpath_element,
5379a2d4 88 xpath_text,
87f70ab3 89 xpath_attr,
cfb56d1a 90 render_table,
347de493 91 match_str,
bf6427d2
YCH
92 parse_dfxp_time_expr,
93 dfxp2srt,
f7126449
S
94 cli_option,
95 cli_valueless_option,
96 cli_bool_option,
4f3c5e06 97 parse_codecs,
a921f407 98)
36e6f62c 99from youtube_dl.compat import (
8bb56eee 100 compat_chr,
36e6f62c 101 compat_etree_fromstring,
51098426 102 compat_getenv,
dee2ff1d 103 compat_os_name,
51098426 104 compat_setenv,
fb640d0a 105 compat_urlparse,
106 compat_parse_qs,
36e6f62c 107)
44fb3454 108
627dcfff 109
44fb3454 110class TestUtil(unittest.TestCase):
59ae15a5
PH
111 def test_timeconvert(self):
112 self.assertTrue(timeconvert('') is None)
113 self.assertTrue(timeconvert('bougrg') is None)
114
115 def test_sanitize_filename(self):
116 self.assertEqual(sanitize_filename('abc'), 'abc')
117 self.assertEqual(sanitize_filename('abc_d-e'), 'abc_d-e')
118
119 self.assertEqual(sanitize_filename('123'), '123')
120
121 self.assertEqual('abc_de', sanitize_filename('abc/de'))
122 self.assertFalse('/' in sanitize_filename('abc/de///'))
123
124 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de'))
125 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|'))
126 self.assertEqual('yes no', sanitize_filename('yes? no'))
127 self.assertEqual('this - that', sanitize_filename('this: that'))
128
129 self.assertEqual(sanitize_filename('AT&T'), 'AT&T')
4e408e47 130 aumlaut = 'ä'
59ae15a5 131 self.assertEqual(sanitize_filename(aumlaut), aumlaut)
4e408e47 132 tests = '\u043a\u0438\u0440\u0438\u043b\u043b\u0438\u0446\u0430'
59ae15a5
PH
133 self.assertEqual(sanitize_filename(tests), tests)
134
2aeb06d6
PH
135 self.assertEqual(
136 sanitize_filename('New World record at 0:12:34'),
137 'New World record at 0_12_34')
a7440261 138
5a42414b
PH
139 self.assertEqual(sanitize_filename('--gasdgf'), '_-gasdgf')
140 self.assertEqual(sanitize_filename('--gasdgf', is_id=True), '--gasdgf')
a7440261
PH
141 self.assertEqual(sanitize_filename('.gasdgf'), 'gasdgf')
142 self.assertEqual(sanitize_filename('.gasdgf', is_id=True), '.gasdgf')
2aeb06d6 143
59ae15a5
PH
144 forbidden = '"\0\\/'
145 for fc in forbidden:
146 for fbc in forbidden:
147 self.assertTrue(fbc not in sanitize_filename(fc))
148
149 def test_sanitize_filename_restricted(self):
150 self.assertEqual(sanitize_filename('abc', restricted=True), 'abc')
151 self.assertEqual(sanitize_filename('abc_d-e', restricted=True), 'abc_d-e')
152
153 self.assertEqual(sanitize_filename('123', restricted=True), '123')
154
155 self.assertEqual('abc_de', sanitize_filename('abc/de', restricted=True))
156 self.assertFalse('/' in sanitize_filename('abc/de///', restricted=True))
157
158 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de', restricted=True))
159 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|', restricted=True))
160 self.assertEqual('yes_no', sanitize_filename('yes? no', restricted=True))
161 self.assertEqual('this_-_that', sanitize_filename('this: that', restricted=True))
162
79a2e94e
AT
163 tests = 'aäb\u4e2d\u56fd\u7684c'
164 self.assertEqual(sanitize_filename(tests, restricted=True), 'aab_c')
4e408e47 165 self.assertTrue(sanitize_filename('\xf6', restricted=True) != '') # No empty filename
59ae15a5 166
627dcfff 167 forbidden = '"\0\\/&!: \'\t\n()[]{}$;`^,#'
59ae15a5
PH
168 for fc in forbidden:
169 for fbc in forbidden:
170 self.assertTrue(fbc not in sanitize_filename(fc, restricted=True))
171
172 # Handle a common case more neatly
4e408e47
PH
173 self.assertEqual(sanitize_filename('\u5927\u58f0\u5e26 - Song', restricted=True), 'Song')
174 self.assertEqual(sanitize_filename('\u603b\u7edf: Speech', restricted=True), 'Speech')
59ae15a5
PH
175 # .. but make sure the file name is never empty
176 self.assertTrue(sanitize_filename('-', restricted=True) != '')
177 self.assertTrue(sanitize_filename(':', restricted=True) != '')
178
79a2e94e 179 self.assertEqual(sanitize_filename(
b96f007e 180 'ÂÃÄÀÁÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖŐØŒÙÚÛÜŰÝÞßàáâãäåæçèéêëìíîïðñòóôõöőøœùúûüűýþÿ', restricted=True),
181 'AAAAAAAECEEEEIIIIDNOOOOOOOOEUUUUUYPssaaaaaaaeceeeeiiiionooooooooeuuuuuypy')
79a2e94e 182
796173d0 183 def test_sanitize_ids(self):
314d506b
PH
184 self.assertEqual(sanitize_filename('_n_cd26wFpw', is_id=True), '_n_cd26wFpw')
185 self.assertEqual(sanitize_filename('_BD_eEpuzXw', is_id=True), '_BD_eEpuzXw')
186 self.assertEqual(sanitize_filename('N0Y__7-UOdI', is_id=True), 'N0Y__7-UOdI')
796173d0 187
a2aaf4db
S
188 def test_sanitize_path(self):
189 if sys.platform != 'win32':
190 return
191
192 self.assertEqual(sanitize_path('abc'), 'abc')
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 self.assertEqual(sanitize_path('<>:"|?*'), '#######')
197 self.assertEqual(sanitize_path('C:/abc/def'), 'C:\\abc\\def')
198 self.assertEqual(sanitize_path('C?:/abc/def'), 'C##\\abc\\def')
199
200 self.assertEqual(sanitize_path('\\\\?\\UNC\\ComputerName\\abc'), '\\\\?\\UNC\\ComputerName\\abc')
201 self.assertEqual(sanitize_path('\\\\?\\UNC/ComputerName/abc'), '\\\\?\\UNC\\ComputerName\\abc')
202
203 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
204 self.assertEqual(sanitize_path('\\\\?\\C:/abc'), '\\\\?\\C:\\abc')
205 self.assertEqual(sanitize_path('\\\\?\\C:\\ab?c\\de:f'), '\\\\?\\C:\\ab#c\\de#f')
206 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
207
f18ef2d1
S
208 self.assertEqual(
209 sanitize_path('youtube/%(uploader)s/%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s'),
210 'youtube\\%(uploader)s\\%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s')
211
212 self.assertEqual(
213 sanitize_path('youtube/TheWreckingYard ./00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part'),
214 'youtube\\TheWreckingYard #\\00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part')
215 self.assertEqual(sanitize_path('abc/def...'), 'abc\\def..#')
216 self.assertEqual(sanitize_path('abc.../def'), 'abc..#\\def')
217 self.assertEqual(sanitize_path('abc.../def...'), 'abc..#\\def..#')
218
2ebfeaca
S
219 self.assertEqual(sanitize_path('../abc'), '..\\abc')
220 self.assertEqual(sanitize_path('../../abc'), '..\\..\\abc')
221 self.assertEqual(sanitize_path('./abc'), 'abc')
222 self.assertEqual(sanitize_path('./../abc'), '..\\abc')
223
befa4708
S
224 def test_sanitize_url(self):
225 self.assertEqual(sanitize_url('//foo.bar'), 'http://foo.bar')
226 self.assertEqual(sanitize_url('httpss://foo.bar'), 'https://foo.bar')
227 self.assertEqual(sanitize_url('rmtps://foo.bar'), 'rtmps://foo.bar')
228 self.assertEqual(sanitize_url('https://foo.bar'), 'https://foo.bar')
229
51098426 230 def test_expand_path(self):
41c5e60d
S
231 def env(var):
232 return '%{0}%'.format(var) if sys.platform == 'win32' else '${0}'.format(var)
233
a426ef6d
S
234 compat_setenv('YOUTUBE_DL_EXPATH_PATH', 'expanded')
235 self.assertEqual(expand_path(env('YOUTUBE_DL_EXPATH_PATH')), 'expanded')
236 self.assertEqual(expand_path(env('HOME')), compat_getenv('HOME'))
51098426 237 self.assertEqual(expand_path('~'), compat_getenv('HOME'))
41c5e60d 238 self.assertEqual(
a426ef6d 239 expand_path('~/%s' % env('YOUTUBE_DL_EXPATH_PATH')),
41c5e60d 240 '%s/expanded' % compat_getenv('HOME'))
51098426 241
a4bcaad7
S
242 def test_prepend_extension(self):
243 self.assertEqual(prepend_extension('abc.ext', 'temp'), 'abc.temp.ext')
244 self.assertEqual(prepend_extension('abc.ext', 'temp', 'ext'), 'abc.temp.ext')
245 self.assertEqual(prepend_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
246 self.assertEqual(prepend_extension('abc', 'temp'), 'abc.temp')
247 self.assertEqual(prepend_extension('.abc', 'temp'), '.abc.temp')
248 self.assertEqual(prepend_extension('.abc.ext', 'temp'), '.abc.temp.ext')
249
b3ed15b7
S
250 def test_replace_extension(self):
251 self.assertEqual(replace_extension('abc.ext', 'temp'), 'abc.temp')
252 self.assertEqual(replace_extension('abc.ext', 'temp', 'ext'), 'abc.temp')
253 self.assertEqual(replace_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
254 self.assertEqual(replace_extension('abc', 'temp'), 'abc.temp')
255 self.assertEqual(replace_extension('.abc', 'temp'), '.abc.temp')
256 self.assertEqual(replace_extension('.abc.ext', 'temp'), '.abc.temp')
257
46bc9b7d
S
258 def test_remove_start(self):
259 self.assertEqual(remove_start(None, 'A - '), None)
260 self.assertEqual(remove_start('A - B', 'A - '), 'B')
261 self.assertEqual(remove_start('B - A', 'A - '), 'B - A')
262
263 def test_remove_end(self):
264 self.assertEqual(remove_end(None, ' - B'), None)
265 self.assertEqual(remove_end('A - B', ' - B'), 'A')
266 self.assertEqual(remove_end('B - A', ' - B'), 'B - A')
267
31b2051e
S
268 def test_remove_quotes(self):
269 self.assertEqual(remove_quotes(None), None)
270 self.assertEqual(remove_quotes('"'), '"')
271 self.assertEqual(remove_quotes("'"), "'")
272 self.assertEqual(remove_quotes(';'), ';')
273 self.assertEqual(remove_quotes('";'), '";')
274 self.assertEqual(remove_quotes('""'), '')
275 self.assertEqual(remove_quotes('";"'), ';')
276
59ae15a5 277 def test_ordered_set(self):
627dcfff 278 self.assertEqual(orderedSet([1, 1, 2, 3, 4, 4, 5, 6, 7, 3, 5]), [1, 2, 3, 4, 5, 6, 7])
59ae15a5
PH
279 self.assertEqual(orderedSet([]), [])
280 self.assertEqual(orderedSet([1]), [1])
5f6a1245 281 # keep the list ordered
627dcfff 282 self.assertEqual(orderedSet([135, 1, 1, 1]), [135, 1])
59ae15a5
PH
283
284 def test_unescape_html(self):
4e408e47 285 self.assertEqual(unescapeHTML('%20;'), '%20;')
91757b0f
NJ
286 self.assertEqual(unescapeHTML('&#x2F;'), '/')
287 self.assertEqual(unescapeHTML('&#47;'), '/')
7aefc49c
S
288 self.assertEqual(unescapeHTML('&eacute;'), 'é')
289 self.assertEqual(unescapeHTML('&#2013266066;'), '&#2013266066;')
95f3f7c2 290 self.assertEqual(unescapeHTML('&a&quot;'), '&a"')
55b2f099
YCH
291 # HTML5 entities
292 self.assertEqual(unescapeHTML('&period;&apos;'), '.\'')
5f6a1245 293
eb9c3edd
JMF
294 def test_date_from_str(self):
295 self.assertEqual(date_from_str('yesterday'), date_from_str('now-1day'))
296 self.assertEqual(date_from_str('now+7day'), date_from_str('now+1week'))
297 self.assertEqual(date_from_str('now+14day'), date_from_str('now+2week'))
298 self.assertEqual(date_from_str('now+365day'), date_from_str('now+1year'))
299 self.assertEqual(date_from_str('now+30day'), date_from_str('now+1month'))
300
bd558525 301 def test_daterange(self):
5f6a1245 302 _20century = DateRange("19000101", "20000101")
bd558525
JMF
303 self.assertFalse("17890714" in _20century)
304 _ac = DateRange("00010101")
305 self.assertTrue("19690721" in _ac)
306 _firstmilenium = DateRange(end="10000101")
307 self.assertTrue("07110427" in _firstmilenium)
37254abc 308
bf50b038
JMF
309 def test_unified_dates(self):
310 self.assertEqual(unified_strdate('December 21, 2010'), '20101221')
311 self.assertEqual(unified_strdate('8/7/2009'), '20090708')
312 self.assertEqual(unified_strdate('Dec 14, 2012'), '20121214')
313 self.assertEqual(unified_strdate('2012/10/11 01:56:38 +0000'), '20121011')
a69801e2 314 self.assertEqual(unified_strdate('1968 12 10'), '19681210')
026fcc04 315 self.assertEqual(unified_strdate('1968-12-10'), '19681210')
99b67fec 316 self.assertEqual(unified_strdate('28/01/2014 21:00:00 +0100'), '20140128')
42bdd9d0
PH
317 self.assertEqual(
318 unified_strdate('11/26/2014 11:30:00 AM PST', day_first=False),
319 '20141126')
9bb8e0a3
PH
320 self.assertEqual(
321 unified_strdate('2/2/2015 6:47:40 PM', day_first=False),
322 '20150202')
f160785c 323 self.assertEqual(unified_strdate('Feb 14th 2016 5:45PM'), '20160214')
8cf70de4 324 self.assertEqual(unified_strdate('25-09-2014'), '20140925')
46f59e89 325 self.assertEqual(unified_strdate('27.02.2016 17:30'), '20160227')
6a750402 326 self.assertEqual(unified_strdate('UNKNOWN DATE FORMAT'), None)
c6eed6b8 327 self.assertEqual(unified_strdate('Feb 7, 2016 at 6:35 pm'), '20160207')
cb655f34
S
328 self.assertEqual(unified_strdate('July 15th, 2013'), '20130715')
329 self.assertEqual(unified_strdate('September 1st, 2013'), '20130901')
330 self.assertEqual(unified_strdate('Sep 2nd, 2013'), '20130902')
dae7c920 331
46f59e89
S
332 def test_unified_timestamps(self):
333 self.assertEqual(unified_timestamp('December 21, 2010'), 1292889600)
334 self.assertEqual(unified_timestamp('8/7/2009'), 1247011200)
335 self.assertEqual(unified_timestamp('Dec 14, 2012'), 1355443200)
336 self.assertEqual(unified_timestamp('2012/10/11 01:56:38 +0000'), 1349920598)
337 self.assertEqual(unified_timestamp('1968 12 10'), -33436800)
338 self.assertEqual(unified_timestamp('1968-12-10'), -33436800)
339 self.assertEqual(unified_timestamp('28/01/2014 21:00:00 +0100'), 1390939200)
340 self.assertEqual(
341 unified_timestamp('11/26/2014 11:30:00 AM PST', day_first=False),
342 1417001400)
343 self.assertEqual(
344 unified_timestamp('2/2/2015 6:47:40 PM', day_first=False),
345 1422902860)
346 self.assertEqual(unified_timestamp('Feb 14th 2016 5:45PM'), 1455471900)
347 self.assertEqual(unified_timestamp('25-09-2014'), 1411603200)
348 self.assertEqual(unified_timestamp('27.02.2016 17:30'), 1456594200)
349 self.assertEqual(unified_timestamp('UNKNOWN DATE FORMAT'), None)
7dc2a74e 350 self.assertEqual(unified_timestamp('May 16, 2016 11:15 PM'), 1463440500)
c6eed6b8 351 self.assertEqual(unified_timestamp('Feb 7, 2016 at 6:35 pm'), 1454870100)
deef3195 352 self.assertEqual(unified_timestamp('2017-03-30T17:52:41Q'), 1490896361)
2ae2ffda 353 self.assertEqual(unified_timestamp('Sep 11, 2013 | 5:49 AM'), 1378878540)
b555ae9b 354 self.assertEqual(unified_timestamp('December 15, 2017 at 7:49 am'), 1513324140)
46f59e89 355
5035536e
S
356 def test_determine_ext(self):
357 self.assertEqual(determine_ext('http://example.com/foo/bar.mp4/?download'), 'mp4')
358 self.assertEqual(determine_ext('http://example.com/foo/bar/?download', None), None)
9cb9a5df
S
359 self.assertEqual(determine_ext('http://example.com/foo/bar.nonext/?download', None), None)
360 self.assertEqual(determine_ext('http://example.com/foo/bar/mp4?download', None), None)
361 self.assertEqual(determine_ext('http://example.com/foo/bar.m3u8//?download'), 'm3u8')
5035536e 362
59ae56fa 363 def test_find_xpath_attr(self):
4e408e47 364 testxml = '''<root>
59ae56fa
PH
365 <node/>
366 <node x="a"/>
367 <node x="a" y="c" />
368 <node x="b" y="d" />
ee114368 369 <node x="" />
59ae56fa 370 </root>'''
36e6f62c 371 doc = compat_etree_fromstring(testxml)
59ae56fa 372
ee114368 373 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n'), None)
59ae56fa 374 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n', 'v'), None)
ee114368
S
375 self.assertEqual(find_xpath_attr(doc, './/node', 'n'), None)
376 self.assertEqual(find_xpath_attr(doc, './/node', 'n', 'v'), None)
377 self.assertEqual(find_xpath_attr(doc, './/node', 'x'), doc[1])
59ae56fa 378 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'a'), doc[1])
ee114368
S
379 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'b'), doc[3])
380 self.assertEqual(find_xpath_attr(doc, './/node', 'y'), doc[2])
59ae56fa 381 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'c'), doc[2])
ee114368
S
382 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'd'), doc[3])
383 self.assertEqual(find_xpath_attr(doc, './/node', 'x', ''), doc[4])
59ae56fa 384
d7e66d39 385 def test_xpath_with_ns(self):
4e408e47 386 testxml = '''<root xmlns:media="http://example.com/">
d7e66d39
JMF
387 <media:song>
388 <media:author>The Author</media:author>
389 <url>http://server.com/download.mp3</url>
390 </media:song>
391 </root>'''
36e6f62c 392 doc = compat_etree_fromstring(testxml)
d7e66d39
JMF
393 find = lambda p: doc.find(xpath_with_ns(p, {'media': 'http://example.com/'}))
394 self.assertTrue(find('media:song') is not None)
4e408e47
PH
395 self.assertEqual(find('media:song/media:author').text, 'The Author')
396 self.assertEqual(find('media:song/url').text, 'http://server.com/download.mp3')
d7e66d39 397
87f70ab3
S
398 def test_xpath_element(self):
399 doc = xml.etree.ElementTree.Element('root')
400 div = xml.etree.ElementTree.SubElement(doc, 'div')
401 p = xml.etree.ElementTree.SubElement(div, 'p')
402 p.text = 'Foo'
403 self.assertEqual(xpath_element(doc, 'div/p'), p)
578c0745
S
404 self.assertEqual(xpath_element(doc, ['div/p']), p)
405 self.assertEqual(xpath_element(doc, ['div/bar', 'div/p']), p)
87f70ab3 406 self.assertEqual(xpath_element(doc, 'div/bar', default='default'), 'default')
578c0745 407 self.assertEqual(xpath_element(doc, ['div/bar'], default='default'), 'default')
87f70ab3 408 self.assertTrue(xpath_element(doc, 'div/bar') is None)
578c0745
S
409 self.assertTrue(xpath_element(doc, ['div/bar']) is None)
410 self.assertTrue(xpath_element(doc, ['div/bar'], 'div/baz') is None)
87f70ab3 411 self.assertRaises(ExtractorError, xpath_element, doc, 'div/bar', fatal=True)
578c0745
S
412 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar'], fatal=True)
413 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar', 'div/baz'], fatal=True)
87f70ab3 414
5379a2d4
JMF
415 def test_xpath_text(self):
416 testxml = '''<root>
417 <div>
418 <p>Foo</p>
419 </div>
420 </root>'''
36e6f62c 421 doc = compat_etree_fromstring(testxml)
5379a2d4 422 self.assertEqual(xpath_text(doc, 'div/p'), 'Foo')
87f70ab3 423 self.assertEqual(xpath_text(doc, 'div/bar', default='default'), 'default')
5379a2d4
JMF
424 self.assertTrue(xpath_text(doc, 'div/bar') is None)
425 self.assertRaises(ExtractorError, xpath_text, doc, 'div/bar', fatal=True)
426
87f70ab3
S
427 def test_xpath_attr(self):
428 testxml = '''<root>
429 <div>
430 <p x="a">Foo</p>
431 </div>
432 </root>'''
36e6f62c 433 doc = compat_etree_fromstring(testxml)
87f70ab3
S
434 self.assertEqual(xpath_attr(doc, 'div/p', 'x'), 'a')
435 self.assertEqual(xpath_attr(doc, 'div/bar', 'x'), None)
436 self.assertEqual(xpath_attr(doc, 'div/p', 'y'), None)
437 self.assertEqual(xpath_attr(doc, 'div/bar', 'x', default='default'), 'default')
438 self.assertEqual(xpath_attr(doc, 'div/p', 'y', default='default'), 'default')
439 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/bar', 'x', fatal=True)
440 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/p', 'y', fatal=True)
441
9d4660ca 442 def test_smuggle_url(self):
e075a44a 443 data = {"ö": "ö", "abc": [3]}
9d4660ca
PH
444 url = 'https://foo.bar/baz?x=y#a'
445 smug_url = smuggle_url(url, data)
446 unsmug_url, unsmug_data = unsmuggle_url(smug_url)
447 self.assertEqual(url, unsmug_url)
448 self.assertEqual(data, unsmug_data)
449
450 res_url, res_data = unsmuggle_url(url)
451 self.assertEqual(res_url, url)
452 self.assertEqual(res_data, None)
453
dfaa86b7
RA
454 smug_url = smuggle_url(url, {'a': 'b'})
455 smug_smug_url = smuggle_url(smug_url, {'c': 'd'})
456 res_url, res_data = unsmuggle_url(smug_smug_url)
457 self.assertEqual(res_url, url)
458 self.assertEqual(res_data, {'a': 'b', 'c': 'd'})
459
a6a173c2 460 def test_shell_quote(self):
4e408e47 461 args = ['ffmpeg', '-i', encodeFilename('ñ€ß\'.mp4')]
dee2ff1d
S
462 self.assertEqual(
463 shell_quote(args),
464 """ffmpeg -i 'ñ€ß'"'"'.mp4'""" if compat_os_name != 'nt' else '''ffmpeg -i "ñ€ß'.mp4"''')
a6a173c2 465
f53c966a
JMF
466 def test_str_to_int(self):
467 self.assertEqual(str_to_int('123,456'), 123456)
468 self.assertEqual(str_to_int('123.456'), 123456)
469
29eb5174 470 def test_url_basename(self):
4e408e47
PH
471 self.assertEqual(url_basename('http://foo.de/'), '')
472 self.assertEqual(url_basename('http://foo.de/bar/baz'), 'baz')
473 self.assertEqual(url_basename('http://foo.de/bar/baz?x=y'), 'baz')
474 self.assertEqual(url_basename('http://foo.de/bar/baz#x=y'), 'baz')
475 self.assertEqual(url_basename('http://foo.de/bar/baz/'), 'baz')
d6c7a367 476 self.assertEqual(
4e408e47
PH
477 url_basename('http://media.w3.org/2010/05/sintel/trailer.mp4'),
478 'trailer.mp4')
9d4660ca 479
02dc0a36
S
480 def test_base_url(self):
481 self.assertEqual(base_url('http://foo.de/'), 'http://foo.de/')
482 self.assertEqual(base_url('http://foo.de/bar'), 'http://foo.de/')
483 self.assertEqual(base_url('http://foo.de/bar/'), 'http://foo.de/bar/')
484 self.assertEqual(base_url('http://foo.de/bar/baz'), 'http://foo.de/bar/')
485 self.assertEqual(base_url('http://foo.de/bar/baz?x=z/x/c'), 'http://foo.de/bar/')
486
e34c3361
S
487 def test_urljoin(self):
488 self.assertEqual(urljoin('http://foo.de/', '/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
4b5de77b
S
489 self.assertEqual(urljoin(b'http://foo.de/', '/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
490 self.assertEqual(urljoin('http://foo.de/', b'/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
491 self.assertEqual(urljoin(b'http://foo.de/', b'/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
b0c65c67 492 self.assertEqual(urljoin('//foo.de/', '/a/b/c.txt'), '//foo.de/a/b/c.txt')
e34c3361
S
493 self.assertEqual(urljoin('http://foo.de/', 'a/b/c.txt'), 'http://foo.de/a/b/c.txt')
494 self.assertEqual(urljoin('http://foo.de', '/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
495 self.assertEqual(urljoin('http://foo.de', 'a/b/c.txt'), 'http://foo.de/a/b/c.txt')
496 self.assertEqual(urljoin('http://foo.de/', 'http://foo.de/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
b0c65c67 497 self.assertEqual(urljoin('http://foo.de/', '//foo.de/a/b/c.txt'), '//foo.de/a/b/c.txt')
e34c3361 498 self.assertEqual(urljoin(None, 'http://foo.de/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
b0c65c67 499 self.assertEqual(urljoin(None, '//foo.de/a/b/c.txt'), '//foo.de/a/b/c.txt')
e34c3361
S
500 self.assertEqual(urljoin('', 'http://foo.de/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
501 self.assertEqual(urljoin(['foobar'], 'http://foo.de/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
502 self.assertEqual(urljoin('http://foo.de/', None), None)
503 self.assertEqual(urljoin('http://foo.de/', ''), None)
504 self.assertEqual(urljoin('http://foo.de/', ['foobar']), None)
7fe15920 505 self.assertEqual(urljoin('http://foo.de/a/b/c.txt', '.././../d.txt'), 'http://foo.de/d.txt')
e34c3361 506
a8795327
S
507 def test_parse_age_limit(self):
508 self.assertEqual(parse_age_limit(None), None)
509 self.assertEqual(parse_age_limit(False), None)
510 self.assertEqual(parse_age_limit('invalid'), None)
511 self.assertEqual(parse_age_limit(0), 0)
512 self.assertEqual(parse_age_limit(18), 18)
513 self.assertEqual(parse_age_limit(21), 21)
514 self.assertEqual(parse_age_limit(22), None)
515 self.assertEqual(parse_age_limit('18'), 18)
516 self.assertEqual(parse_age_limit('18+'), 18)
517 self.assertEqual(parse_age_limit('PG-13'), 13)
518 self.assertEqual(parse_age_limit('TV-14'), 14)
519 self.assertEqual(parse_age_limit('TV-MA'), 17)
520
608d11f5
PH
521 def test_parse_duration(self):
522 self.assertEqual(parse_duration(None), None)
a5fb718c
S
523 self.assertEqual(parse_duration(False), None)
524 self.assertEqual(parse_duration('invalid'), None)
608d11f5
PH
525 self.assertEqual(parse_duration('1'), 1)
526 self.assertEqual(parse_duration('1337:12'), 80232)
527 self.assertEqual(parse_duration('9:12:43'), 33163)
2db806b4
S
528 self.assertEqual(parse_duration('12:00'), 720)
529 self.assertEqual(parse_duration('00:01:01'), 61)
608d11f5 530 self.assertEqual(parse_duration('x:y'), None)
2db806b4 531 self.assertEqual(parse_duration('3h11m53s'), 11513)
ca7b3246
S
532 self.assertEqual(parse_duration('3h 11m 53s'), 11513)
533 self.assertEqual(parse_duration('3 hours 11 minutes 53 seconds'), 11513)
534 self.assertEqual(parse_duration('3 hours 11 mins 53 secs'), 11513)
2db806b4
S
535 self.assertEqual(parse_duration('62m45s'), 3765)
536 self.assertEqual(parse_duration('6m59s'), 419)
537 self.assertEqual(parse_duration('49s'), 49)
538 self.assertEqual(parse_duration('0h0m0s'), 0)
539 self.assertEqual(parse_duration('0m0s'), 0)
540 self.assertEqual(parse_duration('0s'), 0)
7adcbe75 541 self.assertEqual(parse_duration('01:02:03.05'), 3723.05)
6a68bb57 542 self.assertEqual(parse_duration('T30M38S'), 1838)
e8df5cee
PH
543 self.assertEqual(parse_duration('5 s'), 5)
544 self.assertEqual(parse_duration('3 min'), 180)
545 self.assertEqual(parse_duration('2.5 hours'), 9000)
8f4b58d7
PH
546 self.assertEqual(parse_duration('02:03:04'), 7384)
547 self.assertEqual(parse_duration('01:02:03:04'), 93784)
3e675fab 548 self.assertEqual(parse_duration('1 hour 3 minutes'), 3780)
9c29bc69 549 self.assertEqual(parse_duration('87 Min.'), 5220)
acaff495 550 self.assertEqual(parse_duration('PT1H0.040S'), 3600.04)
15846398 551 self.assertEqual(parse_duration('PT00H03M30SZ'), 210)
056653bb 552 self.assertEqual(parse_duration('P0Y0M0DT0H4M20.880S'), 260.88)
608d11f5 553
5aafe895
PH
554 def test_fix_xml_ampersands(self):
555 self.assertEqual(
556 fix_xml_ampersands('"&x=y&z=a'), '"&amp;x=y&amp;z=a')
557 self.assertEqual(
558 fix_xml_ampersands('"&amp;x=y&wrong;&z=a'),
559 '"&amp;x=y&amp;wrong;&amp;z=a')
560 self.assertEqual(
561 fix_xml_ampersands('&amp;&apos;&gt;&lt;&quot;'),
562 '&amp;&apos;&gt;&lt;&quot;')
563 self.assertEqual(
564 fix_xml_ampersands('&#1234;&#x1abC;'), '&#1234;&#x1abC;')
565 self.assertEqual(fix_xml_ampersands('&#&#'), '&amp;#&amp;#')
566
b7ab0590
PH
567 def test_paged_list(self):
568 def testPL(size, pagesize, sliceargs, expected):
569 def get_page(pagenum):
570 firstid = pagenum * pagesize
571 upto = min(size, pagenum * pagesize + pagesize)
572 for i in range(firstid, upto):
573 yield i
574
9c44d242 575 pl = OnDemandPagedList(get_page, pagesize)
b7ab0590
PH
576 got = pl.getslice(*sliceargs)
577 self.assertEqual(got, expected)
578
9c44d242
PH
579 iapl = InAdvancePagedList(get_page, size // pagesize + 1, pagesize)
580 got = iapl.getslice(*sliceargs)
581 self.assertEqual(got, expected)
582
b7ab0590
PH
583 testPL(5, 2, (), [0, 1, 2, 3, 4])
584 testPL(5, 2, (1,), [1, 2, 3, 4])
585 testPL(5, 2, (2,), [2, 3, 4])
586 testPL(5, 2, (4,), [4])
587 testPL(5, 2, (0, 3), [0, 1, 2])
588 testPL(5, 2, (1, 4), [1, 2, 3])
589 testPL(5, 2, (2, 99), [2, 3, 4])
590 testPL(5, 2, (20, 99), [])
591
62e609ab 592 def test_read_batch_urls(self):
4e408e47 593 f = io.StringIO('''\xef\xbb\xbf foo
62e609ab
PH
594 bar\r
595 baz
596 # More after this line\r
597 ; or after this
598 bam''')
4e408e47 599 self.assertEqual(read_batch_urls(f), ['foo', 'bar', 'baz', 'bam'])
62e609ab 600
b74fa8cd
JMF
601 def test_urlencode_postdata(self):
602 data = urlencode_postdata({'username': 'foo@bar.com', 'password': '1234'})
603 self.assertTrue(isinstance(data, bytes))
604
fb640d0a 605 def test_update_url_query(self):
606 def query_dict(url):
607 return compat_parse_qs(compat_urlparse.urlparse(url).query)
608 self.assertEqual(query_dict(update_url_query(
609 'http://example.com/path', {'quality': ['HD'], 'format': ['mp4']})),
610 query_dict('http://example.com/path?quality=HD&format=mp4'))
611 self.assertEqual(query_dict(update_url_query(
612 'http://example.com/path', {'system': ['LINUX', 'WINDOWS']})),
613 query_dict('http://example.com/path?system=LINUX&system=WINDOWS'))
614 self.assertEqual(query_dict(update_url_query(
615 'http://example.com/path', {'fields': 'id,formats,subtitles'})),
616 query_dict('http://example.com/path?fields=id,formats,subtitles'))
617 self.assertEqual(query_dict(update_url_query(
618 'http://example.com/path', {'fields': ('id,formats,subtitles', 'thumbnails')})),
619 query_dict('http://example.com/path?fields=id,formats,subtitles&fields=thumbnails'))
620 self.assertEqual(query_dict(update_url_query(
621 'http://example.com/path?manifest=f4m', {'manifest': []})),
622 query_dict('http://example.com/path'))
623 self.assertEqual(query_dict(update_url_query(
624 'http://example.com/path?system=LINUX&system=WINDOWS', {'system': 'LINUX'})),
625 query_dict('http://example.com/path?system=LINUX'))
626 self.assertEqual(query_dict(update_url_query(
627 'http://example.com/path', {'fields': b'id,formats,subtitles'})),
628 query_dict('http://example.com/path?fields=id,formats,subtitles'))
3201a67f 629 self.assertEqual(query_dict(update_url_query(
630 'http://example.com/path', {'width': 1080, 'height': 720})),
631 query_dict('http://example.com/path?width=1080&height=720'))
632 self.assertEqual(query_dict(update_url_query(
633 'http://example.com/path', {'bitrate': 5020.43})),
634 query_dict('http://example.com/path?bitrate=5020.43'))
635 self.assertEqual(query_dict(update_url_query(
636 'http://example.com/path', {'test': '第二行тест'})),
637 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 638
0c265486
YCH
639 def test_multipart_encode(self):
640 self.assertEqual(
641 multipart_encode({b'field': b'value'}, boundary='AAAAAA')[0],
642 b'--AAAAAA\r\nContent-Disposition: form-data; name="field"\r\n\r\nvalue\r\n--AAAAAA--\r\n')
643 self.assertEqual(
644 multipart_encode({'欄位'.encode('utf-8'): '值'.encode('utf-8')}, boundary='AAAAAA')[0],
645 b'--AAAAAA\r\nContent-Disposition: form-data; name="\xe6\xac\x84\xe4\xbd\x8d"\r\n\r\n\xe5\x80\xbc\r\n--AAAAAA--\r\n')
646 self.assertRaises(
647 ValueError, multipart_encode, {b'field': b'value'}, boundary='value')
648
cbecc9b9 649 def test_dict_get(self):
86296ad2
S
650 FALSE_VALUES = {
651 'none': None,
652 'false': False,
653 'zero': 0,
654 'empty_string': '',
655 'empty_list': [],
cbecc9b9 656 }
86296ad2
S
657 d = FALSE_VALUES.copy()
658 d['a'] = 42
cbecc9b9
S
659 self.assertEqual(dict_get(d, 'a'), 42)
660 self.assertEqual(dict_get(d, 'b'), None)
661 self.assertEqual(dict_get(d, 'b', 42), 42)
662 self.assertEqual(dict_get(d, ('a', )), 42)
663 self.assertEqual(dict_get(d, ('b', 'a', )), 42)
664 self.assertEqual(dict_get(d, ('b', 'c', 'a', 'd', )), 42)
665 self.assertEqual(dict_get(d, ('b', 'c', )), None)
666 self.assertEqual(dict_get(d, ('b', 'c', ), 42), 42)
86296ad2
S
667 for key, false_value in FALSE_VALUES.items():
668 self.assertEqual(dict_get(d, ('b', 'c', key, )), None)
669 self.assertEqual(dict_get(d, ('b', 'c', key, ), skip_false_values=False), false_value)
cbecc9b9 670
6b77d52b
S
671 def test_encode_compat_str(self):
672 self.assertEqual(encode_compat_str(b'\xd1\x82\xd0\xb5\xd1\x81\xd1\x82', 'utf-8'), 'тест')
673 self.assertEqual(encode_compat_str('тест', 'utf-8'), 'тест')
674
912b38b4
PH
675 def test_parse_iso8601(self):
676 self.assertEqual(parse_iso8601('2014-03-23T23:04:26+0100'), 1395612266)
677 self.assertEqual(parse_iso8601('2014-03-23T22:04:26+0000'), 1395612266)
678 self.assertEqual(parse_iso8601('2014-03-23T22:04:26Z'), 1395612266)
6ad4013d 679 self.assertEqual(parse_iso8601('2014-03-23T22:04:26.1234Z'), 1395612266)
52c3a6e4
S
680 self.assertEqual(parse_iso8601('2015-09-29T08:27:31.727'), 1443515251)
681 self.assertEqual(parse_iso8601('2015-09-29T08-27-31.727'), None)
912b38b4 682
fac55558
PH
683 def test_strip_jsonp(self):
684 stripped = strip_jsonp('cb ([ {"id":"532cb",\n\n\n"x":\n3}\n]\n);')
685 d = json.loads(stripped)
686 self.assertEqual(d, [{"id": "532cb", "x": 3}])
687
609a61e3
PH
688 stripped = strip_jsonp('parseMetadata({"STATUS":"OK"})\n\n\n//epc')
689 d = json.loads(stripped)
690 self.assertEqual(d, {'STATUS': 'OK'})
691
8411229b
S
692 stripped = strip_jsonp('ps.embedHandler({"status": "success"});')
693 d = json.loads(stripped)
694 self.assertEqual(d, {'status': 'success'})
695
5552c9eb
YCH
696 stripped = strip_jsonp('window.cb && window.cb({"status": "success"});')
697 d = json.loads(stripped)
698 self.assertEqual(d, {'status': 'success'})
699
700 stripped = strip_jsonp('window.cb && cb({"status": "success"});')
701 d = json.loads(stripped)
702 self.assertEqual(d, {'status': 'success'})
703
173a7026 704 def test_uppercase_escape(self):
4e408e47
PH
705 self.assertEqual(uppercase_escape('aä'), 'aä')
706 self.assertEqual(uppercase_escape('\\U0001d550'), '𝕐')
fac55558 707
0fe2ff78
YCH
708 def test_lowercase_escape(self):
709 self.assertEqual(lowercase_escape('aä'), 'aä')
710 self.assertEqual(lowercase_escape('\\u0026'), '&')
711
a020a0dc
PH
712 def test_limit_length(self):
713 self.assertEqual(limit_length(None, 12), None)
714 self.assertEqual(limit_length('foo', 12), 'foo')
715 self.assertTrue(
716 limit_length('foo bar baz asd', 12).startswith('foo bar'))
717 self.assertTrue('...' in limit_length('foo bar baz asd', 12))
718
6562d34a
S
719 def test_mimetype2ext(self):
720 self.assertEqual(mimetype2ext(None), None)
721 self.assertEqual(mimetype2ext('video/x-flv'), 'flv')
722 self.assertEqual(mimetype2ext('application/x-mpegURL'), 'm3u8')
723 self.assertEqual(mimetype2ext('text/vtt'), 'vtt')
724 self.assertEqual(mimetype2ext('text/vtt;charset=utf-8'), 'vtt')
725 self.assertEqual(mimetype2ext('text/html; charset=utf-8'), 'html')
726
f6717dec
S
727 def test_month_by_name(self):
728 self.assertEqual(month_by_name(None), None)
729 self.assertEqual(month_by_name('December', 'en'), 12)
3e4185c3 730 self.assertEqual(month_by_name('décembre', 'fr'), 12)
f6717dec 731 self.assertEqual(month_by_name('December'), 12)
3e4185c3 732 self.assertEqual(month_by_name('décembre'), None)
f6717dec
S
733 self.assertEqual(month_by_name('Unknown', 'unknown'), None)
734
4f3c5e06 735 def test_parse_codecs(self):
736 self.assertEqual(parse_codecs(''), {})
737 self.assertEqual(parse_codecs('avc1.77.30, mp4a.40.2'), {
738 'vcodec': 'avc1.77.30',
739 'acodec': 'mp4a.40.2',
740 })
741 self.assertEqual(parse_codecs('mp4a.40.2'), {
742 'vcodec': 'none',
743 'acodec': 'mp4a.40.2',
744 })
745 self.assertEqual(parse_codecs('mp4a.40.5,avc1.42001e'), {
746 'vcodec': 'avc1.42001e',
747 'acodec': 'mp4a.40.5',
748 })
749 self.assertEqual(parse_codecs('avc3.640028'), {
750 'vcodec': 'avc3.640028',
751 'acodec': 'none',
752 })
753 self.assertEqual(parse_codecs(', h264,,newcodec,aac'), {
754 'vcodec': 'h264',
755 'acodec': 'aac',
756 })
757
d05cfe06
S
758 def test_escape_rfc3986(self):
759 reserved = "!*'();:@&=+$,/?#[]"
760 unreserved = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.~'
761 self.assertEqual(escape_rfc3986(reserved), reserved)
762 self.assertEqual(escape_rfc3986(unreserved), unreserved)
763 self.assertEqual(escape_rfc3986('тест'), '%D1%82%D0%B5%D1%81%D1%82')
764 self.assertEqual(escape_rfc3986('%D1%82%D0%B5%D1%81%D1%82'), '%D1%82%D0%B5%D1%81%D1%82')
765 self.assertEqual(escape_rfc3986('foo bar'), 'foo%20bar')
766 self.assertEqual(escape_rfc3986('foo%20bar'), 'foo%20bar')
767
768 def test_escape_url(self):
769 self.assertEqual(
770 escape_url('http://wowza.imust.org/srv/vod/telemb/new/UPLOAD/UPLOAD/20224_IncendieHavré_FD.mp4'),
771 'http://wowza.imust.org/srv/vod/telemb/new/UPLOAD/UPLOAD/20224_IncendieHavre%CC%81_FD.mp4'
772 )
773 self.assertEqual(
774 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'),
775 'http://www.ardmediathek.de/tv/Sturm-der-Liebe/Folge-2036-Zu-Mann-und-Frau-erkl%C3%A4rt/Das-Erste/Video?documentId=22673108&bcastId=5290'
776 )
777 self.assertEqual(
778 escape_url('http://тест.рф/фрагмент'),
2d60465e 779 'http://xn--e1aybc.xn--p1ai/%D1%84%D1%80%D0%B0%D0%B3%D0%BC%D0%B5%D0%BD%D1%82'
d05cfe06
S
780 )
781 self.assertEqual(
782 escape_url('http://тест.рф/абв?абв=абв#абв'),
81f36eba 783 '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
784 )
785 self.assertEqual(escape_url('http://vimeo.com/56015672#at=0'), 'http://vimeo.com/56015672#at=0')
786
e7b6d122 787 def test_js_to_json_realworld(self):
410f3e73 788 inp = '''{
e7b6d122 789 'clip':{'provider':'pseudo'}
410f3e73
PH
790 }'''
791 self.assertEqual(js_to_json(inp), '''{
e7b6d122 792 "clip":{"provider":"pseudo"}
410f3e73
PH
793 }''')
794 json.loads(js_to_json(inp))
795
e7b6d122
PH
796 inp = '''{
797 'playlist':[{'controls':{'all':null}}]
798 }'''
799 self.assertEqual(js_to_json(inp), '''{
800 "playlist":[{"controls":{"all":null}}]
801 }''')
802
d01949dc
S
803 inp = '''"The CW\\'s \\'Crazy Ex-Girlfriend\\'"'''
804 self.assertEqual(js_to_json(inp), '''"The CW's 'Crazy Ex-Girlfriend'"''')
805
d305dd73
PH
806 inp = '"SAND Number: SAND 2013-7800P\\nPresenter: Tom Russo\\nHabanero Software Training - Xyce Software\\nXyce, Sandia\\u0027s"'
807 json_code = js_to_json(inp)
808 self.assertEqual(json.loads(json_code), json.loads(inp))
809
89ac4a19
S
810 inp = '''{
811 0:{src:'skipped', type: 'application/dash+xml'},
812 1:{src:'skipped', type: 'application/vnd.apple.mpegURL'},
813 }'''
814 self.assertEqual(js_to_json(inp), '''{
815 "0":{"src":"skipped", "type": "application/dash+xml"},
816 "1":{"src":"skipped", "type": "application/vnd.apple.mpegURL"}
817 }''')
818
47212f7b
YCH
819 inp = '''{"foo":101}'''
820 self.assertEqual(js_to_json(inp), '''{"foo":101}''')
821
e4659b45
YCH
822 inp = '''{"duration": "00:01:07"}'''
823 self.assertEqual(js_to_json(inp), '''{"duration": "00:01:07"}''')
824
c384d537
MF
825 inp = '''{segments: [{"offset":-3.885780586188048e-16,"duration":39.75000000000001}]}'''
826 self.assertEqual(js_to_json(inp), '''{"segments": [{"offset":-3.885780586188048e-16,"duration":39.75000000000001}]}''')
827
e7b6d122
PH
828 def test_js_to_json_edgecases(self):
829 on = js_to_json("{abc_def:'1\\'\\\\2\\\\\\'3\"4'}")
830 self.assertEqual(json.loads(on), {"abc_def": "1'\\2\\'3\"4"})
831
832 on = js_to_json('{"abc": true}')
833 self.assertEqual(json.loads(on), {'abc': True})
834
8f4b58d7
PH
835 # Ignore JavaScript code as well
836 on = js_to_json('''{
837 "x": 1,
838 y: "a",
839 z: some.code
840 }''')
841 d = json.loads(on)
842 self.assertEqual(d['x'], 1)
843 self.assertEqual(d['y'], 'a')
844
ba9e68f4
S
845 on = js_to_json('["abc", "def",]')
846 self.assertEqual(json.loads(on), ['abc', 'def'])
847
4195096e
S
848 on = js_to_json('[/*comment\n*/"abc"/*comment\n*/,/*comment\n*/"def",/*comment\n*/]')
849 self.assertEqual(json.loads(on), ['abc', 'def'])
850
851 on = js_to_json('[//comment\n"abc" //comment\n,//comment\n"def",//comment\n]')
852 self.assertEqual(json.loads(on), ['abc', 'def'])
853
ba9e68f4
S
854 on = js_to_json('{"abc": "def",}')
855 self.assertEqual(json.loads(on), {'abc': 'def'})
856
4195096e
S
857 on = js_to_json('{/*comment\n*/"abc"/*comment\n*/:/*comment\n*/"def"/*comment\n*/,/*comment\n*/}')
858 self.assertEqual(json.loads(on), {'abc': 'def'})
859
bd1e4844 860 on = js_to_json('{ 0: /* " \n */ ",]" , }')
861 self.assertEqual(json.loads(on), {'0': ',]'})
862
4195096e
S
863 on = js_to_json('{ /*comment\n*/0/*comment\n*/: /* " \n */ ",]" , }')
864 self.assertEqual(json.loads(on), {'0': ',]'})
865
b3ee552e
866 on = js_to_json('{ 0: // comment\n1 }')
867 self.assertEqual(json.loads(on), {'0': 1})
868
bd1e4844 869 on = js_to_json(r'["<p>x<\/p>"]')
870 self.assertEqual(json.loads(on), ['<p>x</p>'])
871
872 on = js_to_json(r'["\xaa"]')
873 self.assertEqual(json.loads(on), ['\u00aa'])
874
875 on = js_to_json("['a\\\nb']")
876 self.assertEqual(json.loads(on), ['ab'])
877
4195096e
S
878 on = js_to_json("/*comment\n*/[/*comment\n*/'a\\\nb'/*comment\n*/]/*comment\n*/")
879 self.assertEqual(json.loads(on), ['ab'])
880
89ac4a19
S
881 on = js_to_json('{0xff:0xff}')
882 self.assertEqual(json.loads(on), {'255': 255})
883
4195096e
S
884 on = js_to_json('{/*comment\n*/0xff/*comment\n*/:/*comment\n*/0xff/*comment\n*/}')
885 self.assertEqual(json.loads(on), {'255': 255})
886
89ac4a19
S
887 on = js_to_json('{077:077}')
888 self.assertEqual(json.loads(on), {'63': 63})
889
4195096e
S
890 on = js_to_json('{/*comment\n*/077/*comment\n*/:/*comment\n*/077/*comment\n*/}')
891 self.assertEqual(json.loads(on), {'63': 63})
892
89ac4a19
S
893 on = js_to_json('{42:42}')
894 self.assertEqual(json.loads(on), {'42': 42})
895
4195096e
S
896 on = js_to_json('{/*comment\n*/42/*comment\n*/:/*comment\n*/42/*comment\n*/}')
897 self.assertEqual(json.loads(on), {'42': 42})
898
c384d537
MF
899 on = js_to_json('{42:4.2e1}')
900 self.assertEqual(json.loads(on), {'42': 42.0})
901
c707b1d8
S
902 def test_js_to_json_malformed(self):
903 self.assertEqual(js_to_json('42a1'), '42"a1"')
904 self.assertEqual(js_to_json('42a-1'), '42"a"-1')
905
8bb56eee
BF
906 def test_extract_attributes(self):
907 self.assertEqual(extract_attributes('<e x="y">'), {'x': 'y'})
908 self.assertEqual(extract_attributes("<e x='y'>"), {'x': 'y'})
909 self.assertEqual(extract_attributes('<e x=y>'), {'x': 'y'})
910 self.assertEqual(extract_attributes('<e x="a \'b\' c">'), {'x': "a 'b' c"})
911 self.assertEqual(extract_attributes('<e x=\'a "b" c\'>'), {'x': 'a "b" c'})
912 self.assertEqual(extract_attributes('<e x="&#121;">'), {'x': 'y'})
913 self.assertEqual(extract_attributes('<e x="&#x79;">'), {'x': 'y'})
914 self.assertEqual(extract_attributes('<e x="&amp;">'), {'x': '&'}) # XML
915 self.assertEqual(extract_attributes('<e x="&quot;">'), {'x': '"'})
c5229f39
S
916 self.assertEqual(extract_attributes('<e x="&pound;">'), {'x': '£'}) # HTML 3.2
917 self.assertEqual(extract_attributes('<e x="&lambda;">'), {'x': 'λ'}) # HTML 4.0
8bb56eee
BF
918 self.assertEqual(extract_attributes('<e x="&foo">'), {'x': '&foo'})
919 self.assertEqual(extract_attributes('<e x="\'">'), {'x': "'"})
920 self.assertEqual(extract_attributes('<e x=\'"\'>'), {'x': '"'})
921 self.assertEqual(extract_attributes('<e x >'), {'x': None})
922 self.assertEqual(extract_attributes('<e x=y a>'), {'x': 'y', 'a': None})
923 self.assertEqual(extract_attributes('<e x= y>'), {'x': 'y'})
924 self.assertEqual(extract_attributes('<e x=1 y=2 x=3>'), {'y': '2', 'x': '3'})
925 self.assertEqual(extract_attributes('<e \nx=\ny\n>'), {'x': 'y'})
926 self.assertEqual(extract_attributes('<e \nx=\n"y"\n>'), {'x': 'y'})
927 self.assertEqual(extract_attributes("<e \nx=\n'y'\n>"), {'x': 'y'})
928 self.assertEqual(extract_attributes('<e \nx="\ny\n">'), {'x': '\ny\n'})
c5229f39 929 self.assertEqual(extract_attributes('<e CAPS=x>'), {'caps': 'x'}) # Names lowercased
8bb56eee
BF
930 self.assertEqual(extract_attributes('<e x=1 X=2>'), {'x': '2'})
931 self.assertEqual(extract_attributes('<e X=1 x=2>'), {'x': '2'})
932 self.assertEqual(extract_attributes('<e _:funny-name1=1>'), {'_:funny-name1': '1'})
933 self.assertEqual(extract_attributes('<e x="Fáilte 世界 \U0001f600">'), {'x': 'Fáilte 世界 \U0001f600'})
934 self.assertEqual(extract_attributes('<e x="décompose&#769;">'), {'x': 'décompose\u0301'})
935 # "Narrow" Python builds don't support unicode code points outside BMP.
936 try:
937 compat_chr(0x10000)
938 supports_outside_bmp = True
939 except ValueError:
940 supports_outside_bmp = False
941 if supports_outside_bmp:
942 self.assertEqual(extract_attributes('<e x="Smile &#128512;!">'), {'x': 'Smile \U0001f600!'})
b4a3d461
S
943 # Malformed HTML should not break attributes extraction on older Python
944 self.assertEqual(extract_attributes('<mal"formed/>'), {})
8bb56eee 945
e4bdb37e
PH
946 def test_clean_html(self):
947 self.assertEqual(clean_html('a:\nb'), 'a: b')
948 self.assertEqual(clean_html('a:\n "b"'), 'a: "b"')
9222d945 949 self.assertEqual(clean_html('a<br>\xa0b'), 'a\nb')
e4bdb37e 950
4c0924bb
PH
951 def test_intlist_to_bytes(self):
952 self.assertEqual(
953 intlist_to_bytes([0, 1, 127, 128, 255]),
954 b'\x00\x01\x7f\x80\xff')
955
7d4111ed
PH
956 def test_args_to_str(self):
957 self.assertEqual(
958 args_to_str(['foo', 'ba/r', '-baz', '2 be', '']),
dee2ff1d 959 'foo ba/r -baz \'2 be\' \'\'' if compat_os_name != 'nt' else 'foo ba/r -baz "2 be" ""'
7d4111ed
PH
960 )
961
be64b5b0
PH
962 def test_parse_filesize(self):
963 self.assertEqual(parse_filesize(None), None)
964 self.assertEqual(parse_filesize(''), None)
965 self.assertEqual(parse_filesize('91 B'), 91)
966 self.assertEqual(parse_filesize('foobar'), None)
967 self.assertEqual(parse_filesize('2 MiB'), 2097152)
968 self.assertEqual(parse_filesize('5 GB'), 5000000000)
969 self.assertEqual(parse_filesize('1.2Tb'), 1200000000000)
13585d76 970 self.assertEqual(parse_filesize('1.2tb'), 1200000000000)
4349c07d 971 self.assertEqual(parse_filesize('1,24 KB'), 1240)
13585d76 972 self.assertEqual(parse_filesize('1,24 kb'), 1240)
70852b47 973 self.assertEqual(parse_filesize('8.5 megabytes'), 8500000)
be64b5b0 974
fb47597b
S
975 def test_parse_count(self):
976 self.assertEqual(parse_count(None), None)
977 self.assertEqual(parse_count(''), None)
978 self.assertEqual(parse_count('0'), 0)
979 self.assertEqual(parse_count('1000'), 1000)
980 self.assertEqual(parse_count('1.000'), 1000)
981 self.assertEqual(parse_count('1.1k'), 1100)
982 self.assertEqual(parse_count('1.1kk'), 1100000)
782b1b5b
JMF
983 self.assertEqual(parse_count('1.1kk '), 1100000)
984 self.assertEqual(parse_count('1.1kk views'), 1100000)
fb47597b 985
b871d7e9
S
986 def test_parse_resolution(self):
987 self.assertEqual(parse_resolution(None), {})
988 self.assertEqual(parse_resolution(''), {})
989 self.assertEqual(parse_resolution('1920x1080'), {'width': 1920, 'height': 1080})
990 self.assertEqual(parse_resolution('1920×1080'), {'width': 1920, 'height': 1080})
991 self.assertEqual(parse_resolution('1920 x 1080'), {'width': 1920, 'height': 1080})
992 self.assertEqual(parse_resolution('720p'), {'height': 720})
993 self.assertEqual(parse_resolution('4k'), {'height': 2160})
994 self.assertEqual(parse_resolution('8K'), {'height': 4320})
995
5f9b8394
PH
996 def test_version_tuple(self):
997 self.assertEqual(version_tuple('1'), (1,))
998 self.assertEqual(version_tuple('10.23.344'), (10, 23, 344))
47d7c642 999 self.assertEqual(version_tuple('10.1-6'), (10, 1, 6)) # avconv style
5f9b8394 1000
cae97f65
PH
1001 def test_detect_exe_version(self):
1002 self.assertEqual(detect_exe_version('''ffmpeg version 1.2.1
1003built on May 27 2013 08:37:26 with gcc 4.7 (Debian 4.7.3-4)
1004configuration: --prefix=/usr --extra-'''), '1.2.1')
1005 self.assertEqual(detect_exe_version('''ffmpeg version N-63176-g1fb4685
1006built on May 15 2014 22:09:06 with gcc 4.8.2 (GCC)'''), 'N-63176-g1fb4685')
1007 self.assertEqual(detect_exe_version('''X server found. dri2 connection failed!
1008Trying to open render node...
1009Success at /dev/dri/renderD128.
1010ffmpeg version 2.4.4 Copyright (c) 2000-2014 the FFmpeg ...'''), '2.4.4')
1011
05900629
PH
1012 def test_age_restricted(self):
1013 self.assertFalse(age_restricted(None, 10)) # unrestricted content
1014 self.assertFalse(age_restricted(1, None)) # unrestricted policy
1015 self.assertFalse(age_restricted(8, 10))
1016 self.assertTrue(age_restricted(18, 14))
1017 self.assertFalse(age_restricted(18, 18))
1018
61ca9a80
PH
1019 def test_is_html(self):
1020 self.assertFalse(is_html(b'\x49\x44\x43<html'))
1021 self.assertTrue(is_html(b'<!DOCTYPE foo>\xaaa'))
1022 self.assertTrue(is_html( # UTF-8 with BOM
1023 b'\xef\xbb\xbf<!DOCTYPE foo>\xaaa'))
1024 self.assertTrue(is_html( # UTF-16-LE
1025 b'\xff\xfe<\x00h\x00t\x00m\x00l\x00>\x00\xe4\x00'
1026 ))
1027 self.assertTrue(is_html( # UTF-16-BE
1028 b'\xfe\xff\x00<\x00h\x00t\x00m\x00l\x00>\x00\xe4'
1029 ))
1030 self.assertTrue(is_html( # UTF-32-BE
1031 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'))
1032 self.assertTrue(is_html( # UTF-32-LE
1033 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'))
1034
cfb56d1a
PH
1035 def test_render_table(self):
1036 self.assertEqual(
1037 render_table(
1038 ['a', 'bcd'],
1039 [[123, 4], [9999, 51]]),
1040 'a bcd\n'
1041 '123 4\n'
1042 '9999 51')
1043
347de493
PH
1044 def test_match_str(self):
1045 self.assertRaises(ValueError, match_str, 'xy>foobar', {})
1046 self.assertFalse(match_str('xy', {'x': 1200}))
1047 self.assertTrue(match_str('!xy', {'x': 1200}))
1048 self.assertTrue(match_str('x', {'x': 1200}))
1049 self.assertFalse(match_str('!x', {'x': 1200}))
1050 self.assertTrue(match_str('x', {'x': 0}))
1051 self.assertFalse(match_str('x>0', {'x': 0}))
1052 self.assertFalse(match_str('x>0', {}))
1053 self.assertTrue(match_str('x>?0', {}))
1054 self.assertTrue(match_str('x>1K', {'x': 1200}))
1055 self.assertFalse(match_str('x>2K', {'x': 1200}))
1056 self.assertTrue(match_str('x>=1200 & x < 1300', {'x': 1200}))
1057 self.assertFalse(match_str('x>=1100 & x < 1200', {'x': 1200}))
1058 self.assertFalse(match_str('y=a212', {'y': 'foobar42'}))
1059 self.assertTrue(match_str('y=foobar42', {'y': 'foobar42'}))
1060 self.assertFalse(match_str('y!=foobar42', {'y': 'foobar42'}))
1061 self.assertTrue(match_str('y!=foobar2', {'y': 'foobar42'}))
1062 self.assertFalse(match_str(
1063 'like_count > 100 & dislike_count <? 50 & description',
1064 {'like_count': 90, 'description': 'foo'}))
1065 self.assertTrue(match_str(
1066 'like_count > 100 & dislike_count <? 50 & description',
1067 {'like_count': 190, 'description': 'foo'}))
1068 self.assertFalse(match_str(
1069 'like_count > 100 & dislike_count <? 50 & description',
1070 {'like_count': 190, 'dislike_count': 60, 'description': 'foo'}))
1071 self.assertFalse(match_str(
1072 'like_count > 100 & dislike_count <? 50 & description',
1073 {'like_count': 190, 'dislike_count': 10}))
1074
bf6427d2 1075 def test_parse_dfxp_time_expr(self):
d631d5f9
YCH
1076 self.assertEqual(parse_dfxp_time_expr(None), None)
1077 self.assertEqual(parse_dfxp_time_expr(''), None)
bf6427d2
YCH
1078 self.assertEqual(parse_dfxp_time_expr('0.1'), 0.1)
1079 self.assertEqual(parse_dfxp_time_expr('0.1s'), 0.1)
1080 self.assertEqual(parse_dfxp_time_expr('00:00:01'), 1.0)
1081 self.assertEqual(parse_dfxp_time_expr('00:00:01.100'), 1.1)
db2fe38b 1082 self.assertEqual(parse_dfxp_time_expr('00:00:01:100'), 1.1)
bf6427d2
YCH
1083
1084 def test_dfxp2srt(self):
1085 dfxp_data = '''<?xml version="1.0" encoding="UTF-8"?>
1086 <tt xmlns="http://www.w3.org/ns/ttml" xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
1087 <body>
1088 <div xml:lang="en">
1089 <p begin="0" end="1">The following line contains Chinese characters and special symbols</p>
1090 <p begin="1" end="2">第二行<br/>♪♪</p>
7dff0363 1091 <p begin="2" dur="1"><span>Third<br/>Line</span></p>
d631d5f9
YCH
1092 <p begin="3" end="-1">Lines with invalid timestamps are ignored</p>
1093 <p begin="-1" end="-1">Ignore, two</p>
1094 <p begin="3" dur="-1">Ignored, three</p>
bf6427d2
YCH
1095 </div>
1096 </body>
3869028f 1097 </tt>'''.encode('utf-8')
bf6427d2
YCH
1098 srt_data = '''1
109900:00:00,000 --> 00:00:01,000
1100The following line contains Chinese characters and special symbols
1101
11022
110300:00:01,000 --> 00:00:02,000
1104第二行
1105♪♪
1106
11073
110800:00:02,000 --> 00:00:03,000
1109Third
1110Line
1111
1112'''
1113 self.assertEqual(dfxp2srt(dfxp_data), srt_data)
1114
1b0427e6
YCH
1115 dfxp_data_no_default_namespace = '''<?xml version="1.0" encoding="UTF-8"?>
1116 <tt xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
1117 <body>
1118 <div xml:lang="en">
1119 <p begin="0" end="1">The first line</p>
1120 </div>
1121 </body>
3869028f 1122 </tt>'''.encode('utf-8')
1b0427e6
YCH
1123 srt_data = '''1
112400:00:00,000 --> 00:00:01,000
1125The first line
1126
1127'''
1128 self.assertEqual(dfxp2srt(dfxp_data_no_default_namespace), srt_data)
1129
5b995f71
RA
1130 dfxp_data_with_style = '''<?xml version="1.0" encoding="utf-8"?>
1131<tt xmlns="http://www.w3.org/2006/10/ttaf1" xmlns:ttp="http://www.w3.org/2006/10/ttaf1#parameter" ttp:timeBase="media" xmlns:tts="http://www.w3.org/2006/10/ttaf1#style" xml:lang="en" xmlns:ttm="http://www.w3.org/2006/10/ttaf1#metadata">
1132 <head>
1133 <styling>
1134 <style id="s2" style="s0" tts:color="cyan" tts:fontWeight="bold" />
1135 <style id="s1" style="s0" tts:color="yellow" tts:fontStyle="italic" />
1136 <style id="s3" style="s0" tts:color="lime" tts:textDecoration="underline" />
1137 <style id="s0" tts:backgroundColor="black" tts:fontStyle="normal" tts:fontSize="16" tts:fontFamily="sansSerif" tts:color="white" />
1138 </styling>
1139 </head>
1140 <body tts:textAlign="center" style="s0">
1141 <div>
1142 <p begin="00:00:02.08" id="p0" end="00:00:05.84">default style<span tts:color="red">custom style</span></p>
1143 <p style="s2" begin="00:00:02.08" id="p0" end="00:00:05.84"><span tts:color="lime">part 1<br /></span><span tts:color="cyan">part 2</span></p>
1144 <p style="s3" begin="00:00:05.84" id="p1" end="00:00:09.56">line 3<br />part 3</p>
1145 <p style="s1" tts:textDecoration="underline" begin="00:00:09.56" id="p2" end="00:00:12.36"><span style="s2" tts:color="lime">inner<br /> </span>style</p>
1146 </div>
1147 </body>
3869028f 1148</tt>'''.encode('utf-8')
5b995f71
RA
1149 srt_data = '''1
115000:00:02,080 --> 00:00:05,839
1151<font color="white" face="sansSerif" size="16">default style<font color="red">custom style</font></font>
1152
11532
115400:00:02,080 --> 00:00:05,839
1155<b><font color="cyan" face="sansSerif" size="16"><font color="lime">part 1
1156</font>part 2</font></b>
1157
11583
115900:00:05,839 --> 00:00:09,560
1160<u><font color="lime">line 3
1161part 3</font></u>
1162
11634
116400:00:09,560 --> 00:00:12,359
1165<i><u><font color="yellow"><font color="lime">inner
1166 </font>style</font></u></i>
1167
1168'''
1169 self.assertEqual(dfxp2srt(dfxp_data_with_style), srt_data)
1170
3869028f
YCH
1171 dfxp_data_non_utf8 = '''<?xml version="1.0" encoding="UTF-16"?>
1172 <tt xmlns="http://www.w3.org/ns/ttml" xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
1173 <body>
1174 <div xml:lang="en">
1175 <p begin="0" end="1">Line 1</p>
1176 <p begin="1" end="2">第二行</p>
1177 </div>
1178 </body>
1179 </tt>'''.encode('utf-16')
1180 srt_data = '''1
118100:00:00,000 --> 00:00:01,000
1182Line 1
1183
11842
118500:00:01,000 --> 00:00:02,000
1186第二行
1187
1188'''
1189 self.assertEqual(dfxp2srt(dfxp_data_non_utf8), srt_data)
1190
f7126449
S
1191 def test_cli_option(self):
1192 self.assertEqual(cli_option({'proxy': '127.0.0.1:3128'}, '--proxy', 'proxy'), ['--proxy', '127.0.0.1:3128'])
1193 self.assertEqual(cli_option({'proxy': None}, '--proxy', 'proxy'), [])
1194 self.assertEqual(cli_option({}, '--proxy', 'proxy'), [])
5f2c2b79 1195 self.assertEqual(cli_option({'retries': 10}, '--retries', 'retries'), ['--retries', '10'])
f7126449
S
1196
1197 def test_cli_valueless_option(self):
1198 self.assertEqual(cli_valueless_option(
1199 {'downloader': 'external'}, '--external-downloader', 'downloader', 'external'), ['--external-downloader'])
1200 self.assertEqual(cli_valueless_option(
1201 {'downloader': 'internal'}, '--external-downloader', 'downloader', 'external'), [])
1202 self.assertEqual(cli_valueless_option(
1203 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'), ['--no-check-certificate'])
1204 self.assertEqual(cli_valueless_option(
1205 {'nocheckcertificate': False}, '--no-check-certificate', 'nocheckcertificate'), [])
1206 self.assertEqual(cli_valueless_option(
1207 {'checkcertificate': True}, '--no-check-certificate', 'checkcertificate', False), [])
1208 self.assertEqual(cli_valueless_option(
1209 {'checkcertificate': False}, '--no-check-certificate', 'checkcertificate', False), ['--no-check-certificate'])
1210
1211 def test_cli_bool_option(self):
1212 self.assertEqual(
1213 cli_bool_option(
1214 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'),
1215 ['--no-check-certificate', 'true'])
1216 self.assertEqual(
1217 cli_bool_option(
1218 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate', separator='='),
1219 ['--no-check-certificate=true'])
1220 self.assertEqual(
1221 cli_bool_option(
1222 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
1223 ['--check-certificate', 'false'])
1224 self.assertEqual(
1225 cli_bool_option(
1226 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
1227 ['--check-certificate=false'])
1228 self.assertEqual(
1229 cli_bool_option(
1230 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
1231 ['--check-certificate', 'true'])
1232 self.assertEqual(
1233 cli_bool_option(
1234 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
1235 ['--check-certificate=true'])
5b232f46
S
1236 self.assertEqual(
1237 cli_bool_option(
1238 {}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
1239 [])
f7126449 1240
5bc880b9
YCH
1241 def test_ohdave_rsa_encrypt(self):
1242 N = 0xab86b6371b5318aaa1d3c9e612a9f1264f372323c8c0f19875b5fc3b3fd3afcc1e5bec527aa94bfa85bffc157e4245aebda05389a5357b75115ac94f074aefcd
1243 e = 65537
1244
1245 self.assertEqual(
1246 ohdave_rsa_encrypt(b'aa111222', e, N),
1247 '726664bd9a23fd0c70f9f1b84aab5e3905ce1e45a584e9cbcf9bcc7510338fc1986d6c599ff990d923aa43c51c0d9013cd572e13bc58f4ae48f2ed8c0b0ba881')
cfb56d1a 1248
f48409c7
YCH
1249 def test_pkcs1pad(self):
1250 data = [1, 2, 3]
1251 padded_data = pkcs1pad(data, 32)
1252 self.assertEqual(padded_data[:2], [0, 2])
1253 self.assertEqual(padded_data[28:], [0, 1, 2, 3])
1254
1255 self.assertRaises(ValueError, pkcs1pad, data, 8)
1256
5eb6bdce
YCH
1257 def test_encode_base_n(self):
1258 self.assertEqual(encode_base_n(0, 30), '0')
1259 self.assertEqual(encode_base_n(80, 30), '2k')
1260
1261 custom_table = '9876543210ZYXWVUTSRQPONMLKJIHGFEDCBA'
1262 self.assertEqual(encode_base_n(0, 30, custom_table), '9')
1263 self.assertEqual(encode_base_n(80, 30, custom_table), '7P')
1264
1265 self.assertRaises(ValueError, encode_base_n, 0, 70)
1266 self.assertRaises(ValueError, encode_base_n, 0, 60, custom_table)
1267
1143535d
YCH
1268 def test_urshift(self):
1269 self.assertEqual(urshift(3, 1), 1)
1270 self.assertEqual(urshift(-3, 1), 2147483646)
1271
84c237fb
YCH
1272 def test_get_element_by_class(self):
1273 html = '''
1274 <span class="foo bar">nice</span>
1275 '''
1276
1277 self.assertEqual(get_element_by_class('foo', html), 'nice')
1278 self.assertEqual(get_element_by_class('no-such-class', html), None)
1279
2af12ad9
TC
1280 def test_get_element_by_attribute(self):
1281 html = '''
1282 <span class="foo bar">nice</span>
1283 '''
1284
1285 self.assertEqual(get_element_by_attribute('class', 'foo bar', html), 'nice')
1286 self.assertEqual(get_element_by_attribute('class', 'foo', html), None)
1287 self.assertEqual(get_element_by_attribute('class', 'no-such-foo', html), None)
1288
609ff8ca
YCH
1289 html = '''
1290 <div itemprop="author" itemscope>foo</div>
1291 '''
1292
1293 self.assertEqual(get_element_by_attribute('itemprop', 'author', html), 'foo')
1294
2af12ad9
TC
1295 def test_get_elements_by_class(self):
1296 html = '''
1297 <span class="foo bar">nice</span><span class="foo bar">also nice</span>
1298 '''
1299
1300 self.assertEqual(get_elements_by_class('foo', html), ['nice', 'also nice'])
1301 self.assertEqual(get_elements_by_class('no-such-class', html), [])
1302
1303 def test_get_elements_by_attribute(self):
1304 html = '''
1305 <span class="foo bar">nice</span><span class="foo bar">also nice</span>
1306 '''
1307
1308 self.assertEqual(get_elements_by_attribute('class', 'foo bar', html), ['nice', 'also nice'])
1309 self.assertEqual(get_elements_by_attribute('class', 'foo', html), [])
1310 self.assertEqual(get_elements_by_attribute('class', 'no-such-foo', html), [])
1311
582be358 1312
dae7c920 1313if __name__ == '__main__':
59ae15a5 1314 unittest.main()