Improve hc.lib.emails.send()

- add optional `from_email` argument
- add test cases that exercise the retry loop
This commit is contained in:
Pēteris Caune 2021-08-03 19:02:25 +03:00
parent c3d458f6f0
commit fca600659d
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2
2 changed files with 49 additions and 21 deletions

View File

@ -1,5 +1,6 @@
import smtplib import smtplib
from threading import Thread from threading import Thread
import time
from django.conf import settings from django.conf import settings
from django.core.mail import EmailMultiAlternatives from django.core.mail import EmailMultiAlternatives
@ -9,41 +10,41 @@ from django.template.loader import render_to_string as render
class EmailThread(Thread): class EmailThread(Thread):
MAX_TRIES = 3 MAX_TRIES = 3
def __init__(self, subject, text, html, to, headers): def __init__(self, message):
Thread.__init__(self) Thread.__init__(self)
self.subject = subject self.message = message
self.text = text
self.html = html
self.to = to
self.headers = headers
def run(self): def run(self):
for attempt in range(0, self.MAX_TRIES): for attempt in range(0, self.MAX_TRIES):
try: try:
msg = EmailMultiAlternatives( # Make sure each retry creates a new connection:
self.subject, self.text, to=(self.to,), headers=self.headers self.message.connection = None
) self.message.send()
# No exception--great, return from the retry loop
msg.attach_alternative(self.html, "text/html") return
msg.send()
except smtplib.SMTPServerDisconnected as e: except smtplib.SMTPServerDisconnected as e:
if attempt + 1 == self.MAX_TRIES: if attempt + 1 == self.MAX_TRIES:
# This was the last attempt and it failed: # This was the last attempt and it failed:
# re-raise the exception # re-raise the exception
raise e raise e
else:
# There was no exception, break out of the retry loop # Wait 1s before retrying
break time.sleep(1)
def send(name, to, ctx, headers={}): def send(name, to, ctx, headers={}, from_email=None):
ctx["SITE_ROOT"] = settings.SITE_ROOT ctx["SITE_ROOT"] = settings.SITE_ROOT
subject = render("emails/%s-subject.html" % name, ctx).strip() subject = render("emails/%s-subject.html" % name, ctx).strip()
text = render("emails/%s-body-text.html" % name, ctx) body = render("emails/%s-body-text.html" % name, ctx)
html = render("emails/%s-body-html.html" % name, ctx) html = render("emails/%s-body-html.html" % name, ctx)
t = EmailThread(subject, text, html, to, headers) msg = EmailMultiAlternatives(subject, body, to=(to,), headers=headers)
msg.attach_alternative(html, "text/html")
if from_email:
msg.from_email = from_email
t = EmailThread(msg)
if hasattr(settings, "BLOCKING_EMAILS"): if hasattr(settings, "BLOCKING_EMAILS"):
# In tests, we send emails synchronously # In tests, we send emails synchronously
# so we can inspect the outgoing messages # so we can inspect the outgoing messages
@ -63,7 +64,7 @@ def transfer_request(to, ctx):
def alert(to, ctx, headers={}): def alert(to, ctx, headers={}):
send("alert", to, ctx, headers) send("alert", to, ctx, headers=headers)
def verify_email(to, ctx): def verify_email(to, ctx):
@ -71,11 +72,11 @@ def verify_email(to, ctx):
def report(to, ctx, headers={}): def report(to, ctx, headers={}):
send("report", to, ctx, headers) send("report", to, ctx, headers=headers)
def deletion_notice(to, ctx, headers={}): def deletion_notice(to, ctx, headers={}):
send("deletion-notice", to, ctx, headers) send("deletion-notice", to, ctx, headers=headers)
def sms_limit(to, ctx): def sms_limit(to, ctx):

View File

@ -0,0 +1,27 @@
from smtplib import SMTPServerDisconnected
from unittest.mock import Mock, patch
from django.test import TestCase
from hc.lib.emails import EmailThread
@patch("hc.lib.emails.time.sleep")
class EmailsTestCase(TestCase):
def test_it_retries(self, mock_time):
mock_msg = Mock()
mock_msg.send = Mock(side_effect=[SMTPServerDisconnected, None])
t = EmailThread(mock_msg)
t.run()
self.assertEqual(mock_msg.send.call_count, 2)
def test_it_limits_retries(self, mock_time):
mock_msg = Mock()
mock_msg.send = Mock(side_effect=SMTPServerDisconnected)
with self.assertRaises(SMTPServerDisconnected):
t = EmailThread(mock_msg)
t.run()
self.assertEqual(mock_msg.send.call_count, 3)