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