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