From 88b281330c6fca313bbfd3482ea2aeb5efa08c78 Mon Sep 17 00:00:00 2001 From: Folker Bernitt Date: Thu, 9 Apr 2015 11:46:35 +0200 Subject: Default broken Content-Transfer-Encoding to 8bit. - Issue #347 --- service/test/unit/adapter/test_mail.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'service/test') diff --git a/service/test/unit/adapter/test_mail.py b/service/test/unit/adapter/test_mail.py index dbad72b3..1a9280ff 100644 --- a/service/test/unit/adapter/test_mail.py +++ b/service/test/unit/adapter/test_mail.py @@ -241,6 +241,16 @@ class TestPixelatedMail(unittest.TestCase): self.assertEquals(u'H=E4llo', mail.text_plain_body) + def test_broken_encoding_defaults_to_8bit(self): + plain_headers = {'Content-Type': 'text/plain;\ncharset=iso-8859-1', 'Content-Transfer-Encoding': 'I lie to you!'} + html_headers = {'Content-Type': 'text/html;\ncharset=utf-8', 'Content-Transfer-Encoding': 'quoted-printable'} + parts = {'alternatives': [{'content': 'H=E4llo', 'headers': plain_headers}, {'content': '

H=C3=A4llo

', 'headers': html_headers}]} + + mail = PixelatedMail.from_soledad(None, None, self._create_bdoc(raw='some raw body'), parts=parts, soledad_querier=None) + + self.assertEquals(u'H=E4llo', mail.text_plain_body) + self.assertEquals(u'

H\xe4llo

', mail.html_body) + def test_clean_line_breaks_on_address_headers(self): many_recipients = 'One ,\nTwo , Normal ,\nalone@mail.com' headers = {'Cc': many_recipients, -- cgit v1.2.3