| 
									
										
										
										
											2024-11-12 15:59:19 +02:00
										 |  |  | # Copyright (C) 2002 Python Software Foundation | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # A torture test of the email package.  This should not be run as part of the | 
					
						
							|  |  |  | # standard Python test suite since it requires several meg of email messages | 
					
						
							|  |  |  | # collected in the wild.  These source messages are not checked into the | 
					
						
							|  |  |  | # Python distro, but are available as part of the standalone email package at | 
					
						
							|  |  |  | # http://sf.net/projects/mimelib | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import unittest | 
					
						
							|  |  |  | from io import StringIO | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 17:35:05 -04:00
										 |  |  | from test.test_email import TestEmailBase | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | import email | 
					
						
							|  |  |  | from email import __file__ as testfile | 
					
						
							| 
									
										
										
										
											2009-07-12 16:43:19 +00:00
										 |  |  | from email.iterators import _structure | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def openfile(filename): | 
					
						
							|  |  |  |     from os.path import join, dirname, abspath | 
					
						
							|  |  |  |     path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename)) | 
					
						
							|  |  |  |     return open(path, 'r') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Prevent this test from running in the Python distro | 
					
						
							| 
									
										
										
										
											2021-09-13 10:49:53 +03:00
										 |  |  | def setUpModule(): | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         openfile('crispin-torture.txt') | 
					
						
							|  |  |  |     except OSError: | 
					
						
							|  |  |  |         raise unittest.SkipTest | 
					
						
							| 
									
										
										
										
											2016-05-06 17:35:05 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TortureBase(TestEmailBase): | 
					
						
							|  |  |  |     def _msgobj(self, filename): | 
					
						
							|  |  |  |         fp = openfile(filename) | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             msg = email.message_from_file(fp) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             fp.close() | 
					
						
							|  |  |  |         return msg | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 17:35:05 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  | class TestCrispinTorture(TortureBase): | 
					
						
							|  |  |  |     # Mark Crispin's torture test from the SquirrelMail project | 
					
						
							|  |  |  |     def test_mondo_message(self): | 
					
						
							|  |  |  |         eq = self.assertEqual | 
					
						
							|  |  |  |         neq = self.ndiffAssertEqual | 
					
						
							|  |  |  |         msg = self._msgobj('crispin-torture.txt') | 
					
						
							|  |  |  |         payload = msg.get_payload() | 
					
						
							| 
									
										
										
										
											2016-05-06 17:35:05 -04:00
										 |  |  |         eq(type(payload), list) | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |         eq(len(payload), 12) | 
					
						
							|  |  |  |         eq(msg.preamble, None) | 
					
						
							|  |  |  |         eq(msg.epilogue, '\n') | 
					
						
							|  |  |  |         # Probably the best way to verify the message is parsed correctly is to | 
					
						
							|  |  |  |         # dump its structure and compare it against the known structure. | 
					
						
							|  |  |  |         fp = StringIO() | 
					
						
							|  |  |  |         _structure(msg, fp=fp) | 
					
						
							|  |  |  |         neq(fp.getvalue(), """\
 | 
					
						
							|  |  |  | multipart/mixed | 
					
						
							|  |  |  |     text/plain | 
					
						
							|  |  |  |     message/rfc822 | 
					
						
							|  |  |  |         multipart/alternative | 
					
						
							|  |  |  |             text/plain | 
					
						
							|  |  |  |             multipart/mixed | 
					
						
							|  |  |  |                 text/richtext | 
					
						
							|  |  |  |             application/andrew-inset | 
					
						
							|  |  |  |     message/rfc822 | 
					
						
							|  |  |  |         audio/basic | 
					
						
							|  |  |  |     audio/basic | 
					
						
							|  |  |  |     image/pbm | 
					
						
							|  |  |  |     message/rfc822 | 
					
						
							|  |  |  |         multipart/mixed | 
					
						
							|  |  |  |             multipart/mixed | 
					
						
							|  |  |  |                 text/plain | 
					
						
							|  |  |  |                 audio/x-sun | 
					
						
							|  |  |  |             multipart/mixed | 
					
						
							|  |  |  |                 image/gif | 
					
						
							|  |  |  |                 image/gif | 
					
						
							|  |  |  |                 application/x-be2 | 
					
						
							|  |  |  |                 application/atomicmail | 
					
						
							|  |  |  |             audio/x-sun | 
					
						
							|  |  |  |     message/rfc822 | 
					
						
							|  |  |  |         multipart/mixed | 
					
						
							|  |  |  |             text/plain | 
					
						
							|  |  |  |             image/pgm | 
					
						
							|  |  |  |             text/plain | 
					
						
							|  |  |  |     message/rfc822 | 
					
						
							|  |  |  |         multipart/mixed | 
					
						
							|  |  |  |             text/plain | 
					
						
							|  |  |  |             image/pbm | 
					
						
							|  |  |  |     message/rfc822 | 
					
						
							|  |  |  |         application/postscript | 
					
						
							|  |  |  |     image/gif | 
					
						
							|  |  |  |     message/rfc822 | 
					
						
							|  |  |  |         multipart/mixed | 
					
						
							|  |  |  |             audio/basic | 
					
						
							|  |  |  |             audio/basic | 
					
						
							|  |  |  |     message/rfc822 | 
					
						
							|  |  |  |         multipart/mixed | 
					
						
							|  |  |  |             application/postscript | 
					
						
							|  |  |  |             text/plain | 
					
						
							|  |  |  |             message/rfc822 | 
					
						
							|  |  |  |                 multipart/mixed | 
					
						
							|  |  |  |                     text/plain | 
					
						
							|  |  |  |                     multipart/parallel | 
					
						
							|  |  |  |                         image/gif | 
					
						
							|  |  |  |                         audio/basic | 
					
						
							|  |  |  |                     application/atomicmail | 
					
						
							|  |  |  |                     message/rfc822 | 
					
						
							|  |  |  |                         audio/x-sun | 
					
						
							|  |  |  | """)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _testclasses(): | 
					
						
							|  |  |  |     mod = sys.modules[__name__] | 
					
						
							|  |  |  |     return [getattr(mod, name) for name in dir(mod) if name.startswith('Test')] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 10:49:53 +03:00
										 |  |  | def load_tests(loader, tests, pattern): | 
					
						
							|  |  |  |     suite = loader.suiteClass() | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |     for testclass in _testclasses(): | 
					
						
							| 
									
										
										
										
											2021-09-13 10:49:53 +03:00
										 |  |  |         suite.addTest(loader.loadTestsFromTestCase(testclass)) | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |     return suite | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 10:49:53 +03:00
										 |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     unittest.main() |