summary refs log tree commit diff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-02-20 23:10:39 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-02-20 23:10:39 +0800
commita4e4d7dfcd03598c8b0924d4973b84ad30bc944e (patch)
treef7fbd10fae19542d882d00db447a410c2bf52c6c
parent73f9c2867df5048e78c6f60d2fc1d9691edb4b2d (diff)
downloadyoutube-dl-a4e4d7dfcd03598c8b0924d4973b84ad30bc944e.tar.gz
youtube-dl-a4e4d7dfcd03598c8b0924d4973b84ad30bc944e.tar.xz
youtube-dl-a4e4d7dfcd03598c8b0924d4973b84ad30bc944e.zip
[test_iqiyi_sdk_interpreter] Add test for iQiyi login
-rw-r--r--test/test_iqiyi_sdk_interpreter.py47
1 files changed, 47 insertions, 0 deletions
diff --git a/test/test_iqiyi_sdk_interpreter.py b/test/test_iqiyi_sdk_interpreter.py
new file mode 100644
index 000000000..9d95cb606
--- /dev/null
+++ b/test/test_iqiyi_sdk_interpreter.py
@@ -0,0 +1,47 @@
+#!/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()