]>
Raphaƫl G. Git Repositories - youtubedl/blob - test/test_youtube_signature.py
8417c55a6d50059c3612e97f05511be90f606f56
   3 # Allow direct execution 
   7 sys
.path
.insert(0, os
.path
.dirname(os
.path
.dirname(os
.path
.abspath(__file__
)))) 
  14 from youtube_dl
.extractor 
import YoutubeIE
 
  15 from youtube_dl
.utils 
import compat_str
, compat_urlretrieve
 
  19         u
'https://s.ytimg.com/yts/jsbin/html5player-vflHOr_nV.js', 
  22         u
'>=<;:/.-[+*)(\'&%$#"!ZYX0VUTSRQPONMLKJIHGFEDCBA\\yxwvutsrqponmlkjihgfedcba987654321', 
  25         u
'https://s.ytimg.com/yts/jsbin/html5player-vfldJ8xgI.js', 
  28         u
'3456789a0cdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRS[UVWXYZ!"#$%&\'()*+,-./:;<=>?@', 
  31         u
'https://s.ytimg.com/yts/jsbin/html5player-vfle-mVwz.js', 
  34         u
']\\[@?>=<;:/.-,+*)(\'&%$#"hZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjiagfedcb39876', 
  39 class TestSignature(unittest
.TestCase
): 
  41         TEST_DIR 
= os
.path
.dirname(os
.path
.abspath(__file__
)) 
  42         self
.TESTDATA_DIR 
= os
.path
.join(TEST_DIR
, 'testdata') 
  43         if not os
.path
.exists(self
.TESTDATA_DIR
): 
  44             os
.mkdir(self
.TESTDATA_DIR
) 
  47 def make_tfunc(url
, stype
, sig_length
, expected_sig
): 
  48     basename 
= url
.rpartition('/')[2] 
  49     m 
= re
.match(r
'.*-([a-zA-Z0-9_-]+)\.[a-z]+$', basename
) 
  50     assert m
, '%r should follow URL format' % basename
 
  54         fn 
= os
.path
.join(self
.TESTDATA_DIR
, basename
) 
  56         if not os
.path
.exists(fn
): 
  57             compat_urlretrieve(url
, fn
) 
  61             with io
.open(fn
, encoding
='utf-8') as testf
: 
  63             func 
= ie
._parse
_sig
_js
(jscode
) 
  66             with open(fn
, 'rb') as testf
: 
  67                 swfcode 
= testf
.read() 
  68             func 
= ie
._parse
_sig
_swf
(swfcode
) 
  69         src_sig 
= compat_str(string
.printable
[:sig_length
]) 
  70         got_sig 
= func(src_sig
) 
  71         self
.assertEqual(got_sig
, expected_sig
) 
  73     test_func
.__name
__ = str('test_signature_' + stype 
+ '_' + test_id
) 
  74     setattr(TestSignature
, test_func
.__name
__, test_func
) 
  76 for test_spec 
in _TESTS
: 
  77     make_tfunc(*test_spec
) 
  80 if __name__ 
== '__main__':