You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

920 lines
42 KiB

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