mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
191 lines
6.7 KiB
Python
191 lines
6.7 KiB
Python
import email
|
|
import os.path
|
|
import time
|
|
|
|
from django.conf import settings
|
|
from django.test import TestCase
|
|
|
|
from django_mailbox import models, utils
|
|
from django_mailbox.models import Mailbox, Message
|
|
|
|
|
|
class EmailIntegrationTimeout(Exception):
|
|
pass
|
|
|
|
|
|
def get_email_as_text(name):
|
|
with open(
|
|
os.path.join(
|
|
os.path.dirname(__file__),
|
|
'messages',
|
|
name,
|
|
),
|
|
'rb'
|
|
) as f:
|
|
return f.read()
|
|
|
|
|
|
class EmailMessageTestCase(TestCase):
|
|
ALLOWED_EXTRA_HEADERS = [
|
|
'MIME-Version',
|
|
'Content-Transfer-Encoding',
|
|
]
|
|
|
|
def setUp(self):
|
|
dm_settings = utils.get_settings()
|
|
|
|
self._ALLOWED_MIMETYPES = dm_settings['allowed_mimetypes']
|
|
self._STRIP_UNALLOWED_MIMETYPES = (
|
|
dm_settings['strip_unallowed_mimetypes']
|
|
)
|
|
self._TEXT_STORED_MIMETYPES = dm_settings['text_stored_mimetypes']
|
|
|
|
self.mailbox = Mailbox.objects.create(from_email='from@example.com')
|
|
|
|
self.test_account = os.environ.get('EMAIL_ACCOUNT')
|
|
self.test_password = os.environ.get('EMAIL_PASSWORD')
|
|
self.test_smtp_server = os.environ.get('EMAIL_SMTP_SERVER')
|
|
self.test_from_email = 'nobody@nowhere.com'
|
|
|
|
self.maximum_wait_seconds = 60 * 5
|
|
|
|
settings.EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
|
settings.EMAIL_HOST = self.test_smtp_server
|
|
settings.EMAIL_PORT = 587
|
|
settings.EMAIL_HOST_USER = self.test_account
|
|
settings.EMAIL_HOST_PASSWORD = self.test_password
|
|
settings.EMAIL_USE_TLS = True
|
|
super().setUp()
|
|
|
|
def _get_new_messages(self, mailbox, condition=None):
|
|
start_time = time.time()
|
|
# wait until there is at least one message
|
|
while time.time() - start_time < self.maximum_wait_seconds:
|
|
|
|
messages = self.mailbox.get_new_mail(condition)
|
|
|
|
try:
|
|
# check if generator contains at least one element
|
|
message = next(messages)
|
|
yield message
|
|
yield from messages
|
|
return
|
|
|
|
except StopIteration:
|
|
time.sleep(5)
|
|
|
|
raise EmailIntegrationTimeout()
|
|
|
|
def _get_email_as_text(self, name):
|
|
with open(
|
|
os.path.join(
|
|
os.path.dirname(__file__),
|
|
'messages',
|
|
name,
|
|
),
|
|
'rb'
|
|
) as f:
|
|
return f.read()
|
|
|
|
def _get_email_object(self, name):
|
|
copy = self._get_email_as_text(name)
|
|
return email.message_from_bytes(copy)
|
|
|
|
def _headers_identical(self, left, right, header=None):
|
|
""" Check if headers are (close enough to) identical.
|
|
|
|
* This is particularly tricky because Python 2.6, Python 2.7 and
|
|
Python 3 each handle header strings slightly differently. This
|
|
should mash away all of the differences, though.
|
|
* This also has a small loophole in that when re-writing e-mail
|
|
payload encodings, we re-build the Content-Type header, so if the
|
|
header was originally unquoted, it will be quoted when rehydrating
|
|
the e-mail message.
|
|
|
|
"""
|
|
if header.lower() == 'content-type':
|
|
# Special case; given that we re-write the header, we'll be quoting
|
|
# the new content type; we need to make sure that doesn't cause
|
|
# this comparison to fail. Also, the case of the encoding could
|
|
# be changed, etc. etc. etc.
|
|
left = left.replace('"', '').upper()
|
|
right = right.replace('"', '').upper()
|
|
left = left.replace('\n\t', ' ').replace('\n ', ' ')
|
|
right = right.replace('\n\t', ' ').replace('\n ', ' ')
|
|
if right != left:
|
|
return False
|
|
return True
|
|
|
|
def compare_email_objects(self, left, right):
|
|
# Compare headers
|
|
for key, value in left.items():
|
|
if not right[key] and key in self.ALLOWED_EXTRA_HEADERS:
|
|
continue
|
|
if not right[key]:
|
|
raise AssertionError("Extra header '%s'" % key)
|
|
if not self._headers_identical(right[key], value, header=key):
|
|
raise AssertionError(
|
|
"Header '{}' unequal:\n{}\n{}".format(
|
|
key,
|
|
repr(value),
|
|
repr(right[key]),
|
|
)
|
|
)
|
|
for key, value in right.items():
|
|
if not left[key] and key in self.ALLOWED_EXTRA_HEADERS:
|
|
continue
|
|
if not left[key]:
|
|
raise AssertionError("Extra header '%s'" % key)
|
|
if not self._headers_identical(left[key], value, header=key):
|
|
raise AssertionError(
|
|
"Header '{}' unequal:\n{}\n{}".format(
|
|
key,
|
|
repr(value),
|
|
repr(right[key]),
|
|
)
|
|
)
|
|
if left.is_multipart() != right.is_multipart():
|
|
self._raise_mismatched(left, right)
|
|
if left.is_multipart():
|
|
left_payloads = left.get_payload()
|
|
right_payloads = right.get_payload()
|
|
if len(left_payloads) != len(right_payloads):
|
|
self._raise_mismatched(left, right)
|
|
for n in range(len(left_payloads)):
|
|
self.compare_email_objects(
|
|
left_payloads[n],
|
|
right_payloads[n]
|
|
)
|
|
else:
|
|
if left.get_payload() is None or right.get_payload() is None:
|
|
if left.get_payload() is None:
|
|
if right.get_payload is not None:
|
|
self._raise_mismatched(left, right)
|
|
if right.get_payload() is None:
|
|
if left.get_payload is not None:
|
|
self._raise_mismatched(left, right)
|
|
elif left.get_payload().strip() != right.get_payload().strip():
|
|
self._raise_mismatched(left, right)
|
|
|
|
def _raise_mismatched(self, left, right):
|
|
raise AssertionError(
|
|
"Message payloads do not match:\n{}\n{}".format(
|
|
left.as_string(),
|
|
right.as_string()
|
|
)
|
|
)
|
|
|
|
def assertEqual(self, left, right): # noqa: N802
|
|
if not isinstance(left, email.message.Message):
|
|
return super().assertEqual(left, right)
|
|
return self.compare_email_objects(left, right)
|
|
|
|
def tearDown(self):
|
|
for message in Message.objects.all():
|
|
message.delete()
|
|
models.ALLOWED_MIMETYPES = self._ALLOWED_MIMETYPES
|
|
models.STRIP_UNALLOWED_MIMETYPES = self._STRIP_UNALLOWED_MIMETYPES
|
|
models.TEXT_STORED_MIMETYPES = self._TEXT_STORED_MIMETYPES
|
|
|
|
self.mailbox.delete()
|
|
super().tearDown()
|