forked from mirror/django-mailbox
Interpret unknown encodings as ASCII. Fixes #34.
This commit is contained in:
parent
e1b0763a46
commit
aa59199c9b
4 changed files with 64 additions and 15 deletions
|
|
@ -0,0 +1,13 @@
|
|||
Reply-To: <private00@qq.com>
|
||||
From: "Refinance"<finance@khas.edu.tr>
|
||||
Subject: Apply For Loans @ 2% Per Annum
|
||||
Date: Sun, 19 Oct 2014 11:48:49 +0100
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain;
|
||||
charset="_iso-2022-jp$ESC"
|
||||
Content-Transfer-Encoding: 7bit
|
||||
|
||||
We offer loans to private individuals and corporate organizations at 2% interest rate. Interested serious applicants should apply via email with details of their requirements.
|
||||
|
||||
Warm Regards,
|
||||
Loan Team
|
||||
|
|
@ -85,3 +85,20 @@ class TestMessageFlattening(EmailMessageTestCase):
|
|||
actual_email_object,
|
||||
expected_email_object,
|
||||
)
|
||||
|
||||
def test_message_processing_unknown_encoding(self):
|
||||
incoming_email_object = self._get_email_object(
|
||||
'message_with_invalid_encoding.eml',
|
||||
)
|
||||
|
||||
msg = self.mailbox.process_incoming_message(incoming_email_object)
|
||||
|
||||
expected_text = (
|
||||
"We offer loans to private individuals and corporate "
|
||||
"organizations at 2% interest rate. Interested serious "
|
||||
"applicants should apply via email with details of their "
|
||||
"requirements.\n\nWarm Regards,\nLoan Team"
|
||||
)
|
||||
actual_text = msg.text
|
||||
|
||||
self.assertEqual(actual_text, expected_text)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue