| 
									
										
										
										
											2001-05-22 19:38:31 +00:00
										 |  |  | import rfc822 | 
					
						
							|  |  |  | import unittest | 
					
						
							| 
									
										
										
										
											2002-07-23 19:04:11 +00:00
										 |  |  | from test import test_support | 
					
						
							| 
									
										
										
										
											2001-05-22 19:38:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-14 20:00:58 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     from cStringIO import StringIO | 
					
						
							|  |  |  | except ImportError: | 
					
						
							|  |  |  |     from StringIO import StringIO | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-22 15:02:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-22 19:38:31 +00:00
										 |  |  | class MessageTestCase(unittest.TestCase): | 
					
						
							|  |  |  |     def create_message(self, msg): | 
					
						
							|  |  |  |         return rfc822.Message(StringIO(msg)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_get(self): | 
					
						
							|  |  |  |         msg = self.create_message( | 
					
						
							|  |  |  |             'To: "last, first" <userid@foo.net>\n\ntest\n') | 
					
						
							|  |  |  |         self.assert_(msg.get("to") == '"last, first" <userid@foo.net>') | 
					
						
							|  |  |  |         self.assert_(msg.get("TO") == '"last, first" <userid@foo.net>') | 
					
						
							| 
									
										
										
										
											2002-06-05 19:07:39 +00:00
										 |  |  |         self.assert_(msg.get("No-Such-Header") is None) | 
					
						
							| 
									
										
										
										
											2001-05-22 19:38:31 +00:00
										 |  |  |         self.assert_(msg.get("No-Such-Header", "No-Such-Value") | 
					
						
							|  |  |  |                      == "No-Such-Value") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_setdefault(self): | 
					
						
							|  |  |  |         msg = self.create_message( | 
					
						
							|  |  |  |             'To: "last, first" <userid@foo.net>\n\ntest\n') | 
					
						
							|  |  |  |         self.assert_(not msg.has_key("New-Header")) | 
					
						
							|  |  |  |         self.assert_(msg.setdefault("New-Header", "New-Value") == "New-Value") | 
					
						
							|  |  |  |         self.assert_(msg.setdefault("New-Header", "Different-Value") | 
					
						
							|  |  |  |                      == "New-Value") | 
					
						
							|  |  |  |         self.assert_(msg["new-header"] == "New-Value") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.assert_(msg.setdefault("Another-Header") == "") | 
					
						
							|  |  |  |         self.assert_(msg["another-header"] == "") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def check(self, msg, results): | 
					
						
							|  |  |  |         """Check addresses and the date.""" | 
					
						
							|  |  |  |         m = self.create_message(msg) | 
					
						
							|  |  |  |         i = 0 | 
					
						
							|  |  |  |         for n, a in m.getaddrlist('to') + m.getaddrlist('cc'): | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 mn, ma = results[i][0], results[i][1] | 
					
						
							|  |  |  |             except IndexError: | 
					
						
							|  |  |  |                 print 'extra parsed address:', repr(n), repr(a) | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             i = i + 1 | 
					
						
							| 
									
										
										
										
											2006-05-01 03:03:02 +00:00
										 |  |  |             self.assertEqual(mn, n, | 
					
						
							|  |  |  |                              "Un-expected name: %s != %s" % (`mn`, `n`)) | 
					
						
							|  |  |  |             self.assertEqual(ma, a, | 
					
						
							|  |  |  |                              "Un-expected address: %s != %s" % (`ma`, `a`)) | 
					
						
							| 
									
										
										
										
											2001-05-22 19:38:31 +00:00
										 |  |  |             if mn == n and ma == a: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 print 'not found:', repr(n), repr(a) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         out = m.getdate('date') | 
					
						
							|  |  |  |         if out: | 
					
						
							|  |  |  |             self.assertEqual(out, | 
					
						
							| 
									
										
										
										
											2004-08-07 16:38:40 +00:00
										 |  |  |                              (1999, 1, 13, 23, 57, 35, 0, 1, 0), | 
					
						
							| 
									
										
										
										
											2001-05-22 19:38:31 +00:00
										 |  |  |                              "date conversion failed") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Note: all test cases must have the same date (in various formats), | 
					
						
							|  |  |  |     # or no date! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_basic(self): | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'Date:    Wed, 13 Jan 1999 23:57:35 -0500\n' | 
					
						
							|  |  |  |             'From:    Guido van Rossum <guido@CNRI.Reston.VA.US>\n' | 
					
						
							|  |  |  |             'To:      "Guido van\n' | 
					
						
							|  |  |  |             '\t : Rossum" <guido@python.org>\n' | 
					
						
							|  |  |  |             'Subject: test2\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test2\n', | 
					
						
							|  |  |  |             [('Guido van\n\t : Rossum', 'guido@python.org')]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'From: Barry <bwarsaw@python.org\n' | 
					
						
							|  |  |  |             'To: guido@python.org (Guido: the Barbarian)\n' | 
					
						
							|  |  |  |             'Subject: nonsense\n' | 
					
						
							|  |  |  |             'Date: Wednesday, January 13 1999 23:57:35 -0500\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test', | 
					
						
							|  |  |  |             [('Guido: the Barbarian', 'guido@python.org')]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'From: Barry <bwarsaw@python.org\n' | 
					
						
							|  |  |  |             'To: guido@python.org (Guido: the Barbarian)\n' | 
					
						
							|  |  |  |             'Cc: "Guido: the Madman" <guido@python.org>\n' | 
					
						
							|  |  |  |             'Date:  13-Jan-1999 23:57:35 EST\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test', | 
					
						
							|  |  |  |             [('Guido: the Barbarian', 'guido@python.org'), | 
					
						
							|  |  |  |              ('Guido: the Madman', 'guido@python.org') | 
					
						
							|  |  |  |              ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'To: "The monster with\n' | 
					
						
							|  |  |  |             '     the very long name: Guido" <guido@python.org>\n' | 
					
						
							|  |  |  |             'Date:    Wed, 13 Jan 1999 23:57:35 -0500\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test', | 
					
						
							|  |  |  |             [('The monster with\n     the very long name: Guido', | 
					
						
							|  |  |  |               'guido@python.org')]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'To: "Amit J. Patel" <amitp@Theory.Stanford.EDU>\n' | 
					
						
							|  |  |  |             'CC: Mike Fletcher <mfletch@vrtelecom.com>,\n' | 
					
						
							|  |  |  |             '        "\'string-sig@python.org\'" <string-sig@python.org>\n' | 
					
						
							|  |  |  |             'Cc: fooz@bat.com, bart@toof.com\n' | 
					
						
							|  |  |  |             'Cc: goit@lip.com\n' | 
					
						
							|  |  |  |             'Date:    Wed, 13 Jan 1999 23:57:35 -0500\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test', | 
					
						
							|  |  |  |             [('Amit J. Patel', 'amitp@Theory.Stanford.EDU'), | 
					
						
							|  |  |  |              ('Mike Fletcher', 'mfletch@vrtelecom.com'), | 
					
						
							|  |  |  |              ("'string-sig@python.org'", 'string-sig@python.org'), | 
					
						
							|  |  |  |              ('', 'fooz@bat.com'), | 
					
						
							|  |  |  |              ('', 'bart@toof.com'), | 
					
						
							|  |  |  |              ('', 'goit@lip.com'), | 
					
						
							|  |  |  |              ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-11-13 18:01:37 +00:00
										 |  |  |         self.check( | 
					
						
							|  |  |  |             'To: Some One <someone@dom.ain>\n' | 
					
						
							|  |  |  |             'From: Anudder Persin <subuddy.else@dom.ain>\n' | 
					
						
							|  |  |  |             'Date:\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test', | 
					
						
							|  |  |  |             [('Some One', 'someone@dom.ain')]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 20:44:16 +00:00
										 |  |  |         self.check( | 
					
						
							|  |  |  |             'To: person@dom.ain (User J. Person)\n\n', | 
					
						
							|  |  |  |             [('User J. Person', 'person@dom.ain')]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-01 03:03:02 +00:00
										 |  |  |     def test_doublecomment(self): | 
					
						
							|  |  |  |         # The RFC allows comments within comments in an email addr | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'To: person@dom.ain ((User J. Person)), John Doe <foo@bar.com>\n\n', | 
					
						
							|  |  |  |             [('User J. Person', 'person@dom.ain'), ('John Doe', 'foo@bar.com')]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-22 19:38:31 +00:00
										 |  |  |     def test_twisted(self): | 
					
						
							|  |  |  |         # This one is just twisted.  I don't know what the proper | 
					
						
							|  |  |  |         # result should be, but it shouldn't be to infloop, which is | 
					
						
							|  |  |  |         # what used to happen! | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'To: <[smtp:dd47@mail.xxx.edu]_at_hmhq@hdq-mdm1-imgout.companay.com>\n' | 
					
						
							|  |  |  |             'Date:    Wed, 13 Jan 1999 23:57:35 -0500\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test', | 
					
						
							|  |  |  |             [('', ''), | 
					
						
							|  |  |  |              ('', 'dd47@mail.xxx.edu'), | 
					
						
							|  |  |  |              ('', '_at_hmhq@hdq-mdm1-imgout.companay.com'), | 
					
						
							|  |  |  |              ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_commas_in_full_name(self): | 
					
						
							|  |  |  |         # This exercises the old commas-in-a-full-name bug, which | 
					
						
							|  |  |  |         # should be doing the right thing in recent versions of the | 
					
						
							|  |  |  |         # module. | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'To: "last, first" <userid@foo.net>\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test', | 
					
						
							|  |  |  |             [('last, first', 'userid@foo.net')]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_quoted_name(self): | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'To: (Comment stuff) "Quoted name"@somewhere.com\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test', | 
					
						
							|  |  |  |             [('Comment stuff', '"Quoted name"@somewhere.com')]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_bogus_to_header(self): | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'To: :\n' | 
					
						
							|  |  |  |             'Cc: goit@lip.com\n' | 
					
						
							|  |  |  |             'Date:    Wed, 13 Jan 1999 23:57:35 -0500\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test', | 
					
						
							|  |  |  |             [('', 'goit@lip.com')]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_addr_ipquad(self): | 
					
						
							|  |  |  |         self.check( | 
					
						
							|  |  |  |             'To: guido@[132.151.1.21]\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'foo', | 
					
						
							|  |  |  |             [('', 'guido@[132.151.1.21]')]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-22 17:17:32 +00:00
										 |  |  |     def test_iter(self): | 
					
						
							|  |  |  |         m = rfc822.Message(StringIO( | 
					
						
							|  |  |  |             'Date:    Wed, 13 Jan 1999 23:57:35 -0500\n' | 
					
						
							|  |  |  |             'From:    Guido van Rossum <guido@CNRI.Reston.VA.US>\n' | 
					
						
							|  |  |  |             'To:      "Guido van\n' | 
					
						
							|  |  |  |             '\t : Rossum" <guido@python.org>\n' | 
					
						
							|  |  |  |             'Subject: test2\n' | 
					
						
							|  |  |  |             '\n' | 
					
						
							|  |  |  |             'test2\n' )) | 
					
						
							|  |  |  |         self.assertEqual(sorted(m), ['date', 'from', 'subject', 'to']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 20:44:16 +00:00
										 |  |  |     def test_rfc2822_phrases(self): | 
					
						
							|  |  |  |         # RFC 2822 (the update to RFC 822) specifies that dots in phrases are | 
					
						
							|  |  |  |         # obsolete syntax, which conforming programs MUST recognize but NEVER | 
					
						
							|  |  |  |         # generate (see $4.1 Miscellaneous obsolete tokens).  This is a | 
					
						
							|  |  |  |         # departure from RFC 822 which did not allow dots in non-quoted | 
					
						
							|  |  |  |         # phrases. | 
					
						
							|  |  |  |         self.check('To: User J. Person <person@dom.ain>\n\n', | 
					
						
							|  |  |  |                    [('User J. Person', 'person@dom.ain')]) | 
					
						
							| 
									
										
										
										
											2001-05-22 19:38:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-21 19:46:13 +00:00
										 |  |  |     # This takes too long to add to the test suite | 
					
						
							| 
									
										
										
										
											2001-11-13 21:33:52 +00:00
										 |  |  | ##    def test_an_excrutiatingly_long_address_field(self): | 
					
						
							|  |  |  | ##        OBSCENELY_LONG_HEADER_MULTIPLIER = 10000 | 
					
						
							|  |  |  | ##        oneaddr = ('Person' * 10) + '@' + ('.'.join(['dom']*10)) + '.com' | 
					
						
							|  |  |  | ##        addr = ', '.join([oneaddr] * OBSCENELY_LONG_HEADER_MULTIPLIER) | 
					
						
							|  |  |  | ##        lst = rfc822.AddrlistClass(addr).getaddrlist() | 
					
						
							|  |  |  | ##        self.assertEqual(len(lst), OBSCENELY_LONG_HEADER_MULTIPLIER) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-21 19:46:13 +00:00
										 |  |  |     def test_2getaddrlist(self): | 
					
						
							|  |  |  |         eq = self.assertEqual | 
					
						
							|  |  |  |         msg = self.create_message("""\
 | 
					
						
							|  |  |  | To: aperson@dom.ain | 
					
						
							|  |  |  | Cc: bperson@dom.ain | 
					
						
							|  |  |  | Cc: cperson@dom.ain | 
					
						
							|  |  |  | Cc: dperson@dom.ain | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | A test message. | 
					
						
							|  |  |  | """)
 | 
					
						
							|  |  |  |         ccs = [('', a) for a in | 
					
						
							|  |  |  |                ['bperson@dom.ain', 'cperson@dom.ain', 'dperson@dom.ain']] | 
					
						
							|  |  |  |         addrs = msg.getaddrlist('cc') | 
					
						
							|  |  |  |         addrs.sort() | 
					
						
							|  |  |  |         eq(addrs, ccs) | 
					
						
							|  |  |  |         # Try again, this one used to fail | 
					
						
							|  |  |  |         addrs = msg.getaddrlist('cc') | 
					
						
							|  |  |  |         addrs.sort() | 
					
						
							|  |  |  |         eq(addrs, ccs) | 
					
						
							| 
									
										
										
										
											2001-09-20 21:33:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-23 03:21:01 +00:00
										 |  |  |     def test_parseaddr(self): | 
					
						
							|  |  |  |         eq = self.assertEqual | 
					
						
							|  |  |  |         eq(rfc822.parseaddr('<>'), ('', '')) | 
					
						
							|  |  |  |         eq(rfc822.parseaddr('aperson@dom.ain'), ('', 'aperson@dom.ain')) | 
					
						
							|  |  |  |         eq(rfc822.parseaddr('bperson@dom.ain (Bea A. Person)'), | 
					
						
							|  |  |  |            ('Bea A. Person', 'bperson@dom.ain')) | 
					
						
							|  |  |  |         eq(rfc822.parseaddr('Cynthia Person <cperson@dom.ain>'), | 
					
						
							|  |  |  |            ('Cynthia Person', 'cperson@dom.ain')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-11 02:32:57 +00:00
										 |  |  |     def test_quote_unquote(self): | 
					
						
							|  |  |  |         eq = self.assertEqual | 
					
						
							|  |  |  |         eq(rfc822.quote('foo\\wacky"name'), 'foo\\\\wacky\\"name') | 
					
						
							|  |  |  |         eq(rfc822.unquote('"foo\\\\wacky\\"name"'), 'foo\\wacky"name') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 21:33:42 +00:00
										 |  |  | def test_main(): | 
					
						
							|  |  |  |     test_support.run_unittest(MessageTestCase) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     test_main() |