Commit 74d31a00 authored by Alexander Belopolsky's avatar Alexander Belopolsky

Merged revisions 88239 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r88239 | alexander.belopolsky | 2011-01-29 14:49:40 -0500 (Sat, 29 Jan 2011) | 1 line

  Issue #10939: Make Internaldate2tuple test more robust.
........
parent 26d55edc
......@@ -12,6 +12,7 @@ import socket
import socketserver
import sys
import time
import calendar
from test.support import reap_threads, verbose, transient_internet
import unittest
......@@ -27,15 +28,16 @@ CERTFILE = None
class TestImaplib(unittest.TestCase):
def test_Internaldate2tuple(self):
t0 = calendar.timegm((2000, 1, 1, 0, 0, 0, -1, -1, -1))
tt = imaplib.Internaldate2tuple(
b'25 (INTERNALDATE "01-Jan-1970 00:00:00 +0000")')
self.assertEqual(time.mktime(tt), 0)
b'25 (INTERNALDATE "01-Jan-2000 00:00:00 +0000")')
self.assertEqual(time.mktime(tt), t0)
tt = imaplib.Internaldate2tuple(
b'25 (INTERNALDATE "01-Jan-1970 11:30:00 +1130")')
self.assertEqual(time.mktime(tt), 0)
b'25 (INTERNALDATE "01-Jan-2000 11:30:00 +1130")')
self.assertEqual(time.mktime(tt), t0)
tt = imaplib.Internaldate2tuple(
b'25 (INTERNALDATE "31-Dec-1969 12:30:00 -1130")')
self.assertEqual(time.mktime(tt), 0)
b'25 (INTERNALDATE "31-Dec-1999 12:30:00 -1130")')
self.assertEqual(time.mktime(tt), t0)
def test_that_Time2Internaldate_returns_a_result(self):
# We can check only that it successfully produces a result,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment