Issue #10939: Fixed imaplib.Internaldate2tuple(). Thanks Joe Peterson

for the report and the patch.  Reviewed by Georg Brandl.
This commit is contained in:
Alexander Belopolsky 2011-01-29 17:19:08 +00:00
parent ac039aee4d
commit 19e0a9e511
3 changed files with 15 additions and 3 deletions

View file

@ -23,6 +23,17 @@ CERTFILE = None
class TestImaplib(unittest.TestCase):
def test_Internaldate2tuple(self):
tt = imaplib.Internaldate2tuple(
b'25 (INTERNALDATE "01-Jan-1970 00:00:00 +0000")')
self.assertEqual(time.mktime(tt), 0)
tt = imaplib.Internaldate2tuple(
b'25 (INTERNALDATE "01-Jan-1970 11:30:00 +1130")')
self.assertEqual(time.mktime(tt), 0)
tt = imaplib.Internaldate2tuple(
b'25 (INTERNALDATE "31-Dec-1969 12:30:00 -1130")')
self.assertEqual(time.mktime(tt), 0)
def test_that_Time2Internaldate_returns_a_result(self):
# We can check only that it successfully produces a result,
# not the correctness of the result itself, since the result