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.

99 lines
4.4 KiB

  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. from youtube_dl.utils import get_filesystem_encoding
  10. from youtube_dl.compat import (
  11. compat_getenv,
  12. compat_etree_fromstring,
  13. compat_expanduser,
  14. compat_shlex_split,
  15. compat_str,
  16. compat_urllib_parse_unquote,
  17. compat_urllib_parse_unquote_plus,
  18. compat_urllib_parse_urlencode,
  19. )
  20. class TestCompat(unittest.TestCase):
  21. def test_compat_getenv(self):
  22. test_str = 'тест'
  23. os.environ['YOUTUBE-DL-TEST'] = (
  24. test_str if sys.version_info >= (3, 0)
  25. else test_str.encode(get_filesystem_encoding()))
  26. self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)
  27. def test_compat_expanduser(self):
  28. old_home = os.environ.get('HOME')
  29. test_str = 'C:\Documents and Settings\тест\Application Data'
  30. os.environ['HOME'] = (
  31. test_str if sys.version_info >= (3, 0)
  32. else test_str.encode(get_filesystem_encoding()))
  33. self.assertEqual(compat_expanduser('~'), test_str)
  34. os.environ['HOME'] = old_home
  35. def test_all_present(self):
  36. import youtube_dl.compat
  37. all_names = youtube_dl.compat.__all__
  38. present_names = set(filter(
  39. lambda c: '_' in c and not c.startswith('_'),
  40. dir(youtube_dl.compat))) - set(['unicode_literals'])
  41. self.assertEqual(all_names, sorted(present_names))
  42. def test_compat_urllib_parse_unquote(self):
  43. self.assertEqual(compat_urllib_parse_unquote('abc%20def'), 'abc def')
  44. self.assertEqual(compat_urllib_parse_unquote('%7e/abc+def'), '~/abc+def')
  45. self.assertEqual(compat_urllib_parse_unquote(''), '')
  46. self.assertEqual(compat_urllib_parse_unquote('%'), '%')
  47. self.assertEqual(compat_urllib_parse_unquote('%%'), '%%')
  48. self.assertEqual(compat_urllib_parse_unquote('%%%'), '%%%')
  49. self.assertEqual(compat_urllib_parse_unquote('%2F'), '/')
  50. self.assertEqual(compat_urllib_parse_unquote('%2f'), '/')
  51. self.assertEqual(compat_urllib_parse_unquote('%E6%B4%A5%E6%B3%A2'), '津波')
  52. self.assertEqual(
  53. compat_urllib_parse_unquote('''<meta property="og:description" content="%E2%96%81%E2%96%82%E2%96%83%E2%96%84%25%E2%96%85%E2%96%86%E2%96%87%E2%96%88" />
  54. %<a href="https://ar.wikipedia.org/wiki/%D8%AA%D8%B3%D9%88%D9%86%D8%A7%D9%85%D9%8A">%a'''),
  55. '''<meta property="og:description" content="▁▂▃▄%▅▆▇█" />
  56. %<a href="https://ar.wikipedia.org/wiki/تسونامي">%a''')
  57. self.assertEqual(
  58. compat_urllib_parse_unquote('''%28%5E%E2%97%A3_%E2%97%A2%5E%29%E3%81%A3%EF%B8%BB%E3%83%87%E2%95%90%E4%B8%80 %E2%87%80 %E2%87%80 %E2%87%80 %E2%87%80 %E2%87%80 %E2%86%B6%I%Break%25Things%'''),
  59. '''(^◣_◢^)っ︻デ═一 ⇀ ⇀ ⇀ ⇀ ⇀ ↶%I%Break%Things%''')
  60. def test_compat_urllib_parse_unquote_plus(self):
  61. self.assertEqual(compat_urllib_parse_unquote_plus('abc%20def'), 'abc def')
  62. self.assertEqual(compat_urllib_parse_unquote_plus('%7e/abc+def'), '~/abc def')
  63. def test_compat_urllib_parse_urlencode(self):
  64. self.assertEqual(compat_urllib_parse_urlencode({'abc': 'def'}), 'abc=def')
  65. self.assertEqual(compat_urllib_parse_urlencode({'abc': b'def'}), 'abc=def')
  66. self.assertEqual(compat_urllib_parse_urlencode({b'abc': 'def'}), 'abc=def')
  67. self.assertEqual(compat_urllib_parse_urlencode({b'abc': b'def'}), 'abc=def')
  68. def test_compat_shlex_split(self):
  69. self.assertEqual(compat_shlex_split('-option "one two"'), ['-option', 'one two'])
  70. def test_compat_etree_fromstring(self):
  71. xml = '''
  72. <root foo="bar" spam="中文">
  73. <normal>foo</normal>
  74. <chinese></chinese>
  75. <foo><bar>spam</bar></foo>
  76. </root>
  77. '''
  78. doc = compat_etree_fromstring(xml.encode('utf-8'))
  79. self.assertTrue(isinstance(doc.attrib['foo'], compat_str))
  80. self.assertTrue(isinstance(doc.attrib['spam'], compat_str))
  81. self.assertTrue(isinstance(doc.find('normal').text, compat_str))
  82. self.assertTrue(isinstance(doc.find('chinese').text, compat_str))
  83. self.assertTrue(isinstance(doc.find('foo/bar').text, compat_str))
  84. if __name__ == '__main__':
  85. unittest.main()