Add failing test for #732

This commit is contained in:
Timothy Hobbs
2019-03-09 00:00:32 +01:00
parent 37be1346cd
commit 5e9fed2d46
2 changed files with 27 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class GetEmailCommonTests(TestCase):
self.assertEqual(ticket.title, "Attachment without body")
self.assertEqual(ticket.description, "")
def test_email_with_blank_body_and_attachment(self):
def test_email_with_quoted_printable_body(self):
"""
Tests that emails with quoted-printable bodies work.
"""
@ -73,6 +73,17 @@ class GetEmailCommonTests(TestCase):
attachment = attachments[0]
self.assertEqual(attachment.file.read().decode("utf-8"), '<div dir="ltr">Tohle je test českých písmen odeslaných z gmailu.</div>\n')
def test_email_with_8bit_encoding_and_utf_8(self):
"""
Tests that emails with 8bit transfer encoding and utf-8 charset
https://github.com/django-helpdesk/django-helpdesk/issues/732
"""
with open(os.path.join(THIS_DIR, "test_files/all-special-chars.eml")) as fd:
test_email = fd.read()
ticket = helpdesk.email.object_from_message(test_email, self.queue_public, self.logger)
self.assertEqual(ticket.title, "Testovácí email")
self.assertEqual(ticket.description, "íářčšáíéřášč")
class GetEmailParametricTemplate(object):
"""TestCase that checks basic email functionality across methods and socks configs."""