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