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.

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