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.

127 lines
4.1 KiB

  1. #!/usr/bin/env python
  2. from __future__ import unicode_literals
  3. # Allow direct execution
  4. import os
  5. import sys
  6. import unittest
  7. sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  8. import io
  9. import re
  10. import string
  11. from youtube_dl.extractor import YoutubeIE
  12. from youtube_dl.utils import compat_str, compat_urlretrieve
  13. _TESTS = [
  14. (
  15. 'https://s.ytimg.com/yts/jsbin/html5player-vflHOr_nV.js',
  16. 'js',
  17. 86,
  18. '>=<;:/.-[+*)(\'&%$#"!ZYX0VUTSRQPONMLKJIHGFEDCBA\\yxwvutsrqponmlkjihgfedcba987654321',
  19. ),
  20. (
  21. 'https://s.ytimg.com/yts/jsbin/html5player-vfldJ8xgI.js',
  22. 'js',
  23. 85,
  24. '3456789a0cdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRS[UVWXYZ!"#$%&\'()*+,-./:;<=>?@',
  25. ),
  26. (
  27. 'https://s.ytimg.com/yts/jsbin/html5player-vfle-mVwz.js',
  28. 'js',
  29. 90,
  30. ']\\[@?>=<;:/.-,+*)(\'&%$#"hZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjiagfedcb39876',
  31. ),
  32. (
  33. 'https://s.ytimg.com/yts/jsbin/html5player-en_US-vfl0Cbn9e.js',
  34. 'js',
  35. 84,
  36. 'O1I3456789abcde0ghijklmnopqrstuvwxyzABCDEFGHfJKLMN2PQRSTUVW@YZ!"#$%&\'()*+,-./:;<=',
  37. ),
  38. (
  39. 'https://s.ytimg.com/yts/jsbin/html5player-en_US-vflXGBaUN.js',
  40. 'js',
  41. '2ACFC7A61CA478CD21425E5A57EBD73DDC78E22A.2094302436B2D377D14A3BBA23022D023B8BC25AA',
  42. 'A52CB8B320D22032ABB3A41D773D2B6342034902.A22E87CDD37DBE75A5E52412DC874AC16A7CFCA2',
  43. ),
  44. (
  45. 'http://s.ytimg.com/yts/swfbin/player-vfl5vIhK2/watch_as3.swf',
  46. 'swf',
  47. 86,
  48. 'O1I3456789abcde0ghijklmnopqrstuvwxyzABCDEFGHfJKLMN2PQRSTUVWXY\\!"#$%&\'()*+,-./:;<=>?'
  49. ),
  50. (
  51. 'http://s.ytimg.com/yts/swfbin/player-vflmDyk47/watch_as3.swf',
  52. 'swf',
  53. 'F375F75BF2AFDAAF2666E43868D46816F83F13E81C46.3725A8218E446A0DECD33F79DC282994D6AA92C92C9',
  54. '9C29AA6D499282CD97F33DCED0A644E8128A5273.64C18E31F38361864D86834E6662FAADFA2FB57F'
  55. ),
  56. (
  57. 'https://s.ytimg.com/yts/jsbin/html5player-en_US-vflBb0OQx.js',
  58. 'js',
  59. 84,
  60. '123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQ0STUVWXYZ!"#$%&\'()*+,@./:;<=>'
  61. ),
  62. (
  63. 'https://s.ytimg.com/yts/jsbin/html5player-en_US-vfl9FYC6l.js',
  64. 'js',
  65. 83,
  66. '123456789abcdefghijklmnopqr0tuvwxyzABCDETGHIJKLMNOPQRS>UVWXYZ!"#$%&\'()*+,-./:;<=F'
  67. ),
  68. (
  69. 'https://s.ytimg.com/yts/jsbin/html5player-en_US-vflCGk6yw/html5player.js',
  70. 'js',
  71. '4646B5181C6C3020DF1D9C7FCFEA.AD80ABF70C39BD369CCCAE780AFBB98FA6B6CB42766249D9488C288',
  72. '82C8849D94266724DC6B6AF89BBFA087EACCD963.B93C07FBA084ACAEFCF7C9D1FD0203C6C1815B6B'
  73. )
  74. ]
  75. class TestSignature(unittest.TestCase):
  76. def setUp(self):
  77. TEST_DIR = os.path.dirname(os.path.abspath(__file__))
  78. self.TESTDATA_DIR = os.path.join(TEST_DIR, 'testdata')
  79. if not os.path.exists(self.TESTDATA_DIR):
  80. os.mkdir(self.TESTDATA_DIR)
  81. def make_tfunc(url, stype, sig_input, expected_sig):
  82. m = re.match(r'.*-([a-zA-Z0-9_-]+)(?:/watch_as3|/html5player)?\.[a-z]+$', url)
  83. assert m, '%r should follow URL format' % url
  84. test_id = m.group(1)
  85. def test_func(self):
  86. basename = 'player-%s.%s' % (test_id, stype)
  87. fn = os.path.join(self.TESTDATA_DIR, basename)
  88. if not os.path.exists(fn):
  89. compat_urlretrieve(url, fn)
  90. ie = YoutubeIE()
  91. if stype == 'js':
  92. with io.open(fn, encoding='utf-8') as testf:
  93. jscode = testf.read()
  94. func = ie._parse_sig_js(jscode)
  95. else:
  96. assert stype == 'swf'
  97. with open(fn, 'rb') as testf:
  98. swfcode = testf.read()
  99. func = ie._parse_sig_swf(swfcode)
  100. src_sig = (
  101. compat_str(string.printable[:sig_input])
  102. if isinstance(sig_input, int) else sig_input)
  103. got_sig = func(src_sig)
  104. self.assertEqual(got_sig, expected_sig)
  105. test_func.__name__ = str('test_signature_' + stype + '_' + test_id)
  106. setattr(TestSignature, test_func.__name__, test_func)
  107. for test_spec in _TESTS:
  108. make_tfunc(*test_spec)
  109. if __name__ == '__main__':
  110. unittest.main()