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