diff options
author | Jesús <heckyel@hyperbola.info> | 2021-06-09 12:23:42 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-06-09 12:23:42 -0500 |
commit | ff87b367dce059d04f3f1dc11000553a065f8f0f (patch) | |
tree | cac7ecfc0ff70c036c84e22acc8dc10279d22f06 /test/test_iqiyi_sdk_interpreter.py | |
parent | c2350cac243ba1ec1586fe85b0d62d1b700047a2 (diff) | |
download | hypervideo-pre-ff87b367dce059d04f3f1dc11000553a065f8f0f.tar.lz hypervideo-pre-ff87b367dce059d04f3f1dc11000553a065f8f0f.tar.xz hypervideo-pre-ff87b367dce059d04f3f1dc11000553a065f8f0f.zip |
brand
Diffstat (limited to 'test/test_iqiyi_sdk_interpreter.py')
-rw-r--r-- | test/test_iqiyi_sdk_interpreter.py | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/test/test_iqiyi_sdk_interpreter.py b/test/test_iqiyi_sdk_interpreter.py deleted file mode 100644 index 789059dbe..000000000 --- a/test/test_iqiyi_sdk_interpreter.py +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env python - -from __future__ import unicode_literals - -# Allow direct execution -import os -import sys -import unittest -sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) - -from test.helper import FakeYDL -from youtube_dl.extractor import IqiyiIE - - -class IqiyiIEWithCredentials(IqiyiIE): - def _get_login_info(self): - return 'foo', 'bar' - - -class WarningLogger(object): - def __init__(self): - self.messages = [] - - def warning(self, msg): - self.messages.append(msg) - - def debug(self, msg): - pass - - def error(self, msg): - pass - - -class TestIqiyiSDKInterpreter(unittest.TestCase): - def test_iqiyi_sdk_interpreter(self): - ''' - Test the functionality of IqiyiSDKInterpreter by trying to log in - - If `sign` is incorrect, /validate call throws an HTTP 556 error - ''' - logger = WarningLogger() - ie = IqiyiIEWithCredentials(FakeYDL({'logger': logger})) - ie._login() - self.assertTrue('unable to log in:' in logger.messages[0]) - - -if __name__ == '__main__': - unittest.main() |