summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_email
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-06-27 22:37:00 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-06-27 22:37:00 (GMT)
commitf6069f9f22a81a0b9f81a1cc43fb0896e70f5379 (patch)
tree45861636b642545f0c6bf871189564346392ab97 /Lib/test/test_email
parentc7f75798555f6f371cfd5db342015c626402ddce (diff)
downloadcpython-f6069f9f22a81a0b9f81a1cc43fb0896e70f5379.zip
cpython-f6069f9f22a81a0b9f81a1cc43fb0896e70f5379.tar.gz
cpython-f6069f9f22a81a0b9f81a1cc43fb0896e70f5379.tar.bz2
#14360: make encoders.encode_quopri work.
There were no tests for the encoders module. encode_base64 worked because it is the default and so got tested implicitly elsewhere, and we use encode_7or8bit internally, so that worked, too. I previously fixed encode_noop, so this fix means that everythign in the encoders module now works, hopefully correctly. Also added an explicit test for encode_base64.
Diffstat (limited to 'Lib/test/test_email')
-rw-r--r--Lib/test/test_email/test_email.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py
index eaed26f..78b86b8 100644
--- a/Lib/test/test_email/test_email.py
+++ b/Lib/test/test_email/test_email.py
@@ -1474,6 +1474,35 @@ class TestMIMEApplication(unittest.TestCase):
self.assertEqual(msg.get_payload(), '\uFFFD' * len(bytesdata))
self.assertEqual(msg2.get_payload(decode=True), bytesdata)
+ def test_binary_body_with_encode_quopri(self):
+ # Issue 14360.
+ bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff '
+ msg = MIMEApplication(bytesdata, _encoder=encoders.encode_quopri)
+ self.assertEqual(msg.get_payload(), '=FA=FB=FC=FD=FE=FF=20')
+ self.assertEqual(msg.get_payload(decode=True), bytesdata)
+ self.assertEqual(msg['Content-Transfer-Encoding'], 'quoted-printable')
+ s = BytesIO()
+ g = BytesGenerator(s)
+ g.flatten(msg)
+ wireform = s.getvalue()
+ msg2 = email.message_from_bytes(wireform)
+ self.assertEqual(msg.get_payload(), '=FA=FB=FC=FD=FE=FF=20')
+ self.assertEqual(msg2.get_payload(decode=True), bytesdata)
+ self.assertEqual(msg2['Content-Transfer-Encoding'], 'quoted-printable')
+
+ def test_binary_body_with_encode_base64(self):
+ bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff'
+ msg = MIMEApplication(bytesdata, _encoder=encoders.encode_base64)
+ self.assertEqual(msg.get_payload(), '+vv8/f7/\n')
+ self.assertEqual(msg.get_payload(decode=True), bytesdata)
+ s = BytesIO()
+ g = BytesGenerator(s)
+ g.flatten(msg)
+ wireform = s.getvalue()
+ msg2 = email.message_from_bytes(wireform)
+ self.assertEqual(msg.get_payload(), '+vv8/f7/\n')
+ self.assertEqual(msg2.get_payload(decode=True), bytesdata)
+
# Test the basic MIMEText class
class TestMIMEText(unittest.TestCase):