]> jfr.im git - yt-dlp.git/blame - test/test_utils.py
[test/test_utils] add tests for update_url_query
[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,
a921f407 23 DateRange,
cae97f65 24 detect_exe_version,
5035536e 25 determine_ext,
cbecc9b9 26 dict_get,
6b77d52b 27 encode_compat_str,
29eb5174 28 encodeFilename,
cae97f65
PH
29 escape_rfc3986,
30 escape_url,
5379a2d4 31 ExtractorError,
a921f407 32 find_xpath_attr,
5aafe895 33 fix_xml_ampersands,
9c44d242 34 InAdvancePagedList,
cae97f65 35 intlist_to_bytes,
61ca9a80 36 is_html,
cae97f65
PH
37 js_to_json,
38 limit_length,
5bc880b9 39 ohdave_rsa_encrypt,
cae97f65
PH
40 OnDemandPagedList,
41 orderedSet,
608d11f5 42 parse_duration,
cae97f65
PH
43 parse_filesize,
44 parse_iso8601,
62e609ab 45 read_batch_urls,
29eb5174 46 sanitize_filename,
a2aaf4db 47 sanitize_path,
a4bcaad7 48 prepend_extension,
b3ed15b7 49 replace_extension,
31b2051e 50 remove_quotes,
a6a173c2 51 shell_quote,
29eb5174 52 smuggle_url,
f53c966a 53 str_to_int,
cae97f65 54 strip_jsonp,
b53466e1 55 struct_unpack,
29eb5174
PH
56 timeconvert,
57 unescapeHTML,
58 unified_strdate,
59 unsmuggle_url,
cae97f65 60 uppercase_escape,
0fe2ff78 61 lowercase_escape,
29eb5174 62 url_basename,
b74fa8cd 63 urlencode_postdata,
fb640d0a 64 update_url_query,
5f9b8394 65 version_tuple,
cae97f65 66 xpath_with_ns,
87f70ab3 67 xpath_element,
5379a2d4 68 xpath_text,
87f70ab3 69 xpath_attr,
cfb56d1a 70 render_table,
347de493 71 match_str,
bf6427d2
YCH
72 parse_dfxp_time_expr,
73 dfxp2srt,
f7126449
S
74 cli_option,
75 cli_valueless_option,
76 cli_bool_option,
a921f407 77)
36e6f62c
JMF
78from youtube_dl.compat import (
79 compat_etree_fromstring,
fb640d0a 80 compat_urlparse,
81 compat_parse_qs,
36e6f62c 82)
44fb3454 83
627dcfff 84
44fb3454 85class TestUtil(unittest.TestCase):
59ae15a5
PH
86 def test_timeconvert(self):
87 self.assertTrue(timeconvert('') is None)
88 self.assertTrue(timeconvert('bougrg') is None)
89
90 def test_sanitize_filename(self):
91 self.assertEqual(sanitize_filename('abc'), 'abc')
92 self.assertEqual(sanitize_filename('abc_d-e'), 'abc_d-e')
93
94 self.assertEqual(sanitize_filename('123'), '123')
95
96 self.assertEqual('abc_de', sanitize_filename('abc/de'))
97 self.assertFalse('/' in sanitize_filename('abc/de///'))
98
99 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de'))
100 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|'))
101 self.assertEqual('yes no', sanitize_filename('yes? no'))
102 self.assertEqual('this - that', sanitize_filename('this: that'))
103
104 self.assertEqual(sanitize_filename('AT&T'), 'AT&T')
4e408e47 105 aumlaut = 'ä'
59ae15a5 106 self.assertEqual(sanitize_filename(aumlaut), aumlaut)
4e408e47 107 tests = '\u043a\u0438\u0440\u0438\u043b\u043b\u0438\u0446\u0430'
59ae15a5
PH
108 self.assertEqual(sanitize_filename(tests), tests)
109
2aeb06d6
PH
110 self.assertEqual(
111 sanitize_filename('New World record at 0:12:34'),
112 'New World record at 0_12_34')
a7440261 113
5a42414b
PH
114 self.assertEqual(sanitize_filename('--gasdgf'), '_-gasdgf')
115 self.assertEqual(sanitize_filename('--gasdgf', is_id=True), '--gasdgf')
a7440261
PH
116 self.assertEqual(sanitize_filename('.gasdgf'), 'gasdgf')
117 self.assertEqual(sanitize_filename('.gasdgf', is_id=True), '.gasdgf')
2aeb06d6 118
59ae15a5
PH
119 forbidden = '"\0\\/'
120 for fc in forbidden:
121 for fbc in forbidden:
122 self.assertTrue(fbc not in sanitize_filename(fc))
123
124 def test_sanitize_filename_restricted(self):
125 self.assertEqual(sanitize_filename('abc', restricted=True), 'abc')
126 self.assertEqual(sanitize_filename('abc_d-e', restricted=True), 'abc_d-e')
127
128 self.assertEqual(sanitize_filename('123', restricted=True), '123')
129
130 self.assertEqual('abc_de', sanitize_filename('abc/de', restricted=True))
131 self.assertFalse('/' in sanitize_filename('abc/de///', restricted=True))
132
133 self.assertEqual('abc_de', sanitize_filename('abc/<>\\*|de', restricted=True))
134 self.assertEqual('xxx', sanitize_filename('xxx/<>\\*|', restricted=True))
135 self.assertEqual('yes_no', sanitize_filename('yes? no', restricted=True))
136 self.assertEqual('this_-_that', sanitize_filename('this: that', restricted=True))
137
4e408e47 138 tests = 'a\xe4b\u4e2d\u56fd\u7684c'
59ae15a5 139 self.assertEqual(sanitize_filename(tests, restricted=True), 'a_b_c')
4e408e47 140 self.assertTrue(sanitize_filename('\xf6', restricted=True) != '') # No empty filename
59ae15a5 141
627dcfff 142 forbidden = '"\0\\/&!: \'\t\n()[]{}$;`^,#'
59ae15a5
PH
143 for fc in forbidden:
144 for fbc in forbidden:
145 self.assertTrue(fbc not in sanitize_filename(fc, restricted=True))
146
147 # Handle a common case more neatly
4e408e47
PH
148 self.assertEqual(sanitize_filename('\u5927\u58f0\u5e26 - Song', restricted=True), 'Song')
149 self.assertEqual(sanitize_filename('\u603b\u7edf: Speech', restricted=True), 'Speech')
59ae15a5
PH
150 # .. but make sure the file name is never empty
151 self.assertTrue(sanitize_filename('-', restricted=True) != '')
152 self.assertTrue(sanitize_filename(':', restricted=True) != '')
153
796173d0 154 def test_sanitize_ids(self):
314d506b
PH
155 self.assertEqual(sanitize_filename('_n_cd26wFpw', is_id=True), '_n_cd26wFpw')
156 self.assertEqual(sanitize_filename('_BD_eEpuzXw', is_id=True), '_BD_eEpuzXw')
157 self.assertEqual(sanitize_filename('N0Y__7-UOdI', is_id=True), 'N0Y__7-UOdI')
796173d0 158
a2aaf4db
S
159 def test_sanitize_path(self):
160 if sys.platform != 'win32':
161 return
162
163 self.assertEqual(sanitize_path('abc'), 'abc')
164 self.assertEqual(sanitize_path('abc/def'), 'abc\\def')
165 self.assertEqual(sanitize_path('abc\\def'), 'abc\\def')
166 self.assertEqual(sanitize_path('abc|def'), 'abc#def')
167 self.assertEqual(sanitize_path('<>:"|?*'), '#######')
168 self.assertEqual(sanitize_path('C:/abc/def'), 'C:\\abc\\def')
169 self.assertEqual(sanitize_path('C?:/abc/def'), 'C##\\abc\\def')
170
171 self.assertEqual(sanitize_path('\\\\?\\UNC\\ComputerName\\abc'), '\\\\?\\UNC\\ComputerName\\abc')
172 self.assertEqual(sanitize_path('\\\\?\\UNC/ComputerName/abc'), '\\\\?\\UNC\\ComputerName\\abc')
173
174 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
175 self.assertEqual(sanitize_path('\\\\?\\C:/abc'), '\\\\?\\C:\\abc')
176 self.assertEqual(sanitize_path('\\\\?\\C:\\ab?c\\de:f'), '\\\\?\\C:\\ab#c\\de#f')
177 self.assertEqual(sanitize_path('\\\\?\\C:\\abc'), '\\\\?\\C:\\abc')
178
f18ef2d1
S
179 self.assertEqual(
180 sanitize_path('youtube/%(uploader)s/%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s'),
181 'youtube\\%(uploader)s\\%(autonumber)s-%(title)s-%(upload_date)s.%(ext)s')
182
183 self.assertEqual(
184 sanitize_path('youtube/TheWreckingYard ./00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part'),
185 'youtube\\TheWreckingYard #\\00001-Not bad, Especially for Free! (1987 Yamaha 700)-20141116.mp4.part')
186 self.assertEqual(sanitize_path('abc/def...'), 'abc\\def..#')
187 self.assertEqual(sanitize_path('abc.../def'), 'abc..#\\def')
188 self.assertEqual(sanitize_path('abc.../def...'), 'abc..#\\def..#')
189
2ebfeaca
S
190 self.assertEqual(sanitize_path('../abc'), '..\\abc')
191 self.assertEqual(sanitize_path('../../abc'), '..\\..\\abc')
192 self.assertEqual(sanitize_path('./abc'), 'abc')
193 self.assertEqual(sanitize_path('./../abc'), '..\\abc')
194
a4bcaad7
S
195 def test_prepend_extension(self):
196 self.assertEqual(prepend_extension('abc.ext', 'temp'), 'abc.temp.ext')
197 self.assertEqual(prepend_extension('abc.ext', 'temp', 'ext'), 'abc.temp.ext')
198 self.assertEqual(prepend_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
199 self.assertEqual(prepend_extension('abc', 'temp'), 'abc.temp')
200 self.assertEqual(prepend_extension('.abc', 'temp'), '.abc.temp')
201 self.assertEqual(prepend_extension('.abc.ext', 'temp'), '.abc.temp.ext')
202
b3ed15b7
S
203 def test_replace_extension(self):
204 self.assertEqual(replace_extension('abc.ext', 'temp'), 'abc.temp')
205 self.assertEqual(replace_extension('abc.ext', 'temp', 'ext'), 'abc.temp')
206 self.assertEqual(replace_extension('abc.unexpected_ext', 'temp', 'ext'), 'abc.unexpected_ext.temp')
207 self.assertEqual(replace_extension('abc', 'temp'), 'abc.temp')
208 self.assertEqual(replace_extension('.abc', 'temp'), '.abc.temp')
209 self.assertEqual(replace_extension('.abc.ext', 'temp'), '.abc.temp')
210
31b2051e
S
211 def test_remove_quotes(self):
212 self.assertEqual(remove_quotes(None), None)
213 self.assertEqual(remove_quotes('"'), '"')
214 self.assertEqual(remove_quotes("'"), "'")
215 self.assertEqual(remove_quotes(';'), ';')
216 self.assertEqual(remove_quotes('";'), '";')
217 self.assertEqual(remove_quotes('""'), '')
218 self.assertEqual(remove_quotes('";"'), ';')
219
59ae15a5 220 def test_ordered_set(self):
627dcfff 221 self.assertEqual(orderedSet([1, 1, 2, 3, 4, 4, 5, 6, 7, 3, 5]), [1, 2, 3, 4, 5, 6, 7])
59ae15a5
PH
222 self.assertEqual(orderedSet([]), [])
223 self.assertEqual(orderedSet([1]), [1])
5f6a1245 224 # keep the list ordered
627dcfff 225 self.assertEqual(orderedSet([135, 1, 1, 1]), [135, 1])
59ae15a5
PH
226
227 def test_unescape_html(self):
4e408e47 228 self.assertEqual(unescapeHTML('%20;'), '%20;')
91757b0f
NJ
229 self.assertEqual(unescapeHTML('&#x2F;'), '/')
230 self.assertEqual(unescapeHTML('&#47;'), '/')
7aefc49c
S
231 self.assertEqual(unescapeHTML('&eacute;'), 'é')
232 self.assertEqual(unescapeHTML('&#2013266066;'), '&#2013266066;')
5f6a1245 233
bd558525 234 def test_daterange(self):
5f6a1245 235 _20century = DateRange("19000101", "20000101")
bd558525
JMF
236 self.assertFalse("17890714" in _20century)
237 _ac = DateRange("00010101")
238 self.assertTrue("19690721" in _ac)
239 _firstmilenium = DateRange(end="10000101")
240 self.assertTrue("07110427" in _firstmilenium)
37254abc 241
bf50b038
JMF
242 def test_unified_dates(self):
243 self.assertEqual(unified_strdate('December 21, 2010'), '20101221')
244 self.assertEqual(unified_strdate('8/7/2009'), '20090708')
245 self.assertEqual(unified_strdate('Dec 14, 2012'), '20121214')
246 self.assertEqual(unified_strdate('2012/10/11 01:56:38 +0000'), '20121011')
a69801e2 247 self.assertEqual(unified_strdate('1968 12 10'), '19681210')
026fcc04 248 self.assertEqual(unified_strdate('1968-12-10'), '19681210')
99b67fec 249 self.assertEqual(unified_strdate('28/01/2014 21:00:00 +0100'), '20140128')
42bdd9d0
PH
250 self.assertEqual(
251 unified_strdate('11/26/2014 11:30:00 AM PST', day_first=False),
252 '20141126')
9bb8e0a3
PH
253 self.assertEqual(
254 unified_strdate('2/2/2015 6:47:40 PM', day_first=False),
255 '20150202')
f160785c 256 self.assertEqual(unified_strdate('Feb 14th 2016 5:45PM'), '20160214')
8cf70de4 257 self.assertEqual(unified_strdate('25-09-2014'), '20140925')
6a750402 258 self.assertEqual(unified_strdate('UNKNOWN DATE FORMAT'), None)
dae7c920 259
5035536e
S
260 def test_determine_ext(self):
261 self.assertEqual(determine_ext('http://example.com/foo/bar.mp4/?download'), 'mp4')
262 self.assertEqual(determine_ext('http://example.com/foo/bar/?download', None), None)
9cb9a5df
S
263 self.assertEqual(determine_ext('http://example.com/foo/bar.nonext/?download', None), None)
264 self.assertEqual(determine_ext('http://example.com/foo/bar/mp4?download', None), None)
265 self.assertEqual(determine_ext('http://example.com/foo/bar.m3u8//?download'), 'm3u8')
5035536e 266
59ae56fa 267 def test_find_xpath_attr(self):
4e408e47 268 testxml = '''<root>
59ae56fa
PH
269 <node/>
270 <node x="a"/>
271 <node x="a" y="c" />
272 <node x="b" y="d" />
ee114368 273 <node x="" />
59ae56fa 274 </root>'''
36e6f62c 275 doc = compat_etree_fromstring(testxml)
59ae56fa 276
ee114368 277 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n'), None)
59ae56fa 278 self.assertEqual(find_xpath_attr(doc, './/fourohfour', 'n', 'v'), None)
ee114368
S
279 self.assertEqual(find_xpath_attr(doc, './/node', 'n'), None)
280 self.assertEqual(find_xpath_attr(doc, './/node', 'n', 'v'), None)
281 self.assertEqual(find_xpath_attr(doc, './/node', 'x'), doc[1])
59ae56fa 282 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'a'), doc[1])
ee114368
S
283 self.assertEqual(find_xpath_attr(doc, './/node', 'x', 'b'), doc[3])
284 self.assertEqual(find_xpath_attr(doc, './/node', 'y'), doc[2])
59ae56fa 285 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'c'), doc[2])
ee114368
S
286 self.assertEqual(find_xpath_attr(doc, './/node', 'y', 'd'), doc[3])
287 self.assertEqual(find_xpath_attr(doc, './/node', 'x', ''), doc[4])
59ae56fa 288
d7e66d39 289 def test_xpath_with_ns(self):
4e408e47 290 testxml = '''<root xmlns:media="http://example.com/">
d7e66d39
JMF
291 <media:song>
292 <media:author>The Author</media:author>
293 <url>http://server.com/download.mp3</url>
294 </media:song>
295 </root>'''
36e6f62c 296 doc = compat_etree_fromstring(testxml)
d7e66d39
JMF
297 find = lambda p: doc.find(xpath_with_ns(p, {'media': 'http://example.com/'}))
298 self.assertTrue(find('media:song') is not None)
4e408e47
PH
299 self.assertEqual(find('media:song/media:author').text, 'The Author')
300 self.assertEqual(find('media:song/url').text, 'http://server.com/download.mp3')
d7e66d39 301
87f70ab3
S
302 def test_xpath_element(self):
303 doc = xml.etree.ElementTree.Element('root')
304 div = xml.etree.ElementTree.SubElement(doc, 'div')
305 p = xml.etree.ElementTree.SubElement(div, 'p')
306 p.text = 'Foo'
307 self.assertEqual(xpath_element(doc, 'div/p'), p)
578c0745
S
308 self.assertEqual(xpath_element(doc, ['div/p']), p)
309 self.assertEqual(xpath_element(doc, ['div/bar', 'div/p']), p)
87f70ab3 310 self.assertEqual(xpath_element(doc, 'div/bar', default='default'), 'default')
578c0745 311 self.assertEqual(xpath_element(doc, ['div/bar'], default='default'), 'default')
87f70ab3 312 self.assertTrue(xpath_element(doc, 'div/bar') is None)
578c0745
S
313 self.assertTrue(xpath_element(doc, ['div/bar']) is None)
314 self.assertTrue(xpath_element(doc, ['div/bar'], 'div/baz') is None)
87f70ab3 315 self.assertRaises(ExtractorError, xpath_element, doc, 'div/bar', fatal=True)
578c0745
S
316 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar'], fatal=True)
317 self.assertRaises(ExtractorError, xpath_element, doc, ['div/bar', 'div/baz'], fatal=True)
87f70ab3 318
5379a2d4
JMF
319 def test_xpath_text(self):
320 testxml = '''<root>
321 <div>
322 <p>Foo</p>
323 </div>
324 </root>'''
36e6f62c 325 doc = compat_etree_fromstring(testxml)
5379a2d4 326 self.assertEqual(xpath_text(doc, 'div/p'), 'Foo')
87f70ab3 327 self.assertEqual(xpath_text(doc, 'div/bar', default='default'), 'default')
5379a2d4
JMF
328 self.assertTrue(xpath_text(doc, 'div/bar') is None)
329 self.assertRaises(ExtractorError, xpath_text, doc, 'div/bar', fatal=True)
330
87f70ab3
S
331 def test_xpath_attr(self):
332 testxml = '''<root>
333 <div>
334 <p x="a">Foo</p>
335 </div>
336 </root>'''
36e6f62c 337 doc = compat_etree_fromstring(testxml)
87f70ab3
S
338 self.assertEqual(xpath_attr(doc, 'div/p', 'x'), 'a')
339 self.assertEqual(xpath_attr(doc, 'div/bar', 'x'), None)
340 self.assertEqual(xpath_attr(doc, 'div/p', 'y'), None)
341 self.assertEqual(xpath_attr(doc, 'div/bar', 'x', default='default'), 'default')
342 self.assertEqual(xpath_attr(doc, 'div/p', 'y', default='default'), 'default')
343 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/bar', 'x', fatal=True)
344 self.assertRaises(ExtractorError, xpath_attr, doc, 'div/p', 'y', fatal=True)
345
9d4660ca 346 def test_smuggle_url(self):
e075a44a 347 data = {"ö": "ö", "abc": [3]}
9d4660ca
PH
348 url = 'https://foo.bar/baz?x=y#a'
349 smug_url = smuggle_url(url, data)
350 unsmug_url, unsmug_data = unsmuggle_url(smug_url)
351 self.assertEqual(url, unsmug_url)
352 self.assertEqual(data, unsmug_data)
353
354 res_url, res_data = unsmuggle_url(url)
355 self.assertEqual(res_url, url)
356 self.assertEqual(res_data, None)
357
a6a173c2 358 def test_shell_quote(self):
4e408e47
PH
359 args = ['ffmpeg', '-i', encodeFilename('ñ€ß\'.mp4')]
360 self.assertEqual(shell_quote(args), """ffmpeg -i 'ñ€ß'"'"'.mp4'""")
a6a173c2 361
f53c966a
JMF
362 def test_str_to_int(self):
363 self.assertEqual(str_to_int('123,456'), 123456)
364 self.assertEqual(str_to_int('123.456'), 123456)
365
29eb5174 366 def test_url_basename(self):
4e408e47
PH
367 self.assertEqual(url_basename('http://foo.de/'), '')
368 self.assertEqual(url_basename('http://foo.de/bar/baz'), 'baz')
369 self.assertEqual(url_basename('http://foo.de/bar/baz?x=y'), 'baz')
370 self.assertEqual(url_basename('http://foo.de/bar/baz#x=y'), 'baz')
371 self.assertEqual(url_basename('http://foo.de/bar/baz/'), 'baz')
d6c7a367 372 self.assertEqual(
4e408e47
PH
373 url_basename('http://media.w3.org/2010/05/sintel/trailer.mp4'),
374 'trailer.mp4')
9d4660ca 375
608d11f5
PH
376 def test_parse_duration(self):
377 self.assertEqual(parse_duration(None), None)
a5fb718c
S
378 self.assertEqual(parse_duration(False), None)
379 self.assertEqual(parse_duration('invalid'), None)
608d11f5
PH
380 self.assertEqual(parse_duration('1'), 1)
381 self.assertEqual(parse_duration('1337:12'), 80232)
382 self.assertEqual(parse_duration('9:12:43'), 33163)
2db806b4
S
383 self.assertEqual(parse_duration('12:00'), 720)
384 self.assertEqual(parse_duration('00:01:01'), 61)
608d11f5 385 self.assertEqual(parse_duration('x:y'), None)
2db806b4 386 self.assertEqual(parse_duration('3h11m53s'), 11513)
ca7b3246
S
387 self.assertEqual(parse_duration('3h 11m 53s'), 11513)
388 self.assertEqual(parse_duration('3 hours 11 minutes 53 seconds'), 11513)
389 self.assertEqual(parse_duration('3 hours 11 mins 53 secs'), 11513)
2db806b4
S
390 self.assertEqual(parse_duration('62m45s'), 3765)
391 self.assertEqual(parse_duration('6m59s'), 419)
392 self.assertEqual(parse_duration('49s'), 49)
393 self.assertEqual(parse_duration('0h0m0s'), 0)
394 self.assertEqual(parse_duration('0m0s'), 0)
395 self.assertEqual(parse_duration('0s'), 0)
7adcbe75 396 self.assertEqual(parse_duration('01:02:03.05'), 3723.05)
6a68bb57 397 self.assertEqual(parse_duration('T30M38S'), 1838)
e8df5cee
PH
398 self.assertEqual(parse_duration('5 s'), 5)
399 self.assertEqual(parse_duration('3 min'), 180)
400 self.assertEqual(parse_duration('2.5 hours'), 9000)
8f4b58d7
PH
401 self.assertEqual(parse_duration('02:03:04'), 7384)
402 self.assertEqual(parse_duration('01:02:03:04'), 93784)
3e675fab 403 self.assertEqual(parse_duration('1 hour 3 minutes'), 3780)
9c29bc69 404 self.assertEqual(parse_duration('87 Min.'), 5220)
608d11f5 405
5aafe895
PH
406 def test_fix_xml_ampersands(self):
407 self.assertEqual(
408 fix_xml_ampersands('"&x=y&z=a'), '"&amp;x=y&amp;z=a')
409 self.assertEqual(
410 fix_xml_ampersands('"&amp;x=y&wrong;&z=a'),
411 '"&amp;x=y&amp;wrong;&amp;z=a')
412 self.assertEqual(
413 fix_xml_ampersands('&amp;&apos;&gt;&lt;&quot;'),
414 '&amp;&apos;&gt;&lt;&quot;')
415 self.assertEqual(
416 fix_xml_ampersands('&#1234;&#x1abC;'), '&#1234;&#x1abC;')
417 self.assertEqual(fix_xml_ampersands('&#&#'), '&amp;#&amp;#')
418
b7ab0590
PH
419 def test_paged_list(self):
420 def testPL(size, pagesize, sliceargs, expected):
421 def get_page(pagenum):
422 firstid = pagenum * pagesize
423 upto = min(size, pagenum * pagesize + pagesize)
424 for i in range(firstid, upto):
425 yield i
426
9c44d242 427 pl = OnDemandPagedList(get_page, pagesize)
b7ab0590
PH
428 got = pl.getslice(*sliceargs)
429 self.assertEqual(got, expected)
430
9c44d242
PH
431 iapl = InAdvancePagedList(get_page, size // pagesize + 1, pagesize)
432 got = iapl.getslice(*sliceargs)
433 self.assertEqual(got, expected)
434
b7ab0590
PH
435 testPL(5, 2, (), [0, 1, 2, 3, 4])
436 testPL(5, 2, (1,), [1, 2, 3, 4])
437 testPL(5, 2, (2,), [2, 3, 4])
438 testPL(5, 2, (4,), [4])
439 testPL(5, 2, (0, 3), [0, 1, 2])
440 testPL(5, 2, (1, 4), [1, 2, 3])
441 testPL(5, 2, (2, 99), [2, 3, 4])
442 testPL(5, 2, (20, 99), [])
443
b53466e1 444 def test_struct_unpack(self):
4e408e47 445 self.assertEqual(struct_unpack('!B', b'\x00'), (0,))
b53466e1 446
62e609ab 447 def test_read_batch_urls(self):
4e408e47 448 f = io.StringIO('''\xef\xbb\xbf foo
62e609ab
PH
449 bar\r
450 baz
451 # More after this line\r
452 ; or after this
453 bam''')
4e408e47 454 self.assertEqual(read_batch_urls(f), ['foo', 'bar', 'baz', 'bam'])
62e609ab 455
b74fa8cd
JMF
456 def test_urlencode_postdata(self):
457 data = urlencode_postdata({'username': 'foo@bar.com', 'password': '1234'})
458 self.assertTrue(isinstance(data, bytes))
459
fb640d0a 460 def test_update_url_query(self):
461 def query_dict(url):
462 return compat_parse_qs(compat_urlparse.urlparse(url).query)
463 self.assertEqual(query_dict(update_url_query(
464 'http://example.com/path', {'quality': ['HD'], 'format': ['mp4']})),
465 query_dict('http://example.com/path?quality=HD&format=mp4'))
466 self.assertEqual(query_dict(update_url_query(
467 'http://example.com/path', {'system': ['LINUX', 'WINDOWS']})),
468 query_dict('http://example.com/path?system=LINUX&system=WINDOWS'))
469 self.assertEqual(query_dict(update_url_query(
470 'http://example.com/path', {'fields': 'id,formats,subtitles'})),
471 query_dict('http://example.com/path?fields=id,formats,subtitles'))
472 self.assertEqual(query_dict(update_url_query(
473 'http://example.com/path', {'fields': ('id,formats,subtitles', 'thumbnails')})),
474 query_dict('http://example.com/path?fields=id,formats,subtitles&fields=thumbnails'))
475 self.assertEqual(query_dict(update_url_query(
476 'http://example.com/path?manifest=f4m', {'manifest': []})),
477 query_dict('http://example.com/path'))
478 self.assertEqual(query_dict(update_url_query(
479 'http://example.com/path?system=LINUX&system=WINDOWS', {'system': 'LINUX'})),
480 query_dict('http://example.com/path?system=LINUX'))
481 self.assertEqual(query_dict(update_url_query(
482 'http://example.com/path', {'fields': b'id,formats,subtitles'})),
483 query_dict('http://example.com/path?fields=id,formats,subtitles'))
484
cbecc9b9 485 def test_dict_get(self):
86296ad2
S
486 FALSE_VALUES = {
487 'none': None,
488 'false': False,
489 'zero': 0,
490 'empty_string': '',
491 'empty_list': [],
cbecc9b9 492 }
86296ad2
S
493 d = FALSE_VALUES.copy()
494 d['a'] = 42
cbecc9b9
S
495 self.assertEqual(dict_get(d, 'a'), 42)
496 self.assertEqual(dict_get(d, 'b'), None)
497 self.assertEqual(dict_get(d, 'b', 42), 42)
498 self.assertEqual(dict_get(d, ('a', )), 42)
499 self.assertEqual(dict_get(d, ('b', 'a', )), 42)
500 self.assertEqual(dict_get(d, ('b', 'c', 'a', 'd', )), 42)
501 self.assertEqual(dict_get(d, ('b', 'c', )), None)
502 self.assertEqual(dict_get(d, ('b', 'c', ), 42), 42)
86296ad2
S
503 for key, false_value in FALSE_VALUES.items():
504 self.assertEqual(dict_get(d, ('b', 'c', key, )), None)
505 self.assertEqual(dict_get(d, ('b', 'c', key, ), skip_false_values=False), false_value)
cbecc9b9 506
6b77d52b
S
507 def test_encode_compat_str(self):
508 self.assertEqual(encode_compat_str(b'\xd1\x82\xd0\xb5\xd1\x81\xd1\x82', 'utf-8'), 'тест')
509 self.assertEqual(encode_compat_str('тест', 'utf-8'), 'тест')
510
912b38b4
PH
511 def test_parse_iso8601(self):
512 self.assertEqual(parse_iso8601('2014-03-23T23:04:26+0100'), 1395612266)
513 self.assertEqual(parse_iso8601('2014-03-23T22:04:26+0000'), 1395612266)
514 self.assertEqual(parse_iso8601('2014-03-23T22:04:26Z'), 1395612266)
6ad4013d 515 self.assertEqual(parse_iso8601('2014-03-23T22:04:26.1234Z'), 1395612266)
52c3a6e4
S
516 self.assertEqual(parse_iso8601('2015-09-29T08:27:31.727'), 1443515251)
517 self.assertEqual(parse_iso8601('2015-09-29T08-27-31.727'), None)
912b38b4 518
fac55558
PH
519 def test_strip_jsonp(self):
520 stripped = strip_jsonp('cb ([ {"id":"532cb",\n\n\n"x":\n3}\n]\n);')
521 d = json.loads(stripped)
522 self.assertEqual(d, [{"id": "532cb", "x": 3}])
523
609a61e3
PH
524 stripped = strip_jsonp('parseMetadata({"STATUS":"OK"})\n\n\n//epc')
525 d = json.loads(stripped)
526 self.assertEqual(d, {'STATUS': 'OK'})
527
8411229b
S
528 stripped = strip_jsonp('ps.embedHandler({"status": "success"});')
529 d = json.loads(stripped)
530 self.assertEqual(d, {'status': 'success'})
531
173a7026 532 def test_uppercase_escape(self):
4e408e47
PH
533 self.assertEqual(uppercase_escape('aä'), 'aä')
534 self.assertEqual(uppercase_escape('\\U0001d550'), '𝕐')
fac55558 535
0fe2ff78
YCH
536 def test_lowercase_escape(self):
537 self.assertEqual(lowercase_escape('aä'), 'aä')
538 self.assertEqual(lowercase_escape('\\u0026'), '&')
539
a020a0dc
PH
540 def test_limit_length(self):
541 self.assertEqual(limit_length(None, 12), None)
542 self.assertEqual(limit_length('foo', 12), 'foo')
543 self.assertTrue(
544 limit_length('foo bar baz asd', 12).startswith('foo bar'))
545 self.assertTrue('...' in limit_length('foo bar baz asd', 12))
546
d05cfe06
S
547 def test_escape_rfc3986(self):
548 reserved = "!*'();:@&=+$,/?#[]"
549 unreserved = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.~'
550 self.assertEqual(escape_rfc3986(reserved), reserved)
551 self.assertEqual(escape_rfc3986(unreserved), unreserved)
552 self.assertEqual(escape_rfc3986('тест'), '%D1%82%D0%B5%D1%81%D1%82')
553 self.assertEqual(escape_rfc3986('%D1%82%D0%B5%D1%81%D1%82'), '%D1%82%D0%B5%D1%81%D1%82')
554 self.assertEqual(escape_rfc3986('foo bar'), 'foo%20bar')
555 self.assertEqual(escape_rfc3986('foo%20bar'), 'foo%20bar')
556
557 def test_escape_url(self):
558 self.assertEqual(
559 escape_url('http://wowza.imust.org/srv/vod/telemb/new/UPLOAD/UPLOAD/20224_IncendieHavré_FD.mp4'),
560 'http://wowza.imust.org/srv/vod/telemb/new/UPLOAD/UPLOAD/20224_IncendieHavre%CC%81_FD.mp4'
561 )
562 self.assertEqual(
563 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'),
564 'http://www.ardmediathek.de/tv/Sturm-der-Liebe/Folge-2036-Zu-Mann-und-Frau-erkl%C3%A4rt/Das-Erste/Video?documentId=22673108&bcastId=5290'
565 )
566 self.assertEqual(
567 escape_url('http://тест.рф/фрагмент'),
568 'http://тест.рф/%D1%84%D1%80%D0%B0%D0%B3%D0%BC%D0%B5%D0%BD%D1%82'
569 )
570 self.assertEqual(
571 escape_url('http://тест.рф/абв?абв=абв#абв'),
572 'http://тест.рф/%D0%B0%D0%B1%D0%B2?%D0%B0%D0%B1%D0%B2=%D0%B0%D0%B1%D0%B2#%D0%B0%D0%B1%D0%B2'
573 )
574 self.assertEqual(escape_url('http://vimeo.com/56015672#at=0'), 'http://vimeo.com/56015672#at=0')
575
e7b6d122 576 def test_js_to_json_realworld(self):
410f3e73 577 inp = '''{
e7b6d122 578 'clip':{'provider':'pseudo'}
410f3e73
PH
579 }'''
580 self.assertEqual(js_to_json(inp), '''{
e7b6d122 581 "clip":{"provider":"pseudo"}
410f3e73
PH
582 }''')
583 json.loads(js_to_json(inp))
584
e7b6d122
PH
585 inp = '''{
586 'playlist':[{'controls':{'all':null}}]
587 }'''
588 self.assertEqual(js_to_json(inp), '''{
589 "playlist":[{"controls":{"all":null}}]
590 }''')
591
d01949dc
S
592 inp = '''"The CW\\'s \\'Crazy Ex-Girlfriend\\'"'''
593 self.assertEqual(js_to_json(inp), '''"The CW's 'Crazy Ex-Girlfriend'"''')
594
d305dd73
PH
595 inp = '"SAND Number: SAND 2013-7800P\\nPresenter: Tom Russo\\nHabanero Software Training - Xyce Software\\nXyce, Sandia\\u0027s"'
596 json_code = js_to_json(inp)
597 self.assertEqual(json.loads(json_code), json.loads(inp))
598
e7b6d122
PH
599 def test_js_to_json_edgecases(self):
600 on = js_to_json("{abc_def:'1\\'\\\\2\\\\\\'3\"4'}")
601 self.assertEqual(json.loads(on), {"abc_def": "1'\\2\\'3\"4"})
602
603 on = js_to_json('{"abc": true}')
604 self.assertEqual(json.loads(on), {'abc': True})
605
8f4b58d7
PH
606 # Ignore JavaScript code as well
607 on = js_to_json('''{
608 "x": 1,
609 y: "a",
610 z: some.code
611 }''')
612 d = json.loads(on)
613 self.assertEqual(d['x'], 1)
614 self.assertEqual(d['y'], 'a')
615
ba9e68f4
S
616 on = js_to_json('["abc", "def",]')
617 self.assertEqual(json.loads(on), ['abc', 'def'])
618
619 on = js_to_json('{"abc": "def",}')
620 self.assertEqual(json.loads(on), {'abc': 'def'})
621
e4bdb37e
PH
622 def test_clean_html(self):
623 self.assertEqual(clean_html('a:\nb'), 'a: b')
624 self.assertEqual(clean_html('a:\n "b"'), 'a: "b"')
625
4c0924bb
PH
626 def test_intlist_to_bytes(self):
627 self.assertEqual(
628 intlist_to_bytes([0, 1, 127, 128, 255]),
629 b'\x00\x01\x7f\x80\xff')
630
7d4111ed
PH
631 def test_args_to_str(self):
632 self.assertEqual(
633 args_to_str(['foo', 'ba/r', '-baz', '2 be', '']),
634 'foo ba/r -baz \'2 be\' \'\''
635 )
636
be64b5b0
PH
637 def test_parse_filesize(self):
638 self.assertEqual(parse_filesize(None), None)
639 self.assertEqual(parse_filesize(''), None)
640 self.assertEqual(parse_filesize('91 B'), 91)
641 self.assertEqual(parse_filesize('foobar'), None)
642 self.assertEqual(parse_filesize('2 MiB'), 2097152)
643 self.assertEqual(parse_filesize('5 GB'), 5000000000)
644 self.assertEqual(parse_filesize('1.2Tb'), 1200000000000)
4349c07d 645 self.assertEqual(parse_filesize('1,24 KB'), 1240)
be64b5b0 646
5f9b8394
PH
647 def test_version_tuple(self):
648 self.assertEqual(version_tuple('1'), (1,))
649 self.assertEqual(version_tuple('10.23.344'), (10, 23, 344))
47d7c642 650 self.assertEqual(version_tuple('10.1-6'), (10, 1, 6)) # avconv style
5f9b8394 651
cae97f65
PH
652 def test_detect_exe_version(self):
653 self.assertEqual(detect_exe_version('''ffmpeg version 1.2.1
654built on May 27 2013 08:37:26 with gcc 4.7 (Debian 4.7.3-4)
655configuration: --prefix=/usr --extra-'''), '1.2.1')
656 self.assertEqual(detect_exe_version('''ffmpeg version N-63176-g1fb4685
657built on May 15 2014 22:09:06 with gcc 4.8.2 (GCC)'''), 'N-63176-g1fb4685')
658 self.assertEqual(detect_exe_version('''X server found. dri2 connection failed!
659Trying to open render node...
660Success at /dev/dri/renderD128.
661ffmpeg version 2.4.4 Copyright (c) 2000-2014 the FFmpeg ...'''), '2.4.4')
662
05900629
PH
663 def test_age_restricted(self):
664 self.assertFalse(age_restricted(None, 10)) # unrestricted content
665 self.assertFalse(age_restricted(1, None)) # unrestricted policy
666 self.assertFalse(age_restricted(8, 10))
667 self.assertTrue(age_restricted(18, 14))
668 self.assertFalse(age_restricted(18, 18))
669
61ca9a80
PH
670 def test_is_html(self):
671 self.assertFalse(is_html(b'\x49\x44\x43<html'))
672 self.assertTrue(is_html(b'<!DOCTYPE foo>\xaaa'))
673 self.assertTrue(is_html( # UTF-8 with BOM
674 b'\xef\xbb\xbf<!DOCTYPE foo>\xaaa'))
675 self.assertTrue(is_html( # UTF-16-LE
676 b'\xff\xfe<\x00h\x00t\x00m\x00l\x00>\x00\xe4\x00'
677 ))
678 self.assertTrue(is_html( # UTF-16-BE
679 b'\xfe\xff\x00<\x00h\x00t\x00m\x00l\x00>\x00\xe4'
680 ))
681 self.assertTrue(is_html( # UTF-32-BE
682 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'))
683 self.assertTrue(is_html( # UTF-32-LE
684 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'))
685
cfb56d1a
PH
686 def test_render_table(self):
687 self.assertEqual(
688 render_table(
689 ['a', 'bcd'],
690 [[123, 4], [9999, 51]]),
691 'a bcd\n'
692 '123 4\n'
693 '9999 51')
694
347de493
PH
695 def test_match_str(self):
696 self.assertRaises(ValueError, match_str, 'xy>foobar', {})
697 self.assertFalse(match_str('xy', {'x': 1200}))
698 self.assertTrue(match_str('!xy', {'x': 1200}))
699 self.assertTrue(match_str('x', {'x': 1200}))
700 self.assertFalse(match_str('!x', {'x': 1200}))
701 self.assertTrue(match_str('x', {'x': 0}))
702 self.assertFalse(match_str('x>0', {'x': 0}))
703 self.assertFalse(match_str('x>0', {}))
704 self.assertTrue(match_str('x>?0', {}))
705 self.assertTrue(match_str('x>1K', {'x': 1200}))
706 self.assertFalse(match_str('x>2K', {'x': 1200}))
707 self.assertTrue(match_str('x>=1200 & x < 1300', {'x': 1200}))
708 self.assertFalse(match_str('x>=1100 & x < 1200', {'x': 1200}))
709 self.assertFalse(match_str('y=a212', {'y': 'foobar42'}))
710 self.assertTrue(match_str('y=foobar42', {'y': 'foobar42'}))
711 self.assertFalse(match_str('y!=foobar42', {'y': 'foobar42'}))
712 self.assertTrue(match_str('y!=foobar2', {'y': 'foobar42'}))
713 self.assertFalse(match_str(
714 'like_count > 100 & dislike_count <? 50 & description',
715 {'like_count': 90, 'description': 'foo'}))
716 self.assertTrue(match_str(
717 'like_count > 100 & dislike_count <? 50 & description',
718 {'like_count': 190, 'description': 'foo'}))
719 self.assertFalse(match_str(
720 'like_count > 100 & dislike_count <? 50 & description',
721 {'like_count': 190, 'dislike_count': 60, 'description': 'foo'}))
722 self.assertFalse(match_str(
723 'like_count > 100 & dislike_count <? 50 & description',
724 {'like_count': 190, 'dislike_count': 10}))
725
bf6427d2 726 def test_parse_dfxp_time_expr(self):
d631d5f9
YCH
727 self.assertEqual(parse_dfxp_time_expr(None), None)
728 self.assertEqual(parse_dfxp_time_expr(''), None)
bf6427d2
YCH
729 self.assertEqual(parse_dfxp_time_expr('0.1'), 0.1)
730 self.assertEqual(parse_dfxp_time_expr('0.1s'), 0.1)
731 self.assertEqual(parse_dfxp_time_expr('00:00:01'), 1.0)
732 self.assertEqual(parse_dfxp_time_expr('00:00:01.100'), 1.1)
db2fe38b 733 self.assertEqual(parse_dfxp_time_expr('00:00:01:100'), 1.1)
bf6427d2
YCH
734
735 def test_dfxp2srt(self):
736 dfxp_data = '''<?xml version="1.0" encoding="UTF-8"?>
737 <tt xmlns="http://www.w3.org/ns/ttml" xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
738 <body>
739 <div xml:lang="en">
740 <p begin="0" end="1">The following line contains Chinese characters and special symbols</p>
741 <p begin="1" end="2">第二行<br/>♪♪</p>
7dff0363 742 <p begin="2" dur="1"><span>Third<br/>Line</span></p>
d631d5f9
YCH
743 <p begin="3" end="-1">Lines with invalid timestamps are ignored</p>
744 <p begin="-1" end="-1">Ignore, two</p>
745 <p begin="3" dur="-1">Ignored, three</p>
bf6427d2
YCH
746 </div>
747 </body>
748 </tt>'''
749 srt_data = '''1
75000:00:00,000 --> 00:00:01,000
751The following line contains Chinese characters and special symbols
752
7532
75400:00:01,000 --> 00:00:02,000
755第二行
756♪♪
757
7583
75900:00:02,000 --> 00:00:03,000
760Third
761Line
762
763'''
764 self.assertEqual(dfxp2srt(dfxp_data), srt_data)
765
1b0427e6
YCH
766 dfxp_data_no_default_namespace = '''<?xml version="1.0" encoding="UTF-8"?>
767 <tt xml:lang="en" xmlns:tts="http://www.w3.org/ns/ttml#parameter">
768 <body>
769 <div xml:lang="en">
770 <p begin="0" end="1">The first line</p>
771 </div>
772 </body>
773 </tt>'''
774 srt_data = '''1
77500:00:00,000 --> 00:00:01,000
776The first line
777
778'''
779 self.assertEqual(dfxp2srt(dfxp_data_no_default_namespace), srt_data)
780
f7126449
S
781 def test_cli_option(self):
782 self.assertEqual(cli_option({'proxy': '127.0.0.1:3128'}, '--proxy', 'proxy'), ['--proxy', '127.0.0.1:3128'])
783 self.assertEqual(cli_option({'proxy': None}, '--proxy', 'proxy'), [])
784 self.assertEqual(cli_option({}, '--proxy', 'proxy'), [])
785
786 def test_cli_valueless_option(self):
787 self.assertEqual(cli_valueless_option(
788 {'downloader': 'external'}, '--external-downloader', 'downloader', 'external'), ['--external-downloader'])
789 self.assertEqual(cli_valueless_option(
790 {'downloader': 'internal'}, '--external-downloader', 'downloader', 'external'), [])
791 self.assertEqual(cli_valueless_option(
792 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'), ['--no-check-certificate'])
793 self.assertEqual(cli_valueless_option(
794 {'nocheckcertificate': False}, '--no-check-certificate', 'nocheckcertificate'), [])
795 self.assertEqual(cli_valueless_option(
796 {'checkcertificate': True}, '--no-check-certificate', 'checkcertificate', False), [])
797 self.assertEqual(cli_valueless_option(
798 {'checkcertificate': False}, '--no-check-certificate', 'checkcertificate', False), ['--no-check-certificate'])
799
800 def test_cli_bool_option(self):
801 self.assertEqual(
802 cli_bool_option(
803 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate'),
804 ['--no-check-certificate', 'true'])
805 self.assertEqual(
806 cli_bool_option(
807 {'nocheckcertificate': True}, '--no-check-certificate', 'nocheckcertificate', separator='='),
808 ['--no-check-certificate=true'])
809 self.assertEqual(
810 cli_bool_option(
811 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
812 ['--check-certificate', 'false'])
813 self.assertEqual(
814 cli_bool_option(
815 {'nocheckcertificate': True}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
816 ['--check-certificate=false'])
817 self.assertEqual(
818 cli_bool_option(
819 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true'),
820 ['--check-certificate', 'true'])
821 self.assertEqual(
822 cli_bool_option(
823 {'nocheckcertificate': False}, '--check-certificate', 'nocheckcertificate', 'false', 'true', '='),
824 ['--check-certificate=true'])
825
5bc880b9
YCH
826 def test_ohdave_rsa_encrypt(self):
827 N = 0xab86b6371b5318aaa1d3c9e612a9f1264f372323c8c0f19875b5fc3b3fd3afcc1e5bec527aa94bfa85bffc157e4245aebda05389a5357b75115ac94f074aefcd
828 e = 65537
829
830 self.assertEqual(
831 ohdave_rsa_encrypt(b'aa111222', e, N),
832 '726664bd9a23fd0c70f9f1b84aab5e3905ce1e45a584e9cbcf9bcc7510338fc1986d6c599ff990d923aa43c51c0d9013cd572e13bc58f4ae48f2ed8c0b0ba881')
cfb56d1a 833
5eb6bdce
YCH
834 def test_encode_base_n(self):
835 self.assertEqual(encode_base_n(0, 30), '0')
836 self.assertEqual(encode_base_n(80, 30), '2k')
837
838 custom_table = '9876543210ZYXWVUTSRQPONMLKJIHGFEDCBA'
839 self.assertEqual(encode_base_n(0, 30, custom_table), '9')
840 self.assertEqual(encode_base_n(80, 30, custom_table), '7P')
841
842 self.assertRaises(ValueError, encode_base_n, 0, 70)
843 self.assertRaises(ValueError, encode_base_n, 0, 60, custom_table)
844
dae7c920 845if __name__ == '__main__':
59ae15a5 846 unittest.main()