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