mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
124 lines
3.9 KiB
Python
124 lines
3.9 KiB
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2017 Mike Fährmann
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
|
|
import unittest
|
|
from unittest import mock
|
|
|
|
import logging
|
|
import tempfile
|
|
import http.cookiejar
|
|
from os.path import join
|
|
|
|
import gallery_dl.config as config
|
|
import gallery_dl.extractor as extractor
|
|
from gallery_dl.extractor.message import Message
|
|
|
|
CKEY = ("cookies",)
|
|
|
|
|
|
class TestCookiejar(unittest.TestCase):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.path = tempfile.TemporaryDirectory()
|
|
|
|
cls.cookiefile = join(cls.path.name, "cookies.txt")
|
|
with open(cls.cookiefile, "w") as file:
|
|
file.write("""# HTTP Cookie File
|
|
.example.org\tTRUE\t/\tFALSE\t253402210800\tNAME\tVALUE
|
|
""")
|
|
|
|
cls.invalid_cookiefile = join(cls.path.name, "invalid.txt")
|
|
with open(cls.invalid_cookiefile, "w") as file:
|
|
file.write("""# asd
|
|
.example.org\tTRUE\t/\tFALSE\t253402210800\tNAME\tVALUE
|
|
""")
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
cls.path.cleanup()
|
|
|
|
def test_cookiefile(self):
|
|
config.set(CKEY, self.cookiefile)
|
|
|
|
cookies = extractor.find("test:").session.cookies
|
|
self.assertEqual(len(cookies), 1)
|
|
|
|
cookie = next(iter(cookies))
|
|
self.assertEqual(cookie.domain, ".example.org")
|
|
self.assertEqual(cookie.path, "/")
|
|
self.assertEqual(cookie.name, "NAME")
|
|
self.assertEqual(cookie.value, "VALUE")
|
|
|
|
def test_invalid_cookiefile(self):
|
|
self._test_warning(self.invalid_cookiefile, http.cookiejar.LoadError)
|
|
|
|
def test_invalid_filename(self):
|
|
self._test_warning(join(self.path.name, "nothing"), FileNotFoundError)
|
|
|
|
def _test_warning(self, filename, exc):
|
|
config.set(CKEY, filename)
|
|
log = logging.getLogger("test")
|
|
with mock.patch.object(log, "warning") as mock_warning:
|
|
cookies = extractor.find("test:").session.cookies
|
|
self.assertEqual(len(cookies), 0)
|
|
mock_warning.assert_called_once()
|
|
self.assertEqual(mock_warning.call_args[0][0], "cookies: %s")
|
|
self.assertIsInstance(mock_warning.call_args[0][1], exc)
|
|
|
|
|
|
class TestCookiedict(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.cdict = {"NAME1": "VALUE1", "NAME2": "VALUE2"}
|
|
config.set(CKEY, self.cdict)
|
|
|
|
def test_dict(self):
|
|
cookies = extractor.find("test:").session.cookies
|
|
self.assertEqual(len(cookies), len(self.cdict))
|
|
self.assertEqual(sorted(cookies.keys()), sorted(self.cdict.keys()))
|
|
self.assertEqual(sorted(cookies.values()), sorted(self.cdict.values()))
|
|
|
|
def test_domain(self):
|
|
for category in ["batoto", "exhentai", "nijie", "seiga"]:
|
|
extr = _get_extractor(category)
|
|
cookies = extr.session.cookies
|
|
for key in self.cdict.keys():
|
|
self.assertTrue(key in cookies)
|
|
for c in cookies:
|
|
self.assertEqual(c.domain, extr.cookiedomain)
|
|
|
|
|
|
class TestCookieLogin(unittest.TestCase):
|
|
|
|
def test_cookie_login(self):
|
|
extr_cookies = {
|
|
"batoto": ("member_id", "pass_hash"),
|
|
"exhentai": ("ipb_member_id", "ipb_pass_hash"),
|
|
"nijie": ("nemail", "nlogin"),
|
|
"seiga": ("user_session",),
|
|
}
|
|
for category, cookienames in extr_cookies.items():
|
|
cookies = {name: "value" for name in cookienames}
|
|
config.set(CKEY, cookies)
|
|
extr = _get_extractor(category)
|
|
with mock.patch.object(extr, "_login_impl") as mock_login:
|
|
extr.login()
|
|
mock_login.assert_not_called()
|
|
|
|
|
|
def _get_extractor(category):
|
|
for msg in extractor.find("test:" + category):
|
|
if msg[0] == Message.Queue:
|
|
return extractor.find(msg[1])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|