Mandrill: re-enable integration tests

Get Mandrill integration tests working again,
by using a test-mode API key and a trial account.
This commit is contained in:
medmunds
2022-02-02 16:24:10 -08:00
committed by Mike Edmunds
parent 41147b581c
commit ddeb938a3c
2 changed files with 22 additions and 9 deletions

View File

@@ -80,6 +80,7 @@ jobs:
ANYMAIL_TEST_MAILJET_DOMAIN: ${{ secrets.ANYMAIL_TEST_MAILJET_DOMAIN }} ANYMAIL_TEST_MAILJET_DOMAIN: ${{ secrets.ANYMAIL_TEST_MAILJET_DOMAIN }}
ANYMAIL_TEST_MAILJET_SECRET_KEY: ${{ secrets.ANYMAIL_TEST_MAILJET_SECRET_KEY }} ANYMAIL_TEST_MAILJET_SECRET_KEY: ${{ secrets.ANYMAIL_TEST_MAILJET_SECRET_KEY }}
ANYMAIL_TEST_MANDRILL_API_KEY: ${{ secrets.ANYMAIL_TEST_MANDRILL_API_KEY }} ANYMAIL_TEST_MANDRILL_API_KEY: ${{ secrets.ANYMAIL_TEST_MANDRILL_API_KEY }}
ANYMAIL_TEST_MANDRILL_DOMAIN: ${{ secrets.ANYMAIL_TEST_MANDRILL_DOMAIN }}
ANYMAIL_TEST_POSTMARK_DOMAIN: ${{ secrets.ANYMAIL_TEST_POSTMARK_DOMAIN }} ANYMAIL_TEST_POSTMARK_DOMAIN: ${{ secrets.ANYMAIL_TEST_POSTMARK_DOMAIN }}
ANYMAIL_TEST_POSTMARK_SERVER_TOKEN: ${{ secrets.ANYMAIL_TEST_POSTMARK_SERVER_TOKEN }} ANYMAIL_TEST_POSTMARK_SERVER_TOKEN: ${{ secrets.ANYMAIL_TEST_POSTMARK_SERVER_TOKEN }}
ANYMAIL_TEST_POSTMARK_TEMPLATE_ID: ${{ secrets.ANYMAIL_TEST_POSTMARK_TEMPLATE_ID }} ANYMAIL_TEST_POSTMARK_TEMPLATE_ID: ${{ secrets.ANYMAIL_TEST_POSTMARK_TEMPLATE_ID }}

View File

@@ -27,17 +27,28 @@ class MandrillBackendIntegrationTests(AnymailTestMixin, SimpleTestCase):
environment variable `ANYMAIL_TEST_MANDRILL_API_KEY` as the API key. environment variable `ANYMAIL_TEST_MANDRILL_API_KEY` as the API key.
If that variable is not set, these tests won't run. If that variable is not set, these tests won't run.
See https://mandrill.zendesk.com/hc/en-us/articles/205582447 See https://mailchimp.com/developer/transactional/docs/fundamentals/#test-mode
for info on Mandrill test keys. for info on Mandrill test keys.
""" """
def setUp(self): def setUp(self):
super().setUp() super().setUp()
self.from_email = 'from@%s' % ANYMAIL_TEST_MANDRILL_DOMAIN self.from_email = self.addr('from')
self.message = mail.EmailMultiAlternatives('Anymail Mandrill integration test', 'Text content', self.message = mail.EmailMultiAlternatives('Anymail Mandrill integration test', 'Text content',
self.from_email, ['test+to1@anymail.dev']) self.from_email, [self.addr('test+to1')])
self.message.attach_alternative('<p>HTML content</p>', "text/html") self.message.attach_alternative('<p>HTML content</p>', "text/html")
def addr(self, username, display_name=None):
"""Construct test email address within our test domain"""
# Because integration tests run within a Mandrill trial account,
# both sender and recipient addresses must be within the test domain.
# (Other recipient addresses will be rejected with 'recipient-domain-mismatch'.)
email = '{username}@{domain}'.format(username=username, domain=ANYMAIL_TEST_MANDRILL_DOMAIN)
if display_name is not None:
return formataddr((display_name, email))
else:
return email
def test_simple_send(self): def test_simple_send(self):
# Example of getting the Mandrill send status and _id from the message # Example of getting the Mandrill send status and _id from the message
sent_count = self.message.send() sent_count = self.message.send()
@@ -45,8 +56,9 @@ class MandrillBackendIntegrationTests(AnymailTestMixin, SimpleTestCase):
# noinspection PyUnresolvedReferences # noinspection PyUnresolvedReferences
anymail_status = self.message.anymail_status anymail_status = self.message.anymail_status
sent_status = anymail_status.recipients['test+to1@anymail.dev'].status to_email = self.message.to[0] # test+to1@{ANYMAIL_TEST_MANDRILL_DOMAIN}
message_id = anymail_status.recipients['test+to1@anymail.dev'].message_id sent_status = anymail_status.recipients[to_email].status
message_id = anymail_status.recipients[to_email].message_id
self.assertIn(sent_status, ['sent', 'queued']) # successful send (could still bounce later) self.assertIn(sent_status, ['sent', 'queued']) # successful send (could still bounce later)
self.assertGreater(len(message_id), 0) # don't know what it'll be, but it should exist self.assertGreater(len(message_id), 0) # don't know what it'll be, but it should exist
@@ -58,10 +70,10 @@ class MandrillBackendIntegrationTests(AnymailTestMixin, SimpleTestCase):
message = AnymailMessage( message = AnymailMessage(
subject="Anymail Mandrill all-options integration test", subject="Anymail Mandrill all-options integration test",
body="This is the text body", body="This is the text body",
from_email=formataddr(("Test From, with comma", self.from_email)), from_email=self.addr("from", "Test From, with comma"),
to=["test+to1@anymail.dev", "Recipient 2 <test+to2@anymail.dev>"], to=[self.addr("test+to1"), self.addr("test+to2", "Recipient 2")],
cc=["test+cc1@anymail.dev", "Copy 2 <test+cc2@anymail.dev>"], cc=[self.addr("test+cc1"), self.addr("test+cc2", "Copy 2")],
bcc=["test+bcc1@anymail.dev", "Blind Copy 2 <test+bcc2@anymail.dev>"], bcc=[self.addr("test+bcc1"), self.addr("test+bcc2", "Blind Copy 2")],
reply_to=["reply1@example.com", "Reply 2 <reply2@example.com>"], reply_to=["reply1@example.com", "Reply 2 <reply2@example.com>"],
headers={"X-Anymail-Test": "value"}, headers={"X-Anymail-Test": "value"},