Exemplo n.º 1
0
    def test_time2isoz(self):
        from ClientCookie._Util import time2isoz

        base = 1019227000
        day = 24 * 3600
        assert time2isoz(base) == "2002-04-19 14:36:40Z"
        assert time2isoz(base + day) == "2002-04-20 14:36:40Z"
        assert time2isoz(base + 2 * day) == "2002-04-21 14:36:40Z"
        assert time2isoz(base + 3 * day) == "2002-04-22 14:36:40Z"

        az = time2isoz()
        bz = time2isoz(500000)
        for text in (az, bz):
            assert re.search(r"^\d{4}-\d\d-\d\d \d\d:\d\d:\d\dZ$", text), \
                "bad time2isoz format: %s %s" % (az, bz)
Exemplo n.º 2
0
    def test_time2isoz(self):
        from ClientCookie._Util import time2isoz

        base = 1019227000
        day = 24*3600
        assert time2isoz(base) == "2002-04-19 14:36:40Z"
        assert time2isoz(base+day) == "2002-04-20 14:36:40Z"
        assert time2isoz(base+2*day) == "2002-04-21 14:36:40Z"
        assert time2isoz(base+3*day) == "2002-04-22 14:36:40Z"

        az = time2isoz()
        bz = time2isoz(500000)
        for text in (az, bz):
            assert re.search(r"^\d{4}-\d\d-\d\d \d\d:\d\d:\d\dZ$", text), \
                   "bad time2isoz format: %s %s" % (az, bz)
Exemplo n.º 3
0
    def test_http2time_formats(self):
        from ClientCookie._Util import http2time, time2isoz

        # test http2time for supported dates.  Test cases with 2 digit year
        # will probably break in year 2044.
        tests = [
            'Thu, 03 Feb 1994 00:00:00 GMT',  # proposed new HTTP format
            'Thursday, 03-Feb-94 00:00:00 GMT',  # old rfc850 HTTP format
            'Thursday, 03-Feb-1994 00:00:00 GMT',  # broken rfc850 HTTP format

            '03 Feb 1994 00:00:00 GMT',  # HTTP format (no weekday)
            '03-Feb-94 00:00:00 GMT',  # old rfc850 (no weekday)
            '03-Feb-1994 00:00:00 GMT',  # broken rfc850 (no weekday)
            '03-Feb-1994 00:00 GMT',  # broken rfc850 (no weekday, no seconds)
            '03-Feb-1994 00:00',
            # broken rfc850 (no weekday, no seconds, no tz)

            '03-Feb-94',  # old rfc850 HTTP format (no weekday, no time)
            '03-Feb-1994',  # broken rfc850 HTTP format (no weekday, no time)
            '03 Feb 1994',  # proposed new HTTP format (no weekday, no time)

            # A few tests with extra space at various places
            '  03   Feb   1994  0:00  ',
            '  03-Feb-1994  ',
        ]

        test_t = 760233600  # assume broken POSIX counting of seconds
        result = time2isoz(test_t)
        expected = "1994-02-03 00:00:00Z"
        assert result == expected, \
            "%s  =>  '%s' (%s)" % (test_t, result, expected)

        for s in tests:
            t = http2time(s)
            t2 = http2time(string.lower(s))
            t3 = http2time(string.upper(s))

            assert t == t2 == t3 == test_t, \
                "'%s'  =>  %s, %s, %s (%s)" % (s, t, t2, t3, test_t)
Exemplo n.º 4
0
    def test_http2time_formats(self):
        from ClientCookie._Util import http2time, time2isoz

        # test http2time for supported dates.  Test cases with 2 digit year
        # will probably break in year 2044.
        tests = [
         'Thu, 03 Feb 1994 00:00:00 GMT',  # proposed new HTTP format
         'Thursday, 03-Feb-94 00:00:00 GMT',  # old rfc850 HTTP format
         'Thursday, 03-Feb-1994 00:00:00 GMT',  # broken rfc850 HTTP format

         '03 Feb 1994 00:00:00 GMT',  # HTTP format (no weekday)
         '03-Feb-94 00:00:00 GMT',  # old rfc850 (no weekday)
         '03-Feb-1994 00:00:00 GMT',  # broken rfc850 (no weekday)
         '03-Feb-1994 00:00 GMT',  # broken rfc850 (no weekday, no seconds)
         '03-Feb-1994 00:00',  # broken rfc850 (no weekday, no seconds, no tz)

         '03-Feb-94',  # old rfc850 HTTP format (no weekday, no time)
         '03-Feb-1994',  # broken rfc850 HTTP format (no weekday, no time)
         '03 Feb 1994',  # proposed new HTTP format (no weekday, no time)

         # A few tests with extra space at various places
         '  03   Feb   1994  0:00  ',
         '  03-Feb-1994  ',
        ]

        test_t = 760233600  # assume broken POSIX counting of seconds
        result = time2isoz(test_t)
        expected = "1994-02-03 00:00:00Z"
        assert result == expected, \
               "%s  =>  '%s' (%s)" % (test_t, result, expected)

        for s in tests:
            t = http2time(s)
            t2 = http2time(string.lower(s))
            t3 = http2time(string.upper(s))

            assert t == t2 == t3 == test_t, \
                   "'%s'  =>  %s, %s, %s (%s)" % (s, t, t2, t3, test_t)