2013-09-21 21:19:30 +09:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-07-24 18:39:54 +09:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-10-15 09:00:53 +09:00
|
|
|
# Allow direct execution
|
|
|
|
import os
|
2013-09-21 21:19:30 +09:00
|
|
|
import sys
|
|
|
|
import unittest
|
2013-10-15 09:00:53 +09:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
2013-09-21 21:19:30 +09:00
|
|
|
|
2013-10-15 09:00:53 +09:00
|
|
|
import io
|
|
|
|
import re
|
|
|
|
import string
|
2013-09-21 21:19:30 +09:00
|
|
|
|
2015-02-10 13:28:59 +09:00
|
|
|
from test.helper import FakeYDL
|
2013-09-21 21:19:30 +09:00
|
|
|
from youtube_dl.extractor import YoutubeIE
|
2014-11-05 09:47:49 +09:00
|
|
|
from youtube_dl.compat import compat_str, compat_urlretrieve
|
2013-09-21 21:19:30 +09:00
|
|
|
|
|
|
|
_TESTS = [
|
|
|
|
(
|
2014-07-24 18:39:54 +09:00
|
|
|
'https://s.ytimg.com/yts/jsbin/html5player-vflHOr_nV.js',
|
|
|
|
'js',
|
2013-09-21 21:19:30 +09:00
|
|
|
86,
|
2014-07-24 18:39:54 +09:00
|
|
|
'>=<;:/.-[+*)(\'&%$#"!ZYX0VUTSRQPONMLKJIHGFEDCBA\\yxwvutsrqponmlkjihgfedcba987654321',
|
2013-09-21 21:19:30 +09:00
|
|
|
),
|
|
|
|
(
|
2014-07-24 18:39:54 +09:00
|
|
|
'https://s.ytimg.com/yts/jsbin/html5player-vfldJ8xgI.js',
|
|
|
|
'js',
|
2013-09-21 21:19:30 +09:00
|
|
|
85,
|
2014-07-24 18:39:54 +09:00
|
|
|
'3456789a0cdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRS[UVWXYZ!"#$%&\'()*+,-./:;<=>?@',
|
2013-09-21 21:19:30 +09:00
|
|
|
),
|
2014-02-05 05:56:17 +09:00
|
|
|
(
|
2014-07-24 18:39:54 +09:00
|
|
|
'https://s.ytimg.com/yts/jsbin/html5player-vfle-mVwz.js',
|
|
|
|
'js',
|
2014-02-05 05:56:17 +09:00
|
|
|
90,
|
2014-07-24 18:39:54 +09:00
|
|
|
']\\[@?>=<;:/.-,+*)(\'&%$#"hZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjiagfedcb39876',
|
2014-02-05 05:56:17 +09:00
|
|
|
),
|
2014-07-16 05:46:39 +09:00
|
|
|
(
|
2014-07-24 18:39:54 +09:00
|
|
|
'https://s.ytimg.com/yts/jsbin/html5player-en_US-vfl0Cbn9e.js',
|
|
|
|
'js',
|
2014-07-16 05:46:39 +09:00
|
|
|
84,
|
2014-07-24 18:39:54 +09:00
|
|
|
'O1I3456789abcde0ghijklmnopqrstuvwxyzABCDEFGHfJKLMN2PQRSTUVW@YZ!"#$%&\'()*+,-./:;<=',
|
2014-07-16 05:46:39 +09:00
|
|
|
),
|
2014-07-11 17:34:01 +09:00
|
|
|
(
|
2014-07-24 18:39:54 +09:00
|
|
|
'https://s.ytimg.com/yts/jsbin/html5player-en_US-vflXGBaUN.js',
|
|
|
|
'js',
|
|
|
|
'2ACFC7A61CA478CD21425E5A57EBD73DDC78E22A.2094302436B2D377D14A3BBA23022D023B8BC25AA',
|
|
|
|
'A52CB8B320D22032ABB3A41D773D2B6342034902.A22E87CDD37DBE75A5E52412DC874AC16A7CFCA2',
|
2014-07-11 17:34:01 +09:00
|
|
|
),
|
2014-07-23 09:13:48 +09:00
|
|
|
(
|
2014-07-24 18:39:54 +09:00
|
|
|
'https://s.ytimg.com/yts/jsbin/html5player-en_US-vflBb0OQx.js',
|
|
|
|
'js',
|
2014-07-23 09:13:48 +09:00
|
|
|
84,
|
2014-07-24 18:39:54 +09:00
|
|
|
'123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQ0STUVWXYZ!"#$%&\'()*+,@./:;<=>'
|
2014-07-24 18:08:31 +09:00
|
|
|
),
|
|
|
|
(
|
2014-07-24 18:39:54 +09:00
|
|
|
'https://s.ytimg.com/yts/jsbin/html5player-en_US-vfl9FYC6l.js',
|
|
|
|
'js',
|
2014-07-24 18:08:31 +09:00
|
|
|
83,
|
2014-07-24 18:39:54 +09:00
|
|
|
'123456789abcdefghijklmnopqr0tuvwxyzABCDETGHIJKLMNOPQRS>UVWXYZ!"#$%&\'()*+,-./:;<=F'
|
2014-07-24 18:08:31 +09:00
|
|
|
),
|
2014-07-25 14:00:54 +09:00
|
|
|
(
|
|
|
|
'https://s.ytimg.com/yts/jsbin/html5player-en_US-vflCGk6yw/html5player.js',
|
|
|
|
'js',
|
|
|
|
'4646B5181C6C3020DF1D9C7FCFEA.AD80ABF70C39BD369CCCAE780AFBB98FA6B6CB42766249D9488C288',
|
|
|
|
'82C8849D94266724DC6B6AF89BBFA087EACCD963.B93C07FBA084ACAEFCF7C9D1FD0203C6C1815B6B'
|
2015-02-18 18:47:40 +09:00
|
|
|
),
|
|
|
|
(
|
|
|
|
'https://s.ytimg.com/yts/jsbin/html5player-en_US-vflKjOTVq/html5player.js',
|
|
|
|
'js',
|
|
|
|
'312AA52209E3623129A412D56A40F11CB0AF14AE.3EE09501CB14E3BCDC3B2AE808BF3F1D14E7FBF12',
|
|
|
|
'112AA5220913623229A412D56A40F11CB0AF14AE.3EE0950FCB14EEBCDC3B2AE808BF331D14E7FBF3',
|
2014-07-25 14:00:54 +09:00
|
|
|
)
|
2013-09-21 21:19:30 +09:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
class TestSignature(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
TEST_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
self.TESTDATA_DIR = os.path.join(TEST_DIR, 'testdata')
|
|
|
|
if not os.path.exists(self.TESTDATA_DIR):
|
|
|
|
os.mkdir(self.TESTDATA_DIR)
|
|
|
|
|
|
|
|
|
2014-07-11 17:34:01 +09:00
|
|
|
def make_tfunc(url, stype, sig_input, expected_sig):
|
2014-07-25 14:00:54 +09:00
|
|
|
m = re.match(r'.*-([a-zA-Z0-9_-]+)(?:/watch_as3|/html5player)?\.[a-z]+$', url)
|
2014-07-18 17:24:28 +09:00
|
|
|
assert m, '%r should follow URL format' % url
|
2013-09-21 21:19:30 +09:00
|
|
|
test_id = m.group(1)
|
|
|
|
|
|
|
|
def test_func(self):
|
2014-07-18 17:24:28 +09:00
|
|
|
basename = 'player-%s.%s' % (test_id, stype)
|
2013-09-21 21:19:30 +09:00
|
|
|
fn = os.path.join(self.TESTDATA_DIR, basename)
|
|
|
|
|
|
|
|
if not os.path.exists(fn):
|
|
|
|
compat_urlretrieve(url, fn)
|
|
|
|
|
2015-02-10 13:28:59 +09:00
|
|
|
ydl = FakeYDL()
|
|
|
|
ie = YoutubeIE(ydl)
|
2013-09-21 21:19:30 +09:00
|
|
|
if stype == 'js':
|
|
|
|
with io.open(fn, encoding='utf-8') as testf:
|
|
|
|
jscode = testf.read()
|
|
|
|
func = ie._parse_sig_js(jscode)
|
|
|
|
else:
|
|
|
|
assert stype == 'swf'
|
|
|
|
with open(fn, 'rb') as testf:
|
|
|
|
swfcode = testf.read()
|
|
|
|
func = ie._parse_sig_swf(swfcode)
|
2014-07-11 17:34:01 +09:00
|
|
|
src_sig = (
|
|
|
|
compat_str(string.printable[:sig_input])
|
|
|
|
if isinstance(sig_input, int) else sig_input)
|
2013-09-21 21:19:30 +09:00
|
|
|
got_sig = func(src_sig)
|
|
|
|
self.assertEqual(got_sig, expected_sig)
|
|
|
|
|
|
|
|
test_func.__name__ = str('test_signature_' + stype + '_' + test_id)
|
|
|
|
setattr(TestSignature, test_func.__name__, test_func)
|
|
|
|
|
|
|
|
for test_spec in _TESTS:
|
2013-09-22 18:45:29 +09:00
|
|
|
make_tfunc(*test_spec)
|
2013-09-21 21:19:30 +09:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|