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