mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
fix the test cases
This commit is contained in:
parent
201a4a7ef9
commit
3ce1e01d96
@ -1,5 +1,6 @@
|
|||||||
import datetime
|
import datetime
|
||||||
import itertools
|
import itertools
|
||||||
|
import logging
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import tempfile
|
import tempfile
|
||||||
@ -91,7 +92,7 @@ class DeleteMailAction(BaseMailAction):
|
|||||||
A mail action that deletes mails after processing.
|
A mail action that deletes mails after processing.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def post_consume(self, M, message_uid, parameter):
|
def post_consume(self, M: MailBox, message_uid: str, parameter: str):
|
||||||
M.delete(message_uid)
|
M.delete(message_uid)
|
||||||
|
|
||||||
|
|
||||||
@ -103,7 +104,7 @@ class MarkReadMailAction(BaseMailAction):
|
|||||||
def get_criteria(self):
|
def get_criteria(self):
|
||||||
return {"seen": False}
|
return {"seen": False}
|
||||||
|
|
||||||
def post_consume(self, M, message_uid, parameter):
|
def post_consume(self, M: MailBox, message_uid: str, parameter: str):
|
||||||
M.flag(message_uid, [MailMessageFlags.SEEN], True)
|
M.flag(message_uid, [MailMessageFlags.SEEN], True)
|
||||||
|
|
||||||
|
|
||||||
@ -124,7 +125,7 @@ class FlagMailAction(BaseMailAction):
|
|||||||
def get_criteria(self):
|
def get_criteria(self):
|
||||||
return {"flagged": False}
|
return {"flagged": False}
|
||||||
|
|
||||||
def post_consume(self, M, message_uid, parameter):
|
def post_consume(self, M: MailBox, message_uid: str, parameter: str):
|
||||||
M.flag(message_uid, [MailMessageFlags.FLAGGED], True)
|
M.flag(message_uid, [MailMessageFlags.FLAGGED], True)
|
||||||
|
|
||||||
|
|
||||||
@ -160,10 +161,9 @@ class TagMailAction(BaseMailAction):
|
|||||||
else:
|
else:
|
||||||
raise ValueError("This should never happen.")
|
raise ValueError("This should never happen.")
|
||||||
|
|
||||||
def post_consume(self, M: MailBox, message_uid, parameter):
|
def post_consume(self, M: MailBox, message_uid: str, parameter: str):
|
||||||
if re.search(r"gmail\.com$|googlemail\.com$", M._host):
|
if re.search(r"gmail\.com$|googlemail\.com$", M._host):
|
||||||
for uid in message_uid:
|
M.client.uid("STORE", message_uid, "X-GM-LABELS", self.keyword)
|
||||||
M.client.uid("STORE", uid, "X-GM-LABELS", self.keyword)
|
|
||||||
|
|
||||||
# AppleMail
|
# AppleMail
|
||||||
elif self.color:
|
elif self.color:
|
||||||
@ -190,6 +190,35 @@ class TagMailAction(BaseMailAction):
|
|||||||
raise MailError("No keyword specified.")
|
raise MailError("No keyword specified.")
|
||||||
|
|
||||||
|
|
||||||
|
def mailbox_login(mailbox: MailBox, account: MailAccount):
|
||||||
|
logger = logging.getLogger("paperless_mail")
|
||||||
|
|
||||||
|
try:
|
||||||
|
|
||||||
|
mailbox.login(account.username, account.password)
|
||||||
|
|
||||||
|
except UnicodeEncodeError:
|
||||||
|
logger.debug("Falling back to AUTH=PLAIN")
|
||||||
|
|
||||||
|
try:
|
||||||
|
mailbox.login_utf8(account.username, account.password)
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(
|
||||||
|
"Unable to authenticate with mail server using AUTH=PLAIN",
|
||||||
|
)
|
||||||
|
raise MailError(
|
||||||
|
f"Error while authenticating account {account}",
|
||||||
|
) from e
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(
|
||||||
|
f"Error while authenticating account {account}: {e}",
|
||||||
|
exc_info=False,
|
||||||
|
)
|
||||||
|
raise MailError(
|
||||||
|
f"Error while authenticating account {account}",
|
||||||
|
) from e
|
||||||
|
|
||||||
|
|
||||||
@shared_task
|
@shared_task
|
||||||
def apply_mail_action(
|
def apply_mail_action(
|
||||||
result: List[str],
|
result: List[str],
|
||||||
@ -216,7 +245,7 @@ def apply_mail_action(
|
|||||||
port=account.imap_port,
|
port=account.imap_port,
|
||||||
security=account.imap_security,
|
security=account.imap_security,
|
||||||
) as M:
|
) as M:
|
||||||
M.login(username=account.username, password=account.password)
|
mailbox_login(M, account)
|
||||||
M.folder.set(rule.folder)
|
M.folder.set(rule.folder)
|
||||||
action.post_consume(M, message_uid, rule.action_parameter)
|
action.post_consume(M, message_uid, rule.action_parameter)
|
||||||
|
|
||||||
@ -436,32 +465,7 @@ class MailAccountHandler(LoggingMixin):
|
|||||||
self.log("debug", f"GMAIL Label Support: {supports_gmail_labels}")
|
self.log("debug", f"GMAIL Label Support: {supports_gmail_labels}")
|
||||||
self.log("debug", f"AUTH=PLAIN Support: {supports_auth_plain}")
|
self.log("debug", f"AUTH=PLAIN Support: {supports_auth_plain}")
|
||||||
|
|
||||||
try:
|
mailbox_login(M, account)
|
||||||
|
|
||||||
M.login(account.username, account.password)
|
|
||||||
|
|
||||||
except UnicodeEncodeError:
|
|
||||||
self.log("debug", "Falling back to AUTH=PLAIN")
|
|
||||||
|
|
||||||
try:
|
|
||||||
M.login_utf8(account.username, account.password)
|
|
||||||
except Exception as e:
|
|
||||||
self.log(
|
|
||||||
"error",
|
|
||||||
"Unable to authenticate with mail server using AUTH=PLAIN",
|
|
||||||
)
|
|
||||||
raise MailError(
|
|
||||||
f"Error while authenticating account {account}",
|
|
||||||
) from e
|
|
||||||
except Exception as e:
|
|
||||||
self.log(
|
|
||||||
"error",
|
|
||||||
f"Error while authenticating account {account}: {e}",
|
|
||||||
exc_info=False,
|
|
||||||
)
|
|
||||||
raise MailError(
|
|
||||||
f"Error while authenticating account {account}",
|
|
||||||
) from e
|
|
||||||
|
|
||||||
self.log(
|
self.log(
|
||||||
"debug",
|
"debug",
|
||||||
|
@ -912,13 +912,17 @@ class TestMail(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
|
|||||||
self.mail_account_handler.handle_mail_account(account)
|
self.mail_account_handler.handle_mail_account(account)
|
||||||
|
|
||||||
self._queue_consumption_tasks_mock.assert_called_once()
|
self._queue_consumption_tasks_mock.assert_called_once()
|
||||||
args, kwargs = self.async_task.call_args
|
|
||||||
|
|
||||||
c = Correspondent.objects.get(name="amazon@amazon.de")
|
c = Correspondent.objects.get(name="amazon@amazon.de")
|
||||||
# should work
|
self.verify_queue_consumption_tasks_call_args(
|
||||||
self.assertEqual(kwargs["override_correspondent_id"], c.id)
|
[
|
||||||
|
[
|
||||||
|
{"override_correspondent_id": c.id},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
self.async_task.reset_mock()
|
self._queue_consumption_tasks_mock.reset_mock()
|
||||||
self.reset_bogus_mailbox()
|
self.reset_bogus_mailbox()
|
||||||
|
|
||||||
with mock.patch("paperless_mail.mail.Correspondent.objects.get_or_create") as m:
|
with mock.patch("paperless_mail.mail.Correspondent.objects.get_or_create") as m:
|
||||||
@ -926,9 +930,13 @@ class TestMail(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
|
|||||||
|
|
||||||
self.mail_account_handler.handle_mail_account(account)
|
self.mail_account_handler.handle_mail_account(account)
|
||||||
|
|
||||||
args, kwargs = self.async_task.call_args
|
self.verify_queue_consumption_tasks_call_args(
|
||||||
self.async_task.assert_called_once()
|
[
|
||||||
self.assertEqual(kwargs["override_correspondent_id"], None)
|
[
|
||||||
|
{"override_correspondent_id": None},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
def test_filters(self):
|
def test_filters(self):
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user