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.

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