]> jfr.im git - yt-dlp.git/blob - test/test_utils.py
[utils] Improve `get_elements_text_and_html_by_attribute` regex (#2280)
[yt-dlp.git] / test / test_utils.py
1 #!/usr/bin/env python3
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 itertools
16 import json
17 import xml.etree.ElementTree
18
19 from yt_dlp.utils import (
20 age_restricted,
21 args_to_str,
22 encode_base_n,
23 caesar,
24 clean_html,
25 clean_podcast_url,
26 Config,
27 date_from_str,
28 datetime_from_str,
29 DateRange,
30 detect_exe_version,
31 determine_ext,
32 dict_get,
33 encode_compat_str,
34 encodeFilename,
35 escape_rfc3986,
36 escape_url,
37 extract_attributes,
38 ExtractorError,
39 find_xpath_attr,
40 fix_xml_ampersands,
41 format_bytes,
42 float_or_none,
43 get_element_by_class,
44 get_element_by_attribute,
45 get_elements_by_class,
46 get_elements_by_attribute,
47 get_element_html_by_class,
48 get_element_html_by_attribute,
49 get_elements_html_by_class,
50 get_elements_html_by_attribute,
51 get_elements_text_and_html_by_attribute,
52 get_element_text_and_html_by_tag,
53 InAdvancePagedList,
54 int_or_none,
55 intlist_to_bytes,
56 is_html,
57 js_to_json,
58 limit_length,
59 merge_dicts,
60 mimetype2ext,
61 month_by_name,
62 multipart_encode,
63 ohdave_rsa_encrypt,
64 OnDemandPagedList,
65 orderedSet,
66 parse_age_limit,
67 parse_duration,
68 parse_filesize,
69 parse_count,
70 parse_iso8601,
71 parse_resolution,
72 parse_bitrate,
73 parse_qs,
74 pkcs1pad,
75 read_batch_urls,
76 sanitize_filename,
77 sanitize_path,
78 sanitize_url,
79 sanitized_Request,
80 expand_path,
81 prepend_extension,
82 replace_extension,
83 remove_start,
84 remove_end,
85 remove_quotes,
86 rot47,
87 shell_quote,
88 smuggle_url,
89 str_to_int,
90 strip_jsonp,
91 strip_or_none,
92 subtitles_filename,
93 timeconvert,
94 unescapeHTML,
95 unified_strdate,
96 unified_timestamp,
97 unsmuggle_url,
98 uppercase_escape,
99 lowercase_escape,
100 url_basename,
101 url_or_none,
102 base_url,
103 urljoin,
104 urlencode_postdata,
105 urshift,
106 update_url_query,
107 version_tuple,
108 xpath_with_ns,
109 xpath_element,
110 xpath_text,
111 xpath_attr,
112 render_table,
113 match_str,
114 parse_dfxp_time_expr,
115 dfxp2srt,
116 cli_option,
117 cli_valueless_option,
118 cli_bool_option,
119 parse_codecs,
120 iri_to_uri,
121 LazyList,
122 )
123 from yt_dlp.compat import (
124 compat_chr,
125 compat_etree_fromstring,
126 compat_getenv,
127 compat_HTMLParseError,
128 compat_os_name,
129 compat_setenv,
130 )
131
132
133 class TestUtil(unittest.TestCase):
134 def test_timeconvert(self):
135 self.assertTrue(timeconvert('') is None)
136 self.assertTrue(timeconvert('bougrg') is None)
137
138 def test_sanitize_filename(self):
139 self.assertEqual(sanitize_filename(''), '')
140 self.assertEqual(sanitize_filename('abc'), 'abc')
141 self.assertEqual(sanitize_filename('abc_d-e'), 'abc_d-e')
142
143 self.assertEqual(sanitize_filename('123'), '123')
144
145 self.assertEqual('abc_de', sanitize_filename('abc/de'))
146 self.assertFalse('/' in sanitize_filename('abc/de///'))
147
148 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de'))
149 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|'))
150 self.assertEqual('yes no', sanitize_filename('yes? no'))
151 self.assertEqual('this - that', sanitize_filename('this: that'))
152
153 self.assertEqual(sanitize_filename('AT&T'), 'AT&T')
154 aumlaut = 'ä'
155 self.assertEqual(sanitize_filename(aumlaut), aumlaut)
156 tests = '\u043a\u0438\u0440\u0438\u043b\u043b\u0438\u0446\u0430'
157 self.assertEqual(sanitize_filename(tests), tests)
158
159 self.assertEqual(
160 sanitize_filename('New World record at 0:12:34'),
161 'New World record at 0_12_34')
162
163 self.assertEqual(sanitize_filename('--gasdgf'), '_-gasdgf')
164 self.assertEqual(sanitize_filename('--gasdgf', is_id=True), '--gasdgf')
165 self.assertEqual(sanitize_filename('.gasdgf'), 'gasdgf')
166 self.assertEqual(sanitize_filename('.gasdgf', is_id=True), '.gasdgf')
167
168 forbidden = '"\0\\/'
169 for fc in forbidden:
170 for fbc in forbidden:
171 self.assertTrue(fbc not in sanitize_filename(fc))
172
173 def test_sanitize_filename_restricted(self):
174 self.assertEqual(sanitize_filename('abc', restricted=True), 'abc')
175 self.assertEqual(sanitize_filename('abc_d-e', restricted=True), 'abc_d-e')
176
177 self.assertEqual(sanitize_filename('123', restricted=True), '123')
178
179 self.assertEqual('abc_de', sanitize_filename('abc/de', restricted=True))
180 self.assertFalse('/' in sanitize_filename('abc/de///', restricted=True))
181
182 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de', restricted=True))
183 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|', restricted=True))
184 self.assertEqual('yes_no', sanitize_filename('yes? no', restricted=True))
185 self.assertEqual('this_-_that', sanitize_filename('this: that', restricted=True))
186
187 tests = 'aäb\u4e2d\u56fd\u7684c'
188 self.assertEqual(sanitize_filename(tests, restricted=True), 'aab_c')
189 self.assertTrue(sanitize_filename('\xf6', restricted=True) != '') # No empty filename
190
191 forbidden = '"\0\\/&!: \'\t\n()[]{}$;`^,#'
192 for fc in forbidden:
193 for fbc in forbidden:
194 self.assertTrue(fbc not in sanitize_filename(fc, restricted=True))
195
196 # Handle a common case more neatly
197 self.assertEqual(sanitize_filename('\u5927\u58f0\u5e26 - Song', restricted=True), 'Song')
198 self.assertEqual(sanitize_filename('\u603b\u7edf: Speech', restricted=True), 'Speech')
199 # .. but make sure the file name is never empty
200 self.assertTrue(sanitize_filename('-', restricted=True) != '')
201 self.assertTrue(sanitize_filename(':', restricted=True) != '')
202
203 self.assertEqual(sanitize_filename(
204 'ÂÃÄÀÁÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖŐØŒÙÚÛÜŰÝÞßàáâãäåæçèéêëìíîïðñòóôõöőøœùúûüűýþÿ', restricted=True),
205 'AAAAAAAECEEEEIIIIDNOOOOOOOOEUUUUUYTHssaaaaaaaeceeeeiiiionooooooooeuuuuuythy')
206
207 def test_sanitize_ids(self):
208 self.assertEqual(sanitize_filename('_n_cd26wFpw', is_id=True), '_n_cd26wFpw')
209 self.assertEqual(sanitize_filename('_BD_eEpuzXw', is_id=True), '_BD_eEpuzXw')
210 self.assertEqual(sanitize_filename('N0Y__7-UOdI', is_id=True), 'N0Y__7-UOdI')
211
212 def test_sanitize_path(self):
213 if sys.platform != 'win32':
214 return
215
216 self.assertEqual(sanitize_path('abc'), 'abc')
217 self.assertEqual(sanitize_path('abc/def'), 'abc\\def')
218 self.assertEqual(sanitize_path('abc\\def'), 'abc\\def')
219 self.assertEqual(sanitize_path('abc|def'), 'abc#def')
220 self.assertEqual(sanitize_path('<>:"|?*'), '#######')
221 self.assertEqual(sanitize_path('C:/abc/def'), 'C:\\abc\\def')
222 self.assertEqual(sanitize_path('C?:/abc/def'), 'C##\\abc\\def')
223
224 self.assertEqual(sanitize_path('\\\\?\\UNC\\ComputerName\\abc'), '\\\\?\\UNC\\ComputerName\\abc')
225 self.assertEqual(sanitize_path('\\\\?\\UNC/ComputerName/abc'), '\\\\?\\UNC\\ComputerName\\abc')
226
227 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
228 self.assertEqual(sanitize_path('\\\\?\\C:/abc'), '\\\\?\\C:\\abc')
229 self.assertEqual(sanitize_path('\\\\?\\C:\\ab?c\\de:f'), '\\\\?\\C:\\ab#c\\de#f')
230 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
231
232 self.assertEqual(
233 sanitize_path('youtube/%(uploader)s/%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s'),
234 'youtube\\%(uploader)s\\%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s')
235
236 self.assertEqual(
237 sanitize_path('youtube/TheWreckingYard ./00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part'),
238 'youtube\\TheWreckingYard #\\00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part')
239 self.assertEqual(sanitize_path('abc/def...'), 'abc\\def..#')
240 self.assertEqual(sanitize_path('abc.../def'), 'abc..#\\def')
241 self.assertEqual(sanitize_path('abc.../def...'), 'abc..#\\def..#')
242
243 self.assertEqual(sanitize_path('../abc'), '..\\abc')
244 self.assertEqual(sanitize_path('../../abc'), '..\\..\\abc')
245 self.assertEqual(sanitize_path('./abc'), 'abc')
246 self.assertEqual(sanitize_path('./../abc'), '..\\abc')
247
248 def test_sanitize_url(self):
249 self.assertEqual(sanitize_url('//foo.bar'), 'http://foo.bar')
250 self.assertEqual(sanitize_url('httpss://foo.bar'), 'https://foo.bar')
251 self.assertEqual(sanitize_url('rmtps://foo.bar'), 'rtmps://foo.bar')
252 self.assertEqual(sanitize_url('https://foo.bar'), 'https://foo.bar')
253 self.assertEqual(sanitize_url('foo bar'), 'foo bar')
254
255 def test_extract_basic_auth(self):
256 auth_header = lambda url: sanitized_Request(url).get_header('Authorization')
257 self.assertFalse(auth_header('http://foo.bar'))
258 self.assertFalse(auth_header('http://:foo.bar'))
259 self.assertEqual(auth_header('http://@foo.bar'), 'Basic Og==')
260 self.assertEqual(auth_header('http://:pass@foo.bar'), 'Basic OnBhc3M=')
261 self.assertEqual(auth_header('http://user:@foo.bar'), 'Basic dXNlcjo=')
262 self.assertEqual(auth_header('http://user:pass@foo.bar'), 'Basic dXNlcjpwYXNz')
263
264 def test_expand_path(self):
265 def env(var):
266 return '%{0}%'.format(var) if sys.platform == 'win32' else '${0}'.format(var)
267
268 compat_setenv('yt_dlp_EXPATH_PATH', 'expanded')
269 self.assertEqual(expand_path(env('yt_dlp_EXPATH_PATH')), 'expanded')
270 self.assertEqual(expand_path(env('HOME')), compat_getenv('HOME'))
271 self.assertEqual(expand_path('~'), compat_getenv('HOME'))
272 self.assertEqual(
273 expand_path('~/%s' % env('yt_dlp_EXPATH_PATH')),
274 '%s/expanded' % compat_getenv('HOME'))
275
276 def test_prepend_extension(self):
277 self.assertEqual(prepend_extension('abc.ext', 'temp'), 'abc.temp.ext')
278 self.assertEqual(prepend_extension('abc.ext', 'temp', 'ext'), 'abc.temp.ext')
279 self.assertEqual(prepend_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
280 self.assertEqual(prepend_extension('abc', 'temp'), 'abc.temp')
281 self.assertEqual(prepend_extension('.abc', 'temp'), '.abc.temp')
282 self.assertEqual(prepend_extension('.abc.ext', 'temp'), '.abc.temp.ext')
283
284 def test_replace_extension(self):
285 self.assertEqual(replace_extension('abc.ext', 'temp'), 'abc.temp')
286 self.assertEqual(replace_extension('abc.ext', 'temp', 'ext'), 'abc.temp')
287 self.assertEqual(replace_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
288 self.assertEqual(replace_extension('abc', 'temp'), 'abc.temp')
289 self.assertEqual(replace_extension('.abc', 'temp'), '.abc.temp')
290 self.assertEqual(replace_extension('.abc.ext', 'temp'), '.abc.temp')
291
292 def test_subtitles_filename(self):
293 self.assertEqual(subtitles_filename('abc.ext', 'en', 'vtt'), 'abc.en.vtt')
294 self.assertEqual(subtitles_filename('abc.ext', 'en', 'vtt', 'ext'), 'abc.en.vtt')
295 self.assertEqual(subtitles_filename('abc.unexpected_ext', 'en', 'vtt', 'ext'), 'abc.unexpected_ext.en.vtt')
296
297 def test_remove_start(self):
298 self.assertEqual(remove_start(None, 'A - '), None)
299 self.assertEqual(remove_start('A - B', 'A - '), 'B')
300 self.assertEqual(remove_start('B - A', 'A - '), 'B - A')
301
302 def test_remove_end(self):
303 self.assertEqual(remove_end(None, ' - B'), None)
304 self.assertEqual(remove_end('A - B', ' - B'), 'A')
305 self.assertEqual(remove_end('B - A', ' - B'), 'B - A')
306
307 def test_remove_quotes(self):
308 self.assertEqual(remove_quotes(None), None)
309 self.assertEqual(remove_quotes('"'), '"')
310 self.assertEqual(remove_quotes("'"), "'")
311 self.assertEqual(remove_quotes(';'), ';')
312 self.assertEqual(remove_quotes('";'), '";')
313 self.assertEqual(remove_quotes('""'), '')
314 self.assertEqual(remove_quotes('";"'), ';')
315
316 def test_ordered_set(self):
317 self.assertEqual(orderedSet([1, 1, 2, 3, 4, 4, 5, 6, 7, 3, 5]), [1, 2, 3, 4, 5, 6, 7])
318 self.assertEqual(orderedSet([]), [])
319 self.assertEqual(orderedSet([1]), [1])
320 # keep the list ordered
321 self.assertEqual(orderedSet([135, 1, 1, 1]), [135, 1])
322
323 def test_unescape_html(self):
324 self.assertEqual(unescapeHTML('%20;'), '%20;')
325 self.assertEqual(unescapeHTML('&#x2F;'), '/')
326 self.assertEqual(unescapeHTML('&#47;'), '/')
327 self.assertEqual(unescapeHTML('&eacute;'), 'é')
328 self.assertEqual(unescapeHTML('&#2013266066;'), '&#2013266066;')
329 self.assertEqual(unescapeHTML('&a&quot;'), '&a"')
330 # HTML5 entities
331 self.assertEqual(unescapeHTML('&period;&apos;'), '.\'')
332
333 def test_date_from_str(self):
334 self.assertEqual(date_from_str('yesterday'), date_from_str('now-1day'))
335 self.assertEqual(date_from_str('now+7day'), date_from_str('now+1week'))
336 self.assertEqual(date_from_str('now+14day'), date_from_str('now+2week'))
337 self.assertEqual(date_from_str('20200229+365day'), date_from_str('20200229+1year'))
338 self.assertEqual(date_from_str('20210131+28day'), date_from_str('20210131+1month'))
339
340 def test_datetime_from_str(self):
341 self.assertEqual(datetime_from_str('yesterday', precision='day'), datetime_from_str('now-1day', precision='auto'))
342 self.assertEqual(datetime_from_str('now+7day', precision='day'), datetime_from_str('now+1week', precision='auto'))
343 self.assertEqual(datetime_from_str('now+14day', precision='day'), datetime_from_str('now+2week', precision='auto'))
344 self.assertEqual(datetime_from_str('20200229+365day', precision='day'), datetime_from_str('20200229+1year', precision='auto'))
345 self.assertEqual(datetime_from_str('20210131+28day', precision='day'), datetime_from_str('20210131+1month', precision='auto'))
346 self.assertEqual(datetime_from_str('20210131+59day', precision='day'), datetime_from_str('20210131+2month', precision='auto'))
347 self.assertEqual(datetime_from_str('now+1day', precision='hour'), datetime_from_str('now+24hours', precision='auto'))
348 self.assertEqual(datetime_from_str('now+23hours', precision='hour'), datetime_from_str('now+23hours', precision='auto'))
349
350 def test_daterange(self):
351 _20century = DateRange("19000101", "20000101")
352 self.assertFalse("17890714" in _20century)
353 _ac = DateRange("00010101")
354 self.assertTrue("19690721" in _ac)
355 _firstmilenium = DateRange(end="10000101")
356 self.assertTrue("07110427" in _firstmilenium)
357
358 def test_unified_dates(self):
359 self.assertEqual(unified_strdate('December 21, 2010'), '20101221')
360 self.assertEqual(unified_strdate('8/7/2009'), '20090708')
361 self.assertEqual(unified_strdate('Dec 14, 2012'), '20121214')
362 self.assertEqual(unified_strdate('2012/10/11 01:56:38 +0000'), '20121011')
363 self.assertEqual(unified_strdate('1968 12 10'), '19681210')
364 self.assertEqual(unified_strdate('1968-12-10'), '19681210')
365 self.assertEqual(unified_strdate('28/01/2014 21:00:00 +0100'), '20140128')
366 self.assertEqual(
367 unified_strdate('11/26/2014 11:30:00 AM PST', day_first=False),
368 '20141126')
369 self.assertEqual(
370 unified_strdate('2/2/2015 6:47:40 PM', day_first=False),
371 '20150202')
372 self.assertEqual(unified_strdate('Feb 14th 2016 5:45PM'), '20160214')
373 self.assertEqual(unified_strdate('25-09-2014'), '20140925')
374 self.assertEqual(unified_strdate('27.02.2016 17:30'), '20160227')
375 self.assertEqual(unified_strdate('UNKNOWN DATE FORMAT'), None)
376 self.assertEqual(unified_strdate('Feb 7, 2016 at 6:35 pm'), '20160207')
377 self.assertEqual(unified_strdate('July 15th, 2013'), '20130715')
378 self.assertEqual(unified_strdate('September 1st, 2013'), '20130901')
379 self.assertEqual(unified_strdate('Sep 2nd, 2013'), '20130902')
380 self.assertEqual(unified_strdate('November 3rd, 2019'), '20191103')
381 self.assertEqual(unified_strdate('October 23rd, 2005'), '20051023')
382
383 def test_unified_timestamps(self):
384 self.assertEqual(unified_timestamp('December 21, 2010'), 1292889600)
385 self.assertEqual(unified_timestamp('8/7/2009'), 1247011200)
386 self.assertEqual(unified_timestamp('Dec 14, 2012'), 1355443200)
387 self.assertEqual(unified_timestamp('2012/10/11 01:56:38 +0000'), 1349920598)
388 self.assertEqual(unified_timestamp('1968 12 10'), -33436800)
389 self.assertEqual(unified_timestamp('1968-12-10'), -33436800)
390 self.assertEqual(unified_timestamp('28/01/2014 21:00:00 +0100'), 1390939200)
391 self.assertEqual(
392 unified_timestamp('11/26/2014 11:30:00 AM PST', day_first=False),
393 1417001400)
394 self.assertEqual(
395 unified_timestamp('2/2/2015 6:47:40 PM', day_first=False),
396 1422902860)
397 self.assertEqual(unified_timestamp('Feb 14th 2016 5:45PM'), 1455471900)
398 self.assertEqual(unified_timestamp('25-09-2014'), 1411603200)
399 self.assertEqual(unified_timestamp('27.02.2016 17:30'), 1456594200)
400 self.assertEqual(unified_timestamp('UNKNOWN DATE FORMAT'), None)
401 self.assertEqual(unified_timestamp('May 16, 2016 11:15 PM'), 1463440500)
402 self.assertEqual(unified_timestamp('Feb 7, 2016 at 6:35 pm'), 1454870100)
403 self.assertEqual(unified_timestamp('2017-03-30T17:52:41Q'), 1490896361)
404 self.assertEqual(unified_timestamp('Sep 11, 2013 | 5:49 AM'), 1378878540)
405 self.assertEqual(unified_timestamp('December 15, 2017 at 7:49 am'), 1513324140)
406 self.assertEqual(unified_timestamp('2018-03-14T08:32:43.1493874+00:00'), 1521016363)
407
408 def test_determine_ext(self):
409 self.assertEqual(determine_ext('http://example.com/foo/bar.mp4/?download'), 'mp4')
410 self.assertEqual(determine_ext('http://example.com/foo/bar/?download', None), None)
411 self.assertEqual(determine_ext('http://example.com/foo/bar.nonext/?download', None), None)
412 self.assertEqual(determine_ext('http://example.com/foo/bar/mp4?download', None), None)
413 self.assertEqual(determine_ext('http://example.com/foo/bar.m3u8//?download'), 'm3u8')
414 self.assertEqual(determine_ext('foobar', None), None)
415
416 def test_find_xpath_attr(self):
417 testxml = '''<root>
418 <node/>
419 <node x="a"/>
420 <node x="a" y="c" />
421 <node x="b" y="d" />
422 <node x="" />
423 </root>'''
424 doc = compat_etree_fromstring(testxml)
425
426 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n'), None)
427 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n', 'v'), None)
428 self.assertEqual(find_xpath_attr(doc, './/node', 'n'), None)
429 self.assertEqual(find_xpath_attr(doc, './/node', 'n', 'v'), None)
430 self.assertEqual(find_xpath_attr(doc, './/node', 'x'), doc[1])
431 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'a'), doc[1])
432 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'b'), doc[3])
433 self.assertEqual(find_xpath_attr(doc, './/node', 'y'), doc[2])
434 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'c'), doc[2])
435 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'd'), doc[3])
436 self.assertEqual(find_xpath_attr(doc, './/node', 'x', ''), doc[4])
437
438 def test_xpath_with_ns(self):
439 testxml = '''<root xmlns:media="http://example.com/">
440 <media:song>
441 <media:author>The Author</media:author>
442 <url>http://server.com/download.mp3</url>
443 </media:song>
444 </root>'''
445 doc = compat_etree_fromstring(testxml)
446 find = lambda p: doc.find(xpath_with_ns(p, {'media': 'http://example.com/'}))
447 self.assertTrue(find('media:song') is not None)
448 self.assertEqual(find('media:song/media:author').text, 'The Author')
449 self.assertEqual(find('media:song/url').text, 'http://server.com/download.mp3')
450
451 def test_xpath_element(self):
452 doc = xml.etree.ElementTree.Element('root')
453 div = xml.etree.ElementTree.SubElement(doc, 'div')
454 p = xml.etree.ElementTree.SubElement(div, 'p')
455 p.text = 'Foo'
456 self.assertEqual(xpath_element(doc, 'div/p'), p)
457 self.assertEqual(xpath_element(doc, ['div/p']), p)
458 self.assertEqual(xpath_element(doc, ['div/bar', 'div/p']), p)
459 self.assertEqual(xpath_element(doc, 'div/bar', default='default'), 'default')
460 self.assertEqual(xpath_element(doc, ['div/bar'], default='default'), 'default')
461 self.assertTrue(xpath_element(doc, 'div/bar') is None)
462 self.assertTrue(xpath_element(doc, ['div/bar']) is None)
463 self.assertTrue(xpath_element(doc, ['div/bar'], 'div/baz') is None)
464 self.assertRaises(ExtractorError, xpath_element, doc, 'div/bar', fatal=True)
465 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar'], fatal=True)
466 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar', 'div/baz'], fatal=True)
467
468 def test_xpath_text(self):
469 testxml = '''<root>
470 <div>
471 <p>Foo</p>
472 </div>
473 </root>'''
474 doc = compat_etree_fromstring(testxml)
475 self.assertEqual(xpath_text(doc, 'div/p'), 'Foo')
476 self.assertEqual(xpath_text(doc, 'div/bar', default='default'), 'default')
477 self.assertTrue(xpath_text(doc, 'div/bar') is None)
478 self.assertRaises(ExtractorError, xpath_text, doc, 'div/bar', fatal=True)
479
480 def test_xpath_attr(self):
481 testxml = '''<root>
482 <div>
483 <p x="a">Foo</p>
484 </div>
485 </root>'''
486 doc = compat_etree_fromstring(testxml)
487 self.assertEqual(xpath_attr(doc, 'div/p', 'x'), 'a')
488 self.assertEqual(xpath_attr(doc, 'div/bar', 'x'), None)
489 self.assertEqual(xpath_attr(doc, 'div/p', 'y'), None)
490 self.assertEqual(xpath_attr(doc, 'div/bar', 'x', default='default'), 'default')
491 self.assertEqual(xpath_attr(doc, 'div/p', 'y', default='default'), 'default')
492 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/bar', 'x', fatal=True)
493 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/p', 'y', fatal=True)
494
495 def test_smuggle_url(self):
496 data = {"ö": "ö", "abc": [3]}
497 url = 'https://foo.bar/baz?x=y#a'
498 smug_url = smuggle_url(url, data)
499 unsmug_url, unsmug_data = unsmuggle_url(smug_url)
500 self.assertEqual(url, unsmug_url)
501 self.assertEqual(data, unsmug_data)
502
503 res_url, res_data = unsmuggle_url(url)
504 self.assertEqual(res_url, url)
505 self.assertEqual(res_data, None)
506
507 smug_url = smuggle_url(url, {'a': 'b'})
508 smug_smug_url = smuggle_url(smug_url, {'c': 'd'})
509 res_url, res_data = unsmuggle_url(smug_smug_url)
510 self.assertEqual(res_url, url)
511 self.assertEqual(res_data, {'a': 'b', 'c': 'd'})
512
513 def test_shell_quote(self):
514 args = ['ffmpeg', '-i', encodeFilename('ñ€ß\'.mp4')]
515 self.assertEqual(
516 shell_quote(args),
517 """ffmpeg -i 'ñ€ß'"'"'.mp4'""" if compat_os_name != 'nt' else '''ffmpeg -i "ñ€ß'.mp4"''')
518
519 def test_float_or_none(self):
520 self.assertEqual(float_or_none('42.42'), 42.42)
521 self.assertEqual(float_or_none('42'), 42.0)
522 self.assertEqual(float_or_none(''), None)
523 self.assertEqual(float_or_none(None), None)
524 self.assertEqual(float_or_none([]), None)
525 self.assertEqual(float_or_none(set()), None)
526
527 def test_int_or_none(self):
528 self.assertEqual(int_or_none('42'), 42)
529 self.assertEqual(int_or_none(''), None)
530 self.assertEqual(int_or_none(None), None)
531 self.assertEqual(int_or_none([]), None)
532 self.assertEqual(int_or_none(set()), None)
533
534 def test_str_to_int(self):
535 self.assertEqual(str_to_int('123,456'), 123456)
536 self.assertEqual(str_to_int('123.456'), 123456)
537 self.assertEqual(str_to_int(523), 523)
538 # Python 3 has no long
539 if sys.version_info < (3, 0):
540 eval('self.assertEqual(str_to_int(123456L), 123456)')
541 self.assertEqual(str_to_int('noninteger'), None)
542 self.assertEqual(str_to_int([]), None)
543
544 def test_url_basename(self):
545 self.assertEqual(url_basename('http://foo.de/'), '')
546 self.assertEqual(url_basename('http://foo.de/bar/baz'), 'baz')
547 self.assertEqual(url_basename('http://foo.de/bar/baz?x=y'), 'baz')
548 self.assertEqual(url_basename('http://foo.de/bar/baz#x=y'), 'baz')
549 self.assertEqual(url_basename('http://foo.de/bar/baz/'), 'baz')
550 self.assertEqual(
551 url_basename('http://media.w3.org/2010/05/sintel/trailer.mp4'),
552 'trailer.mp4')
553
554 def test_base_url(self):
555 self.assertEqual(base_url('http://foo.de/'), 'http://foo.de/')
556 self.assertEqual(base_url('http://foo.de/bar'), 'http://foo.de/')
557 self.assertEqual(base_url('http://foo.de/bar/'), 'http://foo.de/bar/')
558 self.assertEqual(base_url('http://foo.de/bar/baz'), 'http://foo.de/bar/')
559 self.assertEqual(base_url('http://foo.de/bar/baz?x=z/x/c'), 'http://foo.de/bar/')
560
561 def test_urljoin(self):
562 self.assertEqual(urljoin('http://foo.de/', '/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
563 self.assertEqual(urljoin(b'http://foo.de/', '/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
564 self.assertEqual(urljoin('http://foo.de/', b'/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
565 self.assertEqual(urljoin(b'http://foo.de/', b'/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
566 self.assertEqual(urljoin('//foo.de/', '/a/b/c.txt'), '//foo.de/a/b/c.txt')
567 self.assertEqual(urljoin('http://foo.de/', 'a/b/c.txt'), 'http://foo.de/a/b/c.txt')
568 self.assertEqual(urljoin('http://foo.de', '/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
569 self.assertEqual(urljoin('http://foo.de', 'a/b/c.txt'), 'http://foo.de/a/b/c.txt')
570 self.assertEqual(urljoin('http://foo.de/', 'http://foo.de/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
571 self.assertEqual(urljoin('http://foo.de/', '//foo.de/a/b/c.txt'), '//foo.de/a/b/c.txt')
572 self.assertEqual(urljoin(None, 'http://foo.de/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
573 self.assertEqual(urljoin(None, '//foo.de/a/b/c.txt'), '//foo.de/a/b/c.txt')
574 self.assertEqual(urljoin('', 'http://foo.de/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
575 self.assertEqual(urljoin(['foobar'], 'http://foo.de/a/b/c.txt'), 'http://foo.de/a/b/c.txt')
576 self.assertEqual(urljoin('http://foo.de/', None), None)
577 self.assertEqual(urljoin('http://foo.de/', ''), None)
578 self.assertEqual(urljoin('http://foo.de/', ['foobar']), None)
579 self.assertEqual(urljoin('http://foo.de/a/b/c.txt', '.././../d.txt'), 'http://foo.de/d.txt')
580 self.assertEqual(urljoin('http://foo.de/a/b/c.txt', 'rtmp://foo.de'), 'rtmp://foo.de')
581 self.assertEqual(urljoin(None, 'rtmp://foo.de'), 'rtmp://foo.de')
582
583 def test_url_or_none(self):
584 self.assertEqual(url_or_none(None), None)
585 self.assertEqual(url_or_none(''), None)
586 self.assertEqual(url_or_none('foo'), None)
587 self.assertEqual(url_or_none('http://foo.de'), 'http://foo.de')
588 self.assertEqual(url_or_none('https://foo.de'), 'https://foo.de')
589 self.assertEqual(url_or_none('http$://foo.de'), None)
590 self.assertEqual(url_or_none('http://foo.de'), 'http://foo.de')
591 self.assertEqual(url_or_none('//foo.de'), '//foo.de')
592 self.assertEqual(url_or_none('s3://foo.de'), None)
593 self.assertEqual(url_or_none('rtmpte://foo.de'), 'rtmpte://foo.de')
594 self.assertEqual(url_or_none('mms://foo.de'), 'mms://foo.de')
595 self.assertEqual(url_or_none('rtspu://foo.de'), 'rtspu://foo.de')
596 self.assertEqual(url_or_none('ftps://foo.de'), 'ftps://foo.de')
597
598 def test_parse_age_limit(self):
599 self.assertEqual(parse_age_limit(None), None)
600 self.assertEqual(parse_age_limit(False), None)
601 self.assertEqual(parse_age_limit('invalid'), None)
602 self.assertEqual(parse_age_limit(0), 0)
603 self.assertEqual(parse_age_limit(18), 18)
604 self.assertEqual(parse_age_limit(21), 21)
605 self.assertEqual(parse_age_limit(22), None)
606 self.assertEqual(parse_age_limit('18'), 18)
607 self.assertEqual(parse_age_limit('18+'), 18)
608 self.assertEqual(parse_age_limit('PG-13'), 13)
609 self.assertEqual(parse_age_limit('TV-14'), 14)
610 self.assertEqual(parse_age_limit('TV-MA'), 17)
611 self.assertEqual(parse_age_limit('TV14'), 14)
612 self.assertEqual(parse_age_limit('TV_G'), 0)
613
614 def test_parse_duration(self):
615 self.assertEqual(parse_duration(None), None)
616 self.assertEqual(parse_duration(False), None)
617 self.assertEqual(parse_duration('invalid'), None)
618 self.assertEqual(parse_duration('1'), 1)
619 self.assertEqual(parse_duration('1337:12'), 80232)
620 self.assertEqual(parse_duration('9:12:43'), 33163)
621 self.assertEqual(parse_duration('12:00'), 720)
622 self.assertEqual(parse_duration('00:01:01'), 61)
623 self.assertEqual(parse_duration('x:y'), None)
624 self.assertEqual(parse_duration('3h11m53s'), 11513)
625 self.assertEqual(parse_duration('3h 11m 53s'), 11513)
626 self.assertEqual(parse_duration('3 hours 11 minutes 53 seconds'), 11513)
627 self.assertEqual(parse_duration('3 hours 11 mins 53 secs'), 11513)
628 self.assertEqual(parse_duration('62m45s'), 3765)
629 self.assertEqual(parse_duration('6m59s'), 419)
630 self.assertEqual(parse_duration('49s'), 49)
631 self.assertEqual(parse_duration('0h0m0s'), 0)
632 self.assertEqual(parse_duration('0m0s'), 0)
633 self.assertEqual(parse_duration('0s'), 0)
634 self.assertEqual(parse_duration('01:02:03.05'), 3723.05)
635 self.assertEqual(parse_duration('T30M38S'), 1838)
636 self.assertEqual(parse_duration('5 s'), 5)
637 self.assertEqual(parse_duration('3 min'), 180)
638 self.assertEqual(parse_duration('2.5 hours'), 9000)
639 self.assertEqual(parse_duration('02:03:04'), 7384)
640 self.assertEqual(parse_duration('01:02:03:04'), 93784)
641 self.assertEqual(parse_duration('1 hour 3 minutes'), 3780)
642 self.assertEqual(parse_duration('87 Min.'), 5220)
643 self.assertEqual(parse_duration('PT1H0.040S'), 3600.04)
644 self.assertEqual(parse_duration('PT00H03M30SZ'), 210)
645 self.assertEqual(parse_duration('P0Y0M0DT0H4M20.880S'), 260.88)
646
647 def test_fix_xml_ampersands(self):
648 self.assertEqual(
649 fix_xml_ampersands('"&x=y&z=a'), '"&amp;x=y&amp;z=a')
650 self.assertEqual(
651 fix_xml_ampersands('"&amp;x=y&wrong;&z=a'),
652 '"&amp;x=y&amp;wrong;&amp;z=a')
653 self.assertEqual(
654 fix_xml_ampersands('&amp;&apos;&gt;&lt;&quot;'),
655 '&amp;&apos;&gt;&lt;&quot;')
656 self.assertEqual(
657 fix_xml_ampersands('&#1234;&#x1abC;'), '&#1234;&#x1abC;')
658 self.assertEqual(fix_xml_ampersands('&#&#'), '&amp;#&amp;#')
659
660 def test_paged_list(self):
661 def testPL(size, pagesize, sliceargs, expected):
662 def get_page(pagenum):
663 firstid = pagenum * pagesize
664 upto = min(size, pagenum * pagesize + pagesize)
665 for i in range(firstid, upto):
666 yield i
667
668 pl = OnDemandPagedList(get_page, pagesize)
669 got = pl.getslice(*sliceargs)
670 self.assertEqual(got, expected)
671
672 iapl = InAdvancePagedList(get_page, size // pagesize + 1, pagesize)
673 got = iapl.getslice(*sliceargs)
674 self.assertEqual(got, expected)
675
676 testPL(5, 2, (), [0, 1, 2, 3, 4])
677 testPL(5, 2, (1,), [1, 2, 3, 4])
678 testPL(5, 2, (2,), [2, 3, 4])
679 testPL(5, 2, (4,), [4])
680 testPL(5, 2, (0, 3), [0, 1, 2])
681 testPL(5, 2, (1, 4), [1, 2, 3])
682 testPL(5, 2, (2, 99), [2, 3, 4])
683 testPL(5, 2, (20, 99), [])
684
685 def test_read_batch_urls(self):
686 f = io.StringIO('''\xef\xbb\xbf foo
687 bar\r
688 baz
689 # More after this line\r
690 ; or after this
691 bam''')
692 self.assertEqual(read_batch_urls(f), ['foo', 'bar', 'baz', 'bam'])
693
694 def test_urlencode_postdata(self):
695 data = urlencode_postdata({'username': 'foo@bar.com', 'password': '1234'})
696 self.assertTrue(isinstance(data, bytes))
697
698 def test_update_url_query(self):
699 self.assertEqual(parse_qs(update_url_query(
700 'http://example.com/path', {'quality': ['HD'], 'format': ['mp4']})),
701 parse_qs('http://example.com/path?quality=HD&format=mp4'))
702 self.assertEqual(parse_qs(update_url_query(
703 'http://example.com/path', {'system': ['LINUX', 'WINDOWS']})),
704 parse_qs('http://example.com/path?system=LINUX&system=WINDOWS'))
705 self.assertEqual(parse_qs(update_url_query(
706 'http://example.com/path', {'fields': 'id,formats,subtitles'})),
707 parse_qs('http://example.com/path?fields=id,formats,subtitles'))
708 self.assertEqual(parse_qs(update_url_query(
709 'http://example.com/path', {'fields': ('id,formats,subtitles', 'thumbnails')})),
710 parse_qs('http://example.com/path?fields=id,formats,subtitles&fields=thumbnails'))
711 self.assertEqual(parse_qs(update_url_query(
712 'http://example.com/path?manifest=f4m', {'manifest': []})),
713 parse_qs('http://example.com/path'))
714 self.assertEqual(parse_qs(update_url_query(
715 'http://example.com/path?system=LINUX&system=WINDOWS', {'system': 'LINUX'})),
716 parse_qs('http://example.com/path?system=LINUX'))
717 self.assertEqual(parse_qs(update_url_query(
718 'http://example.com/path', {'fields': b'id,formats,subtitles'})),
719 parse_qs('http://example.com/path?fields=id,formats,subtitles'))
720 self.assertEqual(parse_qs(update_url_query(
721 'http://example.com/path', {'width': 1080, 'height': 720})),
722 parse_qs('http://example.com/path?width=1080&height=720'))
723 self.assertEqual(parse_qs(update_url_query(
724 'http://example.com/path', {'bitrate': 5020.43})),
725 parse_qs('http://example.com/path?bitrate=5020.43'))
726 self.assertEqual(parse_qs(update_url_query(
727 'http://example.com/path', {'test': '第二行тест'})),
728 parse_qs('http://example.com/path?test=%E7%AC%AC%E4%BA%8C%E8%A1%8C%D1%82%D0%B5%D1%81%D1%82'))
729
730 def test_multipart_encode(self):
731 self.assertEqual(
732 multipart_encode({b'field': b'value'}, boundary='AAAAAA')[0],
733 b'--AAAAAA\r\nContent-Disposition: form-data; name="field"\r\n\r\nvalue\r\n--AAAAAA--\r\n')
734 self.assertEqual(
735 multipart_encode({'欄位'.encode('utf-8'): '值'.encode('utf-8')}, boundary='AAAAAA')[0],
736 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')
737 self.assertRaises(
738 ValueError, multipart_encode, {b'field': b'value'}, boundary='value')
739
740 def test_dict_get(self):
741 FALSE_VALUES = {
742 'none': None,
743 'false': False,
744 'zero': 0,
745 'empty_string': '',
746 'empty_list': [],
747 }
748 d = FALSE_VALUES.copy()
749 d['a'] = 42
750 self.assertEqual(dict_get(d, 'a'), 42)
751 self.assertEqual(dict_get(d, 'b'), None)
752 self.assertEqual(dict_get(d, 'b', 42), 42)
753 self.assertEqual(dict_get(d, ('a', )), 42)
754 self.assertEqual(dict_get(d, ('b', 'a', )), 42)
755 self.assertEqual(dict_get(d, ('b', 'c', 'a', 'd', )), 42)
756 self.assertEqual(dict_get(d, ('b', 'c', )), None)
757 self.assertEqual(dict_get(d, ('b', 'c', ), 42), 42)
758 for key, false_value in FALSE_VALUES.items():
759 self.assertEqual(dict_get(d, ('b', 'c', key, )), None)
760 self.assertEqual(dict_get(d, ('b', 'c', key, ), skip_false_values=False), false_value)
761
762 def test_merge_dicts(self):
763 self.assertEqual(merge_dicts({'a': 1}, {'b': 2}), {'a': 1, 'b': 2})
764 self.assertEqual(merge_dicts({'a': 1}, {'a': 2}), {'a': 1})
765 self.assertEqual(merge_dicts({'a': 1}, {'a': None}), {'a': 1})
766 self.assertEqual(merge_dicts({'a': 1}, {'a': ''}), {'a': 1})
767 self.assertEqual(merge_dicts({'a': 1}, {}), {'a': 1})
768 self.assertEqual(merge_dicts({'a': None}, {'a': 1}), {'a': 1})
769 self.assertEqual(merge_dicts({'a': ''}, {'a': 1}), {'a': ''})
770 self.assertEqual(merge_dicts({'a': ''}, {'a': 'abc'}), {'a': 'abc'})
771 self.assertEqual(merge_dicts({'a': None}, {'a': ''}, {'a': 'abc'}), {'a': 'abc'})
772
773 def test_encode_compat_str(self):
774 self.assertEqual(encode_compat_str(b'\xd1\x82\xd0\xb5\xd1\x81\xd1\x82', 'utf-8'), 'тест')
775 self.assertEqual(encode_compat_str('тест', 'utf-8'), 'тест')
776
777 def test_parse_iso8601(self):
778 self.assertEqual(parse_iso8601('2014-03-23T23:04:26+0100'), 1395612266)
779 self.assertEqual(parse_iso8601('2014-03-23T22:04:26+0000'), 1395612266)
780 self.assertEqual(parse_iso8601('2014-03-23T22:04:26Z'), 1395612266)
781 self.assertEqual(parse_iso8601('2014-03-23T22:04:26.1234Z'), 1395612266)
782 self.assertEqual(parse_iso8601('2015-09-29T08:27:31.727'), 1443515251)
783 self.assertEqual(parse_iso8601('2015-09-29T08-27-31.727'), None)
784
785 def test_strip_jsonp(self):
786 stripped = strip_jsonp('cb ([ {"id":"532cb",\n\n\n"x":\n3}\n]\n);')
787 d = json.loads(stripped)
788 self.assertEqual(d, [{"id": "532cb", "x": 3}])
789
790 stripped = strip_jsonp('parseMetadata({"STATUS":"OK"})\n\n\n//epc')
791 d = json.loads(stripped)
792 self.assertEqual(d, {'STATUS': 'OK'})
793
794 stripped = strip_jsonp('ps.embedHandler({"status": "success"});')
795 d = json.loads(stripped)
796 self.assertEqual(d, {'status': 'success'})
797
798 stripped = strip_jsonp('window.cb && window.cb({"status": "success"});')
799 d = json.loads(stripped)
800 self.assertEqual(d, {'status': 'success'})
801
802 stripped = strip_jsonp('window.cb && cb({"status": "success"});')
803 d = json.loads(stripped)
804 self.assertEqual(d, {'status': 'success'})
805
806 stripped = strip_jsonp('({"status": "success"});')
807 d = json.loads(stripped)
808 self.assertEqual(d, {'status': 'success'})
809
810 def test_strip_or_none(self):
811 self.assertEqual(strip_or_none(' abc'), 'abc')
812 self.assertEqual(strip_or_none('abc '), 'abc')
813 self.assertEqual(strip_or_none(' abc '), 'abc')
814 self.assertEqual(strip_or_none('\tabc\t'), 'abc')
815 self.assertEqual(strip_or_none('\n\tabc\n\t'), 'abc')
816 self.assertEqual(strip_or_none('abc'), 'abc')
817 self.assertEqual(strip_or_none(''), '')
818 self.assertEqual(strip_or_none(None), None)
819 self.assertEqual(strip_or_none(42), None)
820 self.assertEqual(strip_or_none([]), None)
821
822 def test_uppercase_escape(self):
823 self.assertEqual(uppercase_escape('aä'), 'aä')
824 self.assertEqual(uppercase_escape('\\U0001d550'), '𝕐')
825
826 def test_lowercase_escape(self):
827 self.assertEqual(lowercase_escape('aä'), 'aä')
828 self.assertEqual(lowercase_escape('\\u0026'), '&')
829
830 def test_limit_length(self):
831 self.assertEqual(limit_length(None, 12), None)
832 self.assertEqual(limit_length('foo', 12), 'foo')
833 self.assertTrue(
834 limit_length('foo bar baz asd', 12).startswith('foo bar'))
835 self.assertTrue('...' in limit_length('foo bar baz asd', 12))
836
837 def test_mimetype2ext(self):
838 self.assertEqual(mimetype2ext(None), None)
839 self.assertEqual(mimetype2ext('video/x-flv'), 'flv')
840 self.assertEqual(mimetype2ext('application/x-mpegURL'), 'm3u8')
841 self.assertEqual(mimetype2ext('text/vtt'), 'vtt')
842 self.assertEqual(mimetype2ext('text/vtt;charset=utf-8'), 'vtt')
843 self.assertEqual(mimetype2ext('text/html; charset=utf-8'), 'html')
844 self.assertEqual(mimetype2ext('audio/x-wav'), 'wav')
845 self.assertEqual(mimetype2ext('audio/x-wav;codec=pcm'), 'wav')
846
847 def test_month_by_name(self):
848 self.assertEqual(month_by_name(None), None)
849 self.assertEqual(month_by_name('December', 'en'), 12)
850 self.assertEqual(month_by_name('décembre', 'fr'), 12)
851 self.assertEqual(month_by_name('December'), 12)
852 self.assertEqual(month_by_name('décembre'), None)
853 self.assertEqual(month_by_name('Unknown', 'unknown'), None)
854
855 def test_parse_codecs(self):
856 self.assertEqual(parse_codecs(''), {})
857 self.assertEqual(parse_codecs('avc1.77.30, mp4a.40.2'), {
858 'vcodec': 'avc1.77.30',
859 'acodec': 'mp4a.40.2',
860 'dynamic_range': None,
861 })
862 self.assertEqual(parse_codecs('mp4a.40.2'), {
863 'vcodec': 'none',
864 'acodec': 'mp4a.40.2',
865 'dynamic_range': None,
866 })
867 self.assertEqual(parse_codecs('mp4a.40.5,avc1.42001e'), {
868 'vcodec': 'avc1.42001e',
869 'acodec': 'mp4a.40.5',
870 'dynamic_range': None,
871 })
872 self.assertEqual(parse_codecs('avc3.640028'), {
873 'vcodec': 'avc3.640028',
874 'acodec': 'none',
875 'dynamic_range': None,
876 })
877 self.assertEqual(parse_codecs(', h264,,newcodec,aac'), {
878 'vcodec': 'h264',
879 'acodec': 'aac',
880 'dynamic_range': None,
881 })
882 self.assertEqual(parse_codecs('av01.0.05M.08'), {
883 'vcodec': 'av01.0.05M.08',
884 'acodec': 'none',
885 'dynamic_range': None,
886 })
887 self.assertEqual(parse_codecs('vp9.2'), {
888 'vcodec': 'vp9.2',
889 'acodec': 'none',
890 'dynamic_range': 'HDR10',
891 })
892 self.assertEqual(parse_codecs('av01.0.12M.10.0.110.09.16.09.0'), {
893 'vcodec': 'av01.0.12M.10',
894 'acodec': 'none',
895 'dynamic_range': 'HDR10',
896 })
897 self.assertEqual(parse_codecs('dvhe'), {
898 'vcodec': 'dvhe',
899 'acodec': 'none',
900 'dynamic_range': 'DV',
901 })
902 self.assertEqual(parse_codecs('theora, vorbis'), {
903 'vcodec': 'theora',
904 'acodec': 'vorbis',
905 'dynamic_range': None,
906 })
907 self.assertEqual(parse_codecs('unknownvcodec, unknownacodec'), {
908 'vcodec': 'unknownvcodec',
909 'acodec': 'unknownacodec',
910 })
911 self.assertEqual(parse_codecs('unknown'), {})
912
913 def test_escape_rfc3986(self):
914 reserved = "!*'();:@&=+$,/?#[]"
915 unreserved = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.~'
916 self.assertEqual(escape_rfc3986(reserved), reserved)
917 self.assertEqual(escape_rfc3986(unreserved), unreserved)
918 self.assertEqual(escape_rfc3986('тест'), '%D1%82%D0%B5%D1%81%D1%82')
919 self.assertEqual(escape_rfc3986('%D1%82%D0%B5%D1%81%D1%82'), '%D1%82%D0%B5%D1%81%D1%82')
920 self.assertEqual(escape_rfc3986('foo bar'), 'foo%20bar')
921 self.assertEqual(escape_rfc3986('foo%20bar'), 'foo%20bar')
922
923 def test_escape_url(self):
924 self.assertEqual(
925 escape_url('http://wowza.imust.org/srv/vod/telemb/new/UPLOAD/UPLOAD/20224_IncendieHavré_FD.mp4'),
926 'http://wowza.imust.org/srv/vod/telemb/new/UPLOAD/UPLOAD/20224_IncendieHavre%CC%81_FD.mp4'
927 )
928 self.assertEqual(
929 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'),
930 'http://www.ardmediathek.de/tv/Sturm-der-Liebe/Folge-2036-Zu-Mann-und-Frau-erkl%C3%A4rt/Das-Erste/Video?documentId=22673108&bcastId=5290'
931 )
932 self.assertEqual(
933 escape_url('http://тест.рф/фрагмент'),
934 'http://xn--e1aybc.xn--p1ai/%D1%84%D1%80%D0%B0%D0%B3%D0%BC%D0%B5%D0%BD%D1%82'
935 )
936 self.assertEqual(
937 escape_url('http://тест.рф/абв?абв=абв#абв'),
938 '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'
939 )
940 self.assertEqual(escape_url('http://vimeo.com/56015672#at=0'), 'http://vimeo.com/56015672#at=0')
941
942 def test_js_to_json_realworld(self):
943 inp = '''{
944 'clip':{'provider':'pseudo'}
945 }'''
946 self.assertEqual(js_to_json(inp), '''{
947 "clip":{"provider":"pseudo"}
948 }''')
949 json.loads(js_to_json(inp))
950
951 inp = '''{
952 'playlist':[{'controls':{'all':null}}]
953 }'''
954 self.assertEqual(js_to_json(inp), '''{
955 "playlist":[{"controls":{"all":null}}]
956 }''')
957
958 inp = '''"The CW\\'s \\'Crazy Ex-Girlfriend\\'"'''
959 self.assertEqual(js_to_json(inp), '''"The CW's 'Crazy Ex-Girlfriend'"''')
960
961 inp = '"SAND Number: SAND 2013-7800P\\nPresenter: Tom Russo\\nHabanero Software Training - Xyce Software\\nXyce, Sandia\\u0027s"'
962 json_code = js_to_json(inp)
963 self.assertEqual(json.loads(json_code), json.loads(inp))
964
965 inp = '''{
966 0:{src:'skipped', type: 'application/dash+xml'},
967 1:{src:'skipped', type: 'application/vnd.apple.mpegURL'},
968 }'''
969 self.assertEqual(js_to_json(inp), '''{
970 "0":{"src":"skipped", "type": "application/dash+xml"},
971 "1":{"src":"skipped", "type": "application/vnd.apple.mpegURL"}
972 }''')
973
974 inp = '''{"foo":101}'''
975 self.assertEqual(js_to_json(inp), '''{"foo":101}''')
976
977 inp = '''{"duration": "00:01:07"}'''
978 self.assertEqual(js_to_json(inp), '''{"duration": "00:01:07"}''')
979
980 inp = '''{segments: [{"offset":-3.885780586188048e-16,"duration":39.75000000000001}]}'''
981 self.assertEqual(js_to_json(inp), '''{"segments": [{"offset":-3.885780586188048e-16,"duration":39.75000000000001}]}''')
982
983 def test_js_to_json_edgecases(self):
984 on = js_to_json("{abc_def:'1\\'\\\\2\\\\\\'3\"4'}")
985 self.assertEqual(json.loads(on), {"abc_def": "1'\\2\\'3\"4"})
986
987 on = js_to_json('{"abc": true}')
988 self.assertEqual(json.loads(on), {'abc': True})
989
990 # Ignore JavaScript code as well
991 on = js_to_json('''{
992 "x": 1,
993 y: "a",
994 z: some.code
995 }''')
996 d = json.loads(on)
997 self.assertEqual(d['x'], 1)
998 self.assertEqual(d['y'], 'a')
999
1000 # Just drop ! prefix for now though this results in a wrong value
1001 on = js_to_json('''{
1002 a: !0,
1003 b: !1,
1004 c: !!0,
1005 d: !!42.42,
1006 e: !!![],
1007 f: !"abc",
1008 g: !"",
1009 !42: 42
1010 }''')
1011 self.assertEqual(json.loads(on), {
1012 'a': 0,
1013 'b': 1,
1014 'c': 0,
1015 'd': 42.42,
1016 'e': [],
1017 'f': "abc",
1018 'g': "",
1019 '42': 42
1020 })
1021
1022 on = js_to_json('["abc", "def",]')
1023 self.assertEqual(json.loads(on), ['abc', 'def'])
1024
1025 on = js_to_json('[/*comment\n*/"abc"/*comment\n*/,/*comment\n*/"def",/*comment\n*/]')
1026 self.assertEqual(json.loads(on), ['abc', 'def'])
1027
1028 on = js_to_json('[//comment\n"abc" //comment\n,//comment\n"def",//comment\n]')
1029 self.assertEqual(json.loads(on), ['abc', 'def'])
1030
1031 on = js_to_json('{"abc": "def",}')
1032 self.assertEqual(json.loads(on), {'abc': 'def'})
1033
1034 on = js_to_json('{/*comment\n*/"abc"/*comment\n*/:/*comment\n*/"def"/*comment\n*/,/*comment\n*/}')
1035 self.assertEqual(json.loads(on), {'abc': 'def'})
1036
1037 on = js_to_json('{ 0: /* " \n */ ",]" , }')
1038 self.assertEqual(json.loads(on), {'0': ',]'})
1039
1040 on = js_to_json('{ /*comment\n*/0/*comment\n*/: /* " \n */ ",]" , }')
1041 self.assertEqual(json.loads(on), {'0': ',]'})
1042
1043 on = js_to_json('{ 0: // comment\n1 }')
1044 self.assertEqual(json.loads(on), {'0': 1})
1045
1046 on = js_to_json(r'["<p>x<\/p>"]')
1047 self.assertEqual(json.loads(on), ['<p>x</p>'])
1048
1049 on = js_to_json(r'["\xaa"]')
1050 self.assertEqual(json.loads(on), ['\u00aa'])
1051
1052 on = js_to_json("['a\\\nb']")
1053 self.assertEqual(json.loads(on), ['ab'])
1054
1055 on = js_to_json("/*comment\n*/[/*comment\n*/'a\\\nb'/*comment\n*/]/*comment\n*/")
1056 self.assertEqual(json.loads(on), ['ab'])
1057
1058 on = js_to_json('{0xff:0xff}')
1059 self.assertEqual(json.loads(on), {'255': 255})
1060
1061 on = js_to_json('{/*comment\n*/0xff/*comment\n*/:/*comment\n*/0xff/*comment\n*/}')
1062 self.assertEqual(json.loads(on), {'255': 255})
1063
1064 on = js_to_json('{077:077}')
1065 self.assertEqual(json.loads(on), {'63': 63})
1066
1067 on = js_to_json('{/*comment\n*/077/*comment\n*/:/*comment\n*/077/*comment\n*/}')
1068 self.assertEqual(json.loads(on), {'63': 63})
1069
1070 on = js_to_json('{42:42}')
1071 self.assertEqual(json.loads(on), {'42': 42})
1072
1073 on = js_to_json('{/*comment\n*/42/*comment\n*/:/*comment\n*/42/*comment\n*/}')
1074 self.assertEqual(json.loads(on), {'42': 42})
1075
1076 on = js_to_json('{42:4.2e1}')
1077 self.assertEqual(json.loads(on), {'42': 42.0})
1078
1079 on = js_to_json('{ "0x40": "0x40" }')
1080 self.assertEqual(json.loads(on), {'0x40': '0x40'})
1081
1082 on = js_to_json('{ "040": "040" }')
1083 self.assertEqual(json.loads(on), {'040': '040'})
1084
1085 on = js_to_json('[1,//{},\n2]')
1086 self.assertEqual(json.loads(on), [1, 2])
1087
1088 def test_js_to_json_malformed(self):
1089 self.assertEqual(js_to_json('42a1'), '42"a1"')
1090 self.assertEqual(js_to_json('42a-1'), '42"a"-1')
1091
1092 def test_extract_attributes(self):
1093 self.assertEqual(extract_attributes('<e x="y">'), {'x': 'y'})
1094 self.assertEqual(extract_attributes("<e x='y'>"), {'x': 'y'})
1095 self.assertEqual(extract_attributes('<e x=y>'), {'x': 'y'})
1096 self.assertEqual(extract_attributes('<e x="a \'b\' c">'), {'x': "a 'b' c"})
1097 self.assertEqual(extract_attributes('<e x=\'a "b" c\'>'), {'x': 'a "b" c'})
1098 self.assertEqual(extract_attributes('<e x="&#121;">'), {'x': 'y'})
1099 self.assertEqual(extract_attributes('<e x="&#x79;">'), {'x': 'y'})
1100 self.assertEqual(extract_attributes('<e x="&amp;">'), {'x': '&'}) # XML
1101 self.assertEqual(extract_attributes('<e x="&quot;">'), {'x': '"'})
1102 self.assertEqual(extract_attributes('<e x="&pound;">'), {'x': '£'}) # HTML 3.2
1103 self.assertEqual(extract_attributes('<e x="&lambda;">'), {'x': 'λ'}) # HTML 4.0
1104 self.assertEqual(extract_attributes('<e x="&foo">'), {'x': '&foo'})
1105 self.assertEqual(extract_attributes('<e x="\'">'), {'x': "'"})
1106 self.assertEqual(extract_attributes('<e x=\'"\'>'), {'x': '"'})
1107 self.assertEqual(extract_attributes('<e x >'), {'x': None})
1108 self.assertEqual(extract_attributes('<e x=y a>'), {'x': 'y', 'a': None})
1109 self.assertEqual(extract_attributes('<e x= y>'), {'x': 'y'})
1110 self.assertEqual(extract_attributes('<e x=1 y=2 x=3>'), {'y': '2', 'x': '3'})
1111 self.assertEqual(extract_attributes('<e \nx=\ny\n>'), {'x': 'y'})
1112 self.assertEqual(extract_attributes('<e \nx=\n"y"\n>'), {'x': 'y'})
1113 self.assertEqual(extract_attributes("<e \nx=\n'y'\n>"), {'x': 'y'})
1114 self.assertEqual(extract_attributes('<e \nx="\ny\n">'), {'x': '\ny\n'})
1115 self.assertEqual(extract_attributes('<e CAPS=x>'), {'caps': 'x'}) # Names lowercased
1116 self.assertEqual(extract_attributes('<e x=1 X=2>'), {'x': '2'})
1117 self.assertEqual(extract_attributes('<e X=1 x=2>'), {'x': '2'})
1118 self.assertEqual(extract_attributes('<e _:funny-name1=1>'), {'_:funny-name1': '1'})
1119 self.assertEqual(extract_attributes('<e x="Fáilte 世界 \U0001f600">'), {'x': 'Fáilte 世界 \U0001f600'})
1120 self.assertEqual(extract_attributes('<e x="décompose&#769;">'), {'x': 'décompose\u0301'})
1121 # "Narrow" Python builds don't support unicode code points outside BMP.
1122 try:
1123 compat_chr(0x10000)
1124 supports_outside_bmp = True
1125 except ValueError:
1126 supports_outside_bmp = False
1127 if supports_outside_bmp:
1128 self.assertEqual(extract_attributes('<e x="Smile &#128512;!">'), {'x': 'Smile \U0001f600!'})
1129 # Malformed HTML should not break attributes extraction on older Python
1130 self.assertEqual(extract_attributes('<mal"formed/>'), {})
1131
1132 def test_clean_html(self):
1133 self.assertEqual(clean_html('a:\nb'), 'a: b')
1134 self.assertEqual(clean_html('a:\n "b"'), 'a: "b"')
1135 self.assertEqual(clean_html('a<br>\xa0b'), 'a\nb')
1136
1137 def test_intlist_to_bytes(self):
1138 self.assertEqual(
1139 intlist_to_bytes([0, 1, 127, 128, 255]),
1140 b'\x00\x01\x7f\x80\xff')
1141
1142 def test_args_to_str(self):
1143 self.assertEqual(
1144 args_to_str(['foo', 'ba/r', '-baz', '2 be', '']),
1145 'foo ba/r -baz \'2 be\' \'\'' if compat_os_name != 'nt' else 'foo ba/r -baz "2 be" ""'
1146 )
1147
1148 def test_parse_filesize(self):
1149 self.assertEqual(parse_filesize(None), None)
1150 self.assertEqual(parse_filesize(''), None)
1151 self.assertEqual(parse_filesize('91 B'), 91)
1152 self.assertEqual(parse_filesize('foobar'), None)
1153 self.assertEqual(parse_filesize('2 MiB'), 2097152)
1154 self.assertEqual(parse_filesize('5 GB'), 5000000000)
1155 self.assertEqual(parse_filesize('1.2Tb'), 1200000000000)
1156 self.assertEqual(parse_filesize('1.2tb'), 1200000000000)
1157 self.assertEqual(parse_filesize('1,24 KB'), 1240)
1158 self.assertEqual(parse_filesize('1,24 kb'), 1240)
1159 self.assertEqual(parse_filesize('8.5 megabytes'), 8500000)
1160
1161 def test_parse_count(self):
1162 self.assertEqual(parse_count(None), None)
1163 self.assertEqual(parse_count(''), None)
1164 self.assertEqual(parse_count('0'), 0)
1165 self.assertEqual(parse_count('1000'), 1000)
1166 self.assertEqual(parse_count('1.000'), 1000)
1167 self.assertEqual(parse_count('1.1k'), 1100)
1168 self.assertEqual(parse_count('1.1 k'), 1100)
1169 self.assertEqual(parse_count('1,1 k'), 1100)
1170 self.assertEqual(parse_count('1.1kk'), 1100000)
1171 self.assertEqual(parse_count('1.1kk '), 1100000)
1172 self.assertEqual(parse_count('1,1kk'), 1100000)
1173 self.assertEqual(parse_count('100 views'), 100)
1174 self.assertEqual(parse_count('1,100 views'), 1100)
1175 self.assertEqual(parse_count('1.1kk views'), 1100000)
1176 self.assertEqual(parse_count('10M views'), 10000000)
1177 self.assertEqual(parse_count('has 10M views'), 10000000)
1178
1179 def test_parse_resolution(self):
1180 self.assertEqual(parse_resolution(None), {})
1181 self.assertEqual(parse_resolution(''), {})
1182 self.assertEqual(parse_resolution(' 1920x1080'), {'width': 1920, 'height': 1080})
1183 self.assertEqual(parse_resolution('1920×1080 '), {'width': 1920, 'height': 1080})
1184 self.assertEqual(parse_resolution('1920 x 1080'), {'width': 1920, 'height': 1080})
1185 self.assertEqual(parse_resolution('720p'), {'height': 720})
1186 self.assertEqual(parse_resolution('4k'), {'height': 2160})
1187 self.assertEqual(parse_resolution('8K'), {'height': 4320})
1188 self.assertEqual(parse_resolution('pre_1920x1080_post'), {'width': 1920, 'height': 1080})
1189 self.assertEqual(parse_resolution('ep1x2'), {})
1190 self.assertEqual(parse_resolution('1920, 1080'), {'width': 1920, 'height': 1080})
1191
1192 def test_parse_bitrate(self):
1193 self.assertEqual(parse_bitrate(None), None)
1194 self.assertEqual(parse_bitrate(''), None)
1195 self.assertEqual(parse_bitrate('300kbps'), 300)
1196 self.assertEqual(parse_bitrate('1500kbps'), 1500)
1197 self.assertEqual(parse_bitrate('300 kbps'), 300)
1198
1199 def test_version_tuple(self):
1200 self.assertEqual(version_tuple('1'), (1,))
1201 self.assertEqual(version_tuple('10.23.344'), (10, 23, 344))
1202 self.assertEqual(version_tuple('10.1-6'), (10, 1, 6)) # avconv style
1203
1204 def test_detect_exe_version(self):
1205 self.assertEqual(detect_exe_version('''ffmpeg version 1.2.1
1206 built on May 27 2013 08:37:26 with gcc 4.7 (Debian 4.7.3-4)
1207 configuration: --prefix=/usr --extra-'''), '1.2.1')
1208 self.assertEqual(detect_exe_version('''ffmpeg version N-63176-g1fb4685
1209 built on May 15 2014 22:09:06 with gcc 4.8.2 (GCC)'''), 'N-63176-g1fb4685')
1210 self.assertEqual(detect_exe_version('''X server found. dri2 connection failed!
1211 Trying to open render node...
1212 Success at /dev/dri/renderD128.
1213 ffmpeg version 2.4.4 Copyright (c) 2000-2014 the FFmpeg ...'''), '2.4.4')
1214
1215 def test_age_restricted(self):
1216 self.assertFalse(age_restricted(None, 10)) # unrestricted content
1217 self.assertFalse(age_restricted(1, None)) # unrestricted policy
1218 self.assertFalse(age_restricted(8, 10))
1219 self.assertTrue(age_restricted(18, 14))
1220 self.assertFalse(age_restricted(18, 18))
1221
1222 def test_is_html(self):
1223 self.assertFalse(is_html(b'\x49\x44\x43<html'))
1224 self.assertTrue(is_html(b'<!DOCTYPE foo>\xaaa'))
1225 self.assertTrue(is_html( # UTF-8 with BOM
1226 b'\xef\xbb\xbf<!DOCTYPE foo>\xaaa'))
1227 self.assertTrue(is_html( # UTF-16-LE
1228 b'\xff\xfe<\x00h\x00t\x00m\x00l\x00>\x00\xe4\x00'
1229 ))
1230 self.assertTrue(is_html( # UTF-16-BE
1231 b'\xfe\xff\x00<\x00h\x00t\x00m\x00l\x00>\x00\xe4'
1232 ))
1233 self.assertTrue(is_html( # UTF-32-BE
1234 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'))
1235 self.assertTrue(is_html( # UTF-32-LE
1236 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'))
1237
1238 def test_render_table(self):
1239 self.assertEqual(
1240 render_table(
1241 ['a', 'empty', 'bcd'],
1242 [[123, '', 4], [9999, '', 51]]),
1243 'a empty bcd\n'
1244 '123 4\n'
1245 '9999 51')
1246
1247 self.assertEqual(
1248 render_table(
1249 ['a', 'empty', 'bcd'],
1250 [[123, '', 4], [9999, '', 51]],
1251 hide_empty=True),
1252 'a bcd\n'
1253 '123 4\n'
1254 '9999 51')
1255
1256 self.assertEqual(
1257 render_table(
1258 ['\ta', 'bcd'],
1259 [['1\t23', 4], ['\t9999', 51]]),
1260 ' a bcd\n'
1261 '1 23 4\n'
1262 '9999 51')
1263
1264 self.assertEqual(
1265 render_table(
1266 ['a', 'bcd'],
1267 [[123, 4], [9999, 51]],
1268 delim='-'),
1269 'a bcd\n'
1270 '--------\n'
1271 '123 4\n'
1272 '9999 51')
1273
1274 self.assertEqual(
1275 render_table(
1276 ['a', 'bcd'],
1277 [[123, 4], [9999, 51]],
1278 delim='-', extra_gap=2),
1279 'a bcd\n'
1280 '----------\n'
1281 '123 4\n'
1282 '9999 51')
1283
1284 def test_match_str(self):
1285 # Unary
1286 self.assertFalse(match_str('xy', {'x': 1200}))
1287 self.assertTrue(match_str('!xy', {'x': 1200}))
1288 self.assertTrue(match_str('x', {'x': 1200}))
1289 self.assertFalse(match_str('!x', {'x': 1200}))
1290 self.assertTrue(match_str('x', {'x': 0}))
1291 self.assertTrue(match_str('is_live', {'is_live': True}))
1292 self.assertFalse(match_str('is_live', {'is_live': False}))
1293 self.assertFalse(match_str('is_live', {'is_live': None}))
1294 self.assertFalse(match_str('is_live', {}))
1295 self.assertFalse(match_str('!is_live', {'is_live': True}))
1296 self.assertTrue(match_str('!is_live', {'is_live': False}))
1297 self.assertTrue(match_str('!is_live', {'is_live': None}))
1298 self.assertTrue(match_str('!is_live', {}))
1299 self.assertTrue(match_str('title', {'title': 'abc'}))
1300 self.assertTrue(match_str('title', {'title': ''}))
1301 self.assertFalse(match_str('!title', {'title': 'abc'}))
1302 self.assertFalse(match_str('!title', {'title': ''}))
1303
1304 # Numeric
1305 self.assertFalse(match_str('x>0', {'x': 0}))
1306 self.assertFalse(match_str('x>0', {}))
1307 self.assertTrue(match_str('x>?0', {}))
1308 self.assertTrue(match_str('x>1K', {'x': 1200}))
1309 self.assertFalse(match_str('x>2K', {'x': 1200}))
1310 self.assertTrue(match_str('x>=1200 & x < 1300', {'x': 1200}))
1311 self.assertFalse(match_str('x>=1100 & x < 1200', {'x': 1200}))
1312 self.assertTrue(match_str('x > 1:0:0', {'x': 3700}))
1313
1314 # String
1315 self.assertFalse(match_str('y=a212', {'y': 'foobar42'}))
1316 self.assertTrue(match_str('y=foobar42', {'y': 'foobar42'}))
1317 self.assertFalse(match_str('y!=foobar42', {'y': 'foobar42'}))
1318 self.assertTrue(match_str('y!=foobar2', {'y': 'foobar42'}))
1319 self.assertTrue(match_str('y^=foo', {'y': 'foobar42'}))
1320 self.assertFalse(match_str('y!^=foo', {'y': 'foobar42'}))
1321 self.assertFalse(match_str('y^=bar', {'y': 'foobar42'}))
1322 self.assertTrue(match_str('y!^=bar', {'y': 'foobar42'}))
1323 self.assertRaises(ValueError, match_str, 'x^=42', {'x': 42})
1324 self.assertTrue(match_str('y*=bar', {'y': 'foobar42'}))
1325 self.assertFalse(match_str('y!*=bar', {'y': 'foobar42'}))
1326 self.assertFalse(match_str('y*=baz', {'y': 'foobar42'}))
1327 self.assertTrue(match_str('y!*=baz', {'y': 'foobar42'}))
1328 self.assertTrue(match_str('y$=42', {'y': 'foobar42'}))
1329 self.assertFalse(match_str('y$=43', {'y': 'foobar42'}))
1330
1331 # And
1332 self.assertFalse(match_str(
1333 'like_count > 100 & dislike_count <? 50 & description',
1334 {'like_count': 90, 'description': 'foo'}))
1335 self.assertTrue(match_str(
1336 'like_count > 100 & dislike_count <? 50 & description',
1337 {'like_count': 190, 'description': 'foo'}))
1338 self.assertFalse(match_str(
1339 'like_count > 100 & dislike_count <? 50 & description',
1340 {'like_count': 190, 'dislike_count': 60, 'description': 'foo'}))
1341 self.assertFalse(match_str(
1342 'like_count > 100 & dislike_count <? 50 & description',
1343 {'like_count': 190, 'dislike_count': 10}))
1344
1345 # Regex
1346 self.assertTrue(match_str(r'x~=\bbar', {'x': 'foo bar'}))
1347 self.assertFalse(match_str(r'x~=\bbar.+', {'x': 'foo bar'}))
1348 self.assertFalse(match_str(r'x~=^FOO', {'x': 'foo bar'}))
1349 self.assertTrue(match_str(r'x~=(?i)^FOO', {'x': 'foo bar'}))
1350
1351 # Quotes
1352 self.assertTrue(match_str(r'x^="foo"', {'x': 'foo "bar"'}))
1353 self.assertFalse(match_str(r'x^="foo "', {'x': 'foo "bar"'}))
1354 self.assertFalse(match_str(r'x$="bar"', {'x': 'foo "bar"'}))
1355 self.assertTrue(match_str(r'x$=" \"bar\""', {'x': 'foo "bar"'}))
1356
1357 # Escaping &
1358 self.assertFalse(match_str(r'x=foo & bar', {'x': 'foo & bar'}))
1359 self.assertTrue(match_str(r'x=foo \& bar', {'x': 'foo & bar'}))
1360 self.assertTrue(match_str(r'x=foo \& bar & x^=foo', {'x': 'foo & bar'}))
1361 self.assertTrue(match_str(r'x="foo \& bar" & x^=foo', {'x': 'foo & bar'}))
1362
1363 # Example from docs
1364 self.assertTrue(match_str(
1365 r"!is_live & like_count>?100 & description~='(?i)\bcats \& dogs\b'",
1366 {'description': 'Raining Cats & Dogs'}))
1367
1368 # Incomplete
1369 self.assertFalse(match_str('id!=foo', {'id': 'foo'}, True))
1370 self.assertTrue(match_str('x', {'id': 'foo'}, True))
1371 self.assertTrue(match_str('!x', {'id': 'foo'}, True))
1372 self.assertFalse(match_str('x', {'id': 'foo'}, False))
1373
1374 def test_parse_dfxp_time_expr(self):
1375 self.assertEqual(parse_dfxp_time_expr(None), None)
1376 self.assertEqual(parse_dfxp_time_expr(''), None)
1377 self.assertEqual(parse_dfxp_time_expr('0.1'), 0.1)
1378 self.assertEqual(parse_dfxp_time_expr('0.1s'), 0.1)
1379 self.assertEqual(parse_dfxp_time_expr('00:00:01'), 1.0)
1380 self.assertEqual(parse_dfxp_time_expr('00:00:01.100'), 1.1)
1381 self.assertEqual(parse_dfxp_time_expr('00:00:01:100'), 1.1)
1382
1383 def test_dfxp2srt(self):
1384 dfxp_data = '''<?xml version="1.0" encoding="UTF-8"?>
1385 <tt xmlns="http://www.w3.org/ns/ttml" xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
1386 <body>
1387 <div xml:lang="en">
1388 <p begin="0" end="1">The following line contains Chinese characters and special symbols</p>
1389 <p begin="1" end="2">第二行<br/>♪♪</p>
1390 <p begin="2" dur="1"><span>Third<br/>Line</span></p>
1391 <p begin="3" end="-1">Lines with invalid timestamps are ignored</p>
1392 <p begin="-1" end="-1">Ignore, two</p>
1393 <p begin="3" dur="-1">Ignored, three</p>
1394 </div>
1395 </body>
1396 </tt>'''.encode('utf-8')
1397 srt_data = '''1
1398 00:00:00,000 --> 00:00:01,000
1399 The following line contains Chinese characters and special symbols
1400
1401 2
1402 00:00:01,000 --> 00:00:02,000
1403 第二行
1404 ♪♪
1405
1406 3
1407 00:00:02,000 --> 00:00:03,000
1408 Third
1409 Line
1410
1411 '''
1412 self.assertEqual(dfxp2srt(dfxp_data), srt_data)
1413
1414 dfxp_data_no_default_namespace = '''<?xml version="1.0" encoding="UTF-8"?>
1415 <tt xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
1416 <body>
1417 <div xml:lang="en">
1418 <p begin="0" end="1">The first line</p>
1419 </div>
1420 </body>
1421 </tt>'''.encode('utf-8')
1422 srt_data = '''1
1423 00:00:00,000 --> 00:00:01,000
1424 The first line
1425
1426 '''
1427 self.assertEqual(dfxp2srt(dfxp_data_no_default_namespace), srt_data)
1428
1429 dfxp_data_with_style = '''<?xml version="1.0" encoding="utf-8"?>
1430 <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">
1431 <head>
1432 <styling>
1433 <style id="s2" style="s0" tts:color="cyan" tts:fontWeight="bold" />
1434 <style id="s1" style="s0" tts:color="yellow" tts:fontStyle="italic" />
1435 <style id="s3" style="s0" tts:color="lime" tts:textDecoration="underline" />
1436 <style id="s0" tts:backgroundColor="black" tts:fontStyle="normal" tts:fontSize="16" tts:fontFamily="sansSerif" tts:color="white" />
1437 </styling>
1438 </head>
1439 <body tts:textAlign="center" style="s0">
1440 <div>
1441 <p begin="00:00:02.08" id="p0" end="00:00:05.84">default style<span tts:color="red">custom style</span></p>
1442 <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>
1443 <p style="s3" begin="00:00:05.84" id="p1" end="00:00:09.56">line 3<br />part 3</p>
1444 <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>
1445 </div>
1446 </body>
1447 </tt>'''.encode('utf-8')
1448 srt_data = '''1
1449 00:00:02,080 --> 00:00:05,840
1450 <font color="white" face="sansSerif" size="16">default style<font color="red">custom style</font></font>
1451
1452 2
1453 00:00:02,080 --> 00:00:05,840
1454 <b><font color="cyan" face="sansSerif" size="16"><font color="lime">part 1
1455 </font>part 2</font></b>
1456
1457 3
1458 00:00:05,840 --> 00:00:09,560
1459 <u><font color="lime">line 3
1460 part 3</font></u>
1461
1462 4
1463 00:00:09,560 --> 00:00:12,360
1464 <i><u><font color="yellow"><font color="lime">inner
1465 </font>style</font></u></i>
1466
1467 '''
1468 self.assertEqual(dfxp2srt(dfxp_data_with_style), srt_data)
1469
1470 dfxp_data_non_utf8 = '''<?xml version="1.0" encoding="UTF-16"?>
1471 <tt xmlns="http://www.w3.org/ns/ttml" xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
1472 <body>
1473 <div xml:lang="en">
1474 <p begin="0" end="1">Line 1</p>
1475 <p begin="1" end="2">第二行</p>
1476 </div>
1477 </body>
1478 </tt>'''.encode('utf-16')
1479 srt_data = '''1
1480 00:00:00,000 --> 00:00:01,000
1481 Line 1
1482
1483 2
1484 00:00:01,000 --> 00:00:02,000
1485 第二行
1486
1487 '''
1488 self.assertEqual(dfxp2srt(dfxp_data_non_utf8), srt_data)
1489
1490 def test_cli_option(self):
1491 self.assertEqual(cli_option({'proxy': '127.0.0.1:3128'}, '--proxy', 'proxy'), ['--proxy', '127.0.0.1:3128'])
1492 self.assertEqual(cli_option({'proxy': None}, '--proxy', 'proxy'), [])
1493 self.assertEqual(cli_option({}, '--proxy', 'proxy'), [])
1494 self.assertEqual(cli_option({'retries': 10}, '--retries', 'retries'), ['--retries', '10'])
1495
1496 def test_cli_valueless_option(self):
1497 self.assertEqual(cli_valueless_option(
1498 {'downloader': 'external'}, '--external-downloader', 'downloader', 'external'), ['--external-downloader'])
1499 self.assertEqual(cli_valueless_option(
1500 {'downloader': 'internal'}, '--external-downloader', 'downloader', 'external'), [])
1501 self.assertEqual(cli_valueless_option(
1502 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'), ['--no-check-certificate'])
1503 self.assertEqual(cli_valueless_option(
1504 {'nocheckcertificate': False}, '--no-check-certificate', 'nocheckcertificate'), [])
1505 self.assertEqual(cli_valueless_option(
1506 {'checkcertificate': True}, '--no-check-certificate', 'checkcertificate', False), [])
1507 self.assertEqual(cli_valueless_option(
1508 {'checkcertificate': False}, '--no-check-certificate', 'checkcertificate', False), ['--no-check-certificate'])
1509
1510 def test_cli_bool_option(self):
1511 self.assertEqual(
1512 cli_bool_option(
1513 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'),
1514 ['--no-check-certificate', 'true'])
1515 self.assertEqual(
1516 cli_bool_option(
1517 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate', separator='='),
1518 ['--no-check-certificate=true'])
1519 self.assertEqual(
1520 cli_bool_option(
1521 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
1522 ['--check-certificate', 'false'])
1523 self.assertEqual(
1524 cli_bool_option(
1525 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
1526 ['--check-certificate=false'])
1527 self.assertEqual(
1528 cli_bool_option(
1529 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
1530 ['--check-certificate', 'true'])
1531 self.assertEqual(
1532 cli_bool_option(
1533 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
1534 ['--check-certificate=true'])
1535 self.assertEqual(
1536 cli_bool_option(
1537 {}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
1538 [])
1539
1540 def test_ohdave_rsa_encrypt(self):
1541 N = 0xab86b6371b5318aaa1d3c9e612a9f1264f372323c8c0f19875b5fc3b3fd3afcc1e5bec527aa94bfa85bffc157e4245aebda05389a5357b75115ac94f074aefcd
1542 e = 65537
1543
1544 self.assertEqual(
1545 ohdave_rsa_encrypt(b'aa111222', e, N),
1546 '726664bd9a23fd0c70f9f1b84aab5e3905ce1e45a584e9cbcf9bcc7510338fc1986d6c599ff990d923aa43c51c0d9013cd572e13bc58f4ae48f2ed8c0b0ba881')
1547
1548 def test_pkcs1pad(self):
1549 data = [1, 2, 3]
1550 padded_data = pkcs1pad(data, 32)
1551 self.assertEqual(padded_data[:2], [0, 2])
1552 self.assertEqual(padded_data[28:], [0, 1, 2, 3])
1553
1554 self.assertRaises(ValueError, pkcs1pad, data, 8)
1555
1556 def test_encode_base_n(self):
1557 self.assertEqual(encode_base_n(0, 30), '0')
1558 self.assertEqual(encode_base_n(80, 30), '2k')
1559
1560 custom_table = '9876543210ZYXWVUTSRQPONMLKJIHGFEDCBA'
1561 self.assertEqual(encode_base_n(0, 30, custom_table), '9')
1562 self.assertEqual(encode_base_n(80, 30, custom_table), '7P')
1563
1564 self.assertRaises(ValueError, encode_base_n, 0, 70)
1565 self.assertRaises(ValueError, encode_base_n, 0, 60, custom_table)
1566
1567 def test_caesar(self):
1568 self.assertEqual(caesar('ace', 'abcdef', 2), 'cea')
1569 self.assertEqual(caesar('cea', 'abcdef', -2), 'ace')
1570 self.assertEqual(caesar('ace', 'abcdef', -2), 'eac')
1571 self.assertEqual(caesar('eac', 'abcdef', 2), 'ace')
1572 self.assertEqual(caesar('ace', 'abcdef', 0), 'ace')
1573 self.assertEqual(caesar('xyz', 'abcdef', 2), 'xyz')
1574 self.assertEqual(caesar('abc', 'acegik', 2), 'ebg')
1575 self.assertEqual(caesar('ebg', 'acegik', -2), 'abc')
1576
1577 def test_rot47(self):
1578 self.assertEqual(rot47('yt-dlp'), r'JE\5=A')
1579 self.assertEqual(rot47('YT-DLP'), r'*%\s{!')
1580
1581 def test_urshift(self):
1582 self.assertEqual(urshift(3, 1), 1)
1583 self.assertEqual(urshift(-3, 1), 2147483646)
1584
1585 GET_ELEMENT_BY_CLASS_TEST_STRING = '''
1586 <span class="foo bar">nice</span>
1587 '''
1588
1589 def test_get_element_by_class(self):
1590 html = self.GET_ELEMENT_BY_CLASS_TEST_STRING
1591
1592 self.assertEqual(get_element_by_class('foo', html), 'nice')
1593 self.assertEqual(get_element_by_class('no-such-class', html), None)
1594
1595 def test_get_element_html_by_class(self):
1596 html = self.GET_ELEMENT_BY_CLASS_TEST_STRING
1597
1598 self.assertEqual(get_element_html_by_class('foo', html), html.strip())
1599 self.assertEqual(get_element_by_class('no-such-class', html), None)
1600
1601 GET_ELEMENT_BY_ATTRIBUTE_TEST_STRING = '''
1602 <div itemprop="author" itemscope>foo</div>
1603 '''
1604
1605 def test_get_element_by_attribute(self):
1606 html = self.GET_ELEMENT_BY_CLASS_TEST_STRING
1607
1608 self.assertEqual(get_element_by_attribute('class', 'foo bar', html), 'nice')
1609 self.assertEqual(get_element_by_attribute('class', 'foo', html), None)
1610 self.assertEqual(get_element_by_attribute('class', 'no-such-foo', html), None)
1611
1612 html = self.GET_ELEMENT_BY_ATTRIBUTE_TEST_STRING
1613
1614 self.assertEqual(get_element_by_attribute('itemprop', 'author', html), 'foo')
1615
1616 def test_get_element_html_by_attribute(self):
1617 html = self.GET_ELEMENT_BY_CLASS_TEST_STRING
1618
1619 self.assertEqual(get_element_html_by_attribute('class', 'foo bar', html), html.strip())
1620 self.assertEqual(get_element_html_by_attribute('class', 'foo', html), None)
1621 self.assertEqual(get_element_html_by_attribute('class', 'no-such-foo', html), None)
1622
1623 html = self.GET_ELEMENT_BY_ATTRIBUTE_TEST_STRING
1624
1625 self.assertEqual(get_element_html_by_attribute('itemprop', 'author', html), html.strip())
1626
1627 GET_ELEMENTS_BY_CLASS_TEST_STRING = '''
1628 <span class="foo bar">nice</span><span class="foo bar">also nice</span>
1629 '''
1630 GET_ELEMENTS_BY_CLASS_RES = ['<span class="foo bar">nice</span>', '<span class="foo bar">also nice</span>']
1631
1632 def test_get_elements_by_class(self):
1633 html = self.GET_ELEMENTS_BY_CLASS_TEST_STRING
1634
1635 self.assertEqual(get_elements_by_class('foo', html), ['nice', 'also nice'])
1636 self.assertEqual(get_elements_by_class('no-such-class', html), [])
1637
1638 def test_get_elements_html_by_class(self):
1639 html = self.GET_ELEMENTS_BY_CLASS_TEST_STRING
1640
1641 self.assertEqual(get_elements_html_by_class('foo', html), self.GET_ELEMENTS_BY_CLASS_RES)
1642 self.assertEqual(get_elements_html_by_class('no-such-class', html), [])
1643
1644 def test_get_elements_by_attribute(self):
1645 html = self.GET_ELEMENTS_BY_CLASS_TEST_STRING
1646
1647 self.assertEqual(get_elements_by_attribute('class', 'foo bar', html), ['nice', 'also nice'])
1648 self.assertEqual(get_elements_by_attribute('class', 'foo', html), [])
1649 self.assertEqual(get_elements_by_attribute('class', 'no-such-foo', html), [])
1650
1651 def test_get_elements_html_by_attribute(self):
1652 html = self.GET_ELEMENTS_BY_CLASS_TEST_STRING
1653
1654 self.assertEqual(get_elements_html_by_attribute('class', 'foo bar', html), self.GET_ELEMENTS_BY_CLASS_RES)
1655 self.assertEqual(get_elements_html_by_attribute('class', 'foo', html), [])
1656 self.assertEqual(get_elements_html_by_attribute('class', 'no-such-foo', html), [])
1657
1658 def test_get_elements_text_and_html_by_attribute(self):
1659 html = self.GET_ELEMENTS_BY_CLASS_TEST_STRING
1660
1661 self.assertEqual(
1662 list(get_elements_text_and_html_by_attribute('class', 'foo bar', html)),
1663 list(zip(['nice', 'also nice'], self.GET_ELEMENTS_BY_CLASS_RES)))
1664 self.assertEqual(list(get_elements_text_and_html_by_attribute('class', 'foo', html)), [])
1665 self.assertEqual(list(get_elements_text_and_html_by_attribute('class', 'no-such-foo', html)), [])
1666
1667 GET_ELEMENT_BY_TAG_TEST_STRING = '''
1668 random text lorem ipsum</p>
1669 <div>
1670 this should be returned
1671 <span>this should also be returned</span>
1672 <div>
1673 this should also be returned
1674 </div>
1675 closing tag above should not trick, so this should also be returned
1676 </div>
1677 but this text should not be returned
1678 '''
1679 GET_ELEMENT_BY_TAG_RES_OUTERDIV_HTML = GET_ELEMENT_BY_TAG_TEST_STRING.strip()[32:276]
1680 GET_ELEMENT_BY_TAG_RES_OUTERDIV_TEXT = GET_ELEMENT_BY_TAG_RES_OUTERDIV_HTML[5:-6]
1681 GET_ELEMENT_BY_TAG_RES_INNERSPAN_HTML = GET_ELEMENT_BY_TAG_TEST_STRING.strip()[78:119]
1682 GET_ELEMENT_BY_TAG_RES_INNERSPAN_TEXT = GET_ELEMENT_BY_TAG_RES_INNERSPAN_HTML[6:-7]
1683
1684 def test_get_element_text_and_html_by_tag(self):
1685 html = self.GET_ELEMENT_BY_TAG_TEST_STRING
1686
1687 self.assertEqual(
1688 get_element_text_and_html_by_tag('div', html),
1689 (self.GET_ELEMENT_BY_TAG_RES_OUTERDIV_TEXT, self.GET_ELEMENT_BY_TAG_RES_OUTERDIV_HTML))
1690 self.assertEqual(
1691 get_element_text_and_html_by_tag('span', html),
1692 (self.GET_ELEMENT_BY_TAG_RES_INNERSPAN_TEXT, self.GET_ELEMENT_BY_TAG_RES_INNERSPAN_HTML))
1693 self.assertRaises(compat_HTMLParseError, get_element_text_and_html_by_tag, 'article', html)
1694
1695 def test_iri_to_uri(self):
1696 self.assertEqual(
1697 iri_to_uri('https://www.google.com/search?q=foo&ie=utf-8&oe=utf-8&client=firefox-b'),
1698 'https://www.google.com/search?q=foo&ie=utf-8&oe=utf-8&client=firefox-b') # Same
1699 self.assertEqual(
1700 iri_to_uri('https://www.google.com/search?q=Käsesoßenrührlöffel'), # German for cheese sauce stirring spoon
1701 'https://www.google.com/search?q=K%C3%A4seso%C3%9Fenr%C3%BChrl%C3%B6ffel')
1702 self.assertEqual(
1703 iri_to_uri('https://www.google.com/search?q=lt<+gt>+eq%3D+amp%26+percent%25+hash%23+colon%3A+tilde~#trash=?&garbage=#'),
1704 'https://www.google.com/search?q=lt%3C+gt%3E+eq%3D+amp%26+percent%25+hash%23+colon%3A+tilde~#trash=?&garbage=#')
1705 self.assertEqual(
1706 iri_to_uri('http://правозащита38.рф/category/news/'),
1707 'http://xn--38-6kcaak9aj5chl4a3g.xn--p1ai/category/news/')
1708 self.assertEqual(
1709 iri_to_uri('http://www.правозащита38.рф/category/news/'),
1710 'http://www.xn--38-6kcaak9aj5chl4a3g.xn--p1ai/category/news/')
1711 self.assertEqual(
1712 iri_to_uri('https://i❤.ws/emojidomain/👍👏🤝💪'),
1713 'https://xn--i-7iq.ws/emojidomain/%F0%9F%91%8D%F0%9F%91%8F%F0%9F%A4%9D%F0%9F%92%AA')
1714 self.assertEqual(
1715 iri_to_uri('http://日本語.jp/'),
1716 'http://xn--wgv71a119e.jp/')
1717 self.assertEqual(
1718 iri_to_uri('http://导航.中国/'),
1719 'http://xn--fet810g.xn--fiqs8s/')
1720
1721 def test_clean_podcast_url(self):
1722 self.assertEqual(clean_podcast_url('https://www.podtrac.com/pts/redirect.mp3/chtbl.com/track/5899E/traffic.megaphone.fm/HSW7835899191.mp3'), 'https://traffic.megaphone.fm/HSW7835899191.mp3')
1723 self.assertEqual(clean_podcast_url('https://play.podtrac.com/npr-344098539/edge1.pod.npr.org/anon.npr-podcasts/podcast/npr/waitwait/2020/10/20201003_waitwait_wwdtmpodcast201003-015621a5-f035-4eca-a9a1-7c118d90bc3c.mp3'), 'https://edge1.pod.npr.org/anon.npr-podcasts/podcast/npr/waitwait/2020/10/20201003_waitwait_wwdtmpodcast201003-015621a5-f035-4eca-a9a1-7c118d90bc3c.mp3')
1724
1725 def test_LazyList(self):
1726 it = list(range(10))
1727
1728 self.assertEqual(list(LazyList(it)), it)
1729 self.assertEqual(LazyList(it).exhaust(), it)
1730 self.assertEqual(LazyList(it)[5], it[5])
1731
1732 self.assertEqual(LazyList(it)[5:], it[5:])
1733 self.assertEqual(LazyList(it)[:5], it[:5])
1734 self.assertEqual(LazyList(it)[::2], it[::2])
1735 self.assertEqual(LazyList(it)[1::2], it[1::2])
1736 self.assertEqual(LazyList(it)[5::-1], it[5::-1])
1737 self.assertEqual(LazyList(it)[6:2:-2], it[6:2:-2])
1738 self.assertEqual(LazyList(it)[::-1], it[::-1])
1739
1740 self.assertTrue(LazyList(it))
1741 self.assertFalse(LazyList(range(0)))
1742 self.assertEqual(len(LazyList(it)), len(it))
1743 self.assertEqual(repr(LazyList(it)), repr(it))
1744 self.assertEqual(str(LazyList(it)), str(it))
1745
1746 self.assertEqual(list(LazyList(it, reverse=True)), it[::-1])
1747 self.assertEqual(list(reversed(LazyList(it))[::-1]), it)
1748 self.assertEqual(list(reversed(LazyList(it))[1:3:7]), it[::-1][1:3:7])
1749
1750 def test_LazyList_laziness(self):
1751
1752 def test(ll, idx, val, cache):
1753 self.assertEqual(ll[idx], val)
1754 self.assertEqual(getattr(ll, '_LazyList__cache'), list(cache))
1755
1756 ll = LazyList(range(10))
1757 test(ll, 0, 0, range(1))
1758 test(ll, 5, 5, range(6))
1759 test(ll, -3, 7, range(10))
1760
1761 ll = LazyList(range(10), reverse=True)
1762 test(ll, -1, 0, range(1))
1763 test(ll, 3, 6, range(10))
1764
1765 ll = LazyList(itertools.count())
1766 test(ll, 10, 10, range(11))
1767 ll = reversed(ll)
1768 test(ll, -15, 14, range(15))
1769
1770 def test_format_bytes(self):
1771 self.assertEqual(format_bytes(0), '0.00B')
1772 self.assertEqual(format_bytes(1000), '1000.00B')
1773 self.assertEqual(format_bytes(1024), '1.00KiB')
1774 self.assertEqual(format_bytes(1024**2), '1.00MiB')
1775 self.assertEqual(format_bytes(1024**3), '1.00GiB')
1776 self.assertEqual(format_bytes(1024**4), '1.00TiB')
1777 self.assertEqual(format_bytes(1024**5), '1.00PiB')
1778 self.assertEqual(format_bytes(1024**6), '1.00EiB')
1779 self.assertEqual(format_bytes(1024**7), '1.00ZiB')
1780 self.assertEqual(format_bytes(1024**8), '1.00YiB')
1781
1782 def test_hide_login_info(self):
1783 self.assertEqual(Config.hide_login_info(['-u', 'foo', '-p', 'bar']),
1784 ['-u', 'PRIVATE', '-p', 'PRIVATE'])
1785 self.assertEqual(Config.hide_login_info(['-u']), ['-u'])
1786 self.assertEqual(Config.hide_login_info(['-u', 'foo', '-u', 'bar']),
1787 ['-u', 'PRIVATE', '-u', 'PRIVATE'])
1788 self.assertEqual(Config.hide_login_info(['--username=foo']),
1789 ['--username=PRIVATE'])
1790
1791
1792 if __name__ == '__main__':
1793 unittest.main()