2021-06-03 05:43:42 -04:00
|
|
|
#!/usr/bin/env python3
|
2016-02-20 10:10:39 -05:00
|
|
|
# Allow direct execution
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import unittest
|
2022-04-11 18:32:57 -04:00
|
|
|
|
2016-02-20 10:10:39 -05:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2021-07-23 10:48:15 -04:00
|
|
|
from test.helper import FakeYDL, is_download_test
|
2022-04-11 18:32:57 -04:00
|
|
|
|
2021-02-24 13:45:56 -05:00
|
|
|
from yt_dlp.extractor import IqiyiIE
|
2016-02-20 10:10:39 -05:00
|
|
|
|
|
|
|
|
2022-04-11 11:10:28 -04:00
|
|
|
class WarningLogger:
|
2016-02-20 10:10:39 -05:00
|
|
|
def __init__(self):
|
|
|
|
self.messages = []
|
|
|
|
|
|
|
|
def warning(self, msg):
|
|
|
|
self.messages.append(msg)
|
|
|
|
|
|
|
|
def debug(self, msg):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def error(self, msg):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-07-23 10:48:15 -04:00
|
|
|
@is_download_test
|
2016-02-20 10:10:39 -05:00
|
|
|
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()
|
2022-03-18 16:53:33 -04:00
|
|
|
ie = IqiyiIE(FakeYDL({'logger': logger}))
|
|
|
|
ie._perform_login('foo', 'bar')
|
2016-02-20 10:10:39 -05:00
|
|
|
self.assertTrue('unable to log in:' in logger.messages[0])
|
|
|
|
|
2016-11-17 06:42:56 -05:00
|
|
|
|
2016-02-20 10:10:39 -05:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|