summaryrefslogtreecommitdiffstats
path: root/Lib/email/test/test_email.py
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-02-21 04:23:00 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-02-21 04:23:00 (GMT)
commit51f1204590ebe00554ad30d6abf0e723e2ee1b65 (patch)
tree5719d517d175225181a5cae5d976e00e8728e3ad /Lib/email/test/test_email.py
parent9e9af21d45e8f5c9debd799fd521a87b0d97c698 (diff)
downloadcpython-51f1204590ebe00554ad30d6abf0e723e2ee1b65.zip
cpython-51f1204590ebe00554ad30d6abf0e723e2ee1b65.tar.gz
cpython-51f1204590ebe00554ad30d6abf0e723e2ee1b65.tar.bz2
Issue 7970: When email.Parser.Parser parses a MIME message of type
message/rfc822 it turns it into an object whose body consists of a list containing a single Message object. HeaderParser, on the other hand, just copies the body as a string. Generator.flatten has a special handler for the message mime type that expected the body to be the one item list. This fails if the message was parsed by HeaderParser. So we now check to see if the body is a string first, and if so just we just emit it.
Diffstat (limited to 'Lib/email/test/test_email.py')
-rw-r--r--Lib/email/test/test_email.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py
index f1a218d..aa16ce2 100644
--- a/Lib/email/test/test_email.py
+++ b/Lib/email/test/test_email.py
@@ -179,6 +179,18 @@ class TestMessageAPI(TestEmailBase):
self.assertRaises(Errors.HeaderParseError,
msg.set_boundary, 'BOUNDARY')
+ def test_message_rfc822_only(self):
+ # Issue 7970: message/rfc822 not in multipart parsed by
+ # HeaderParser caused an exception when flattened.
+ fp = openfile(findfile('msg_46.txt'))
+ msgdata = fp.read()
+ parser = email.Parser.HeaderParser()
+ msg = parser.parsestr(msgdata)
+ out = StringIO()
+ gen = email.Generator.Generator(out, True, 0)
+ gen.flatten(msg, False)
+ self.assertEqual(out.getvalue(), msgdata)
+
def test_get_decoded_payload(self):
eq = self.assertEqual
msg = self._msgobj('msg_10.txt')