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