~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_timestamp.py

  • Committer: Jonathan Riddell
  • Date: 2011-05-16 11:27:37 UTC
  • mto: This revision was merged to the branch mainline in revision 5869.
  • Revision ID: jriddell@canonical.com-20110516112737-gep642p24rtzp3jt
userĀ guideĀ licence

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007, 2009, 2010, 2011, 2016 Canonical Ltd
 
1
# Copyright (C) 2007, 2009, 2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
58
58
        # offset of three minutes
59
59
        self.assertEqual((1173193459, +3 * 60),
60
60
            timestamp.parse_patch_date('2007-03-06 15:07:19 +0003'))
61
 
        # No space between time and offset
62
 
        self.assertEqual((1173193459, -5 * 3600),
63
 
            timestamp.parse_patch_date('2007-03-06 10:04:19-0500'))
64
 
        # Extra spacing
65
 
        self.assertEqual((1173193459, -5 * 3600),
66
 
            timestamp.parse_patch_date('2007-03-06     10:04:19     -0500'))
67
 
 
68
 
    def test_parse_patch_date_bad(self):
69
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
70
 
            'NOT A TIME')
71
 
        # Extra data at end
72
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
73
 
            '2007-03-06 10:04:19 -0500x')
74
 
        # Missing day
75
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
76
 
            '2007-03 10:04:19 -0500')
77
 
        # Missing seconds
78
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
79
 
            '2007-03-06 10:04 -0500')
80
 
        # Missing offset
81
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
82
 
            '2007-03-06 10:04:19')
83
 
        # Missing plus or minus in offset
84
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
85
 
            '2007-03-06 10:04:19 0500')
86
 
        # Invalid hour in offset
87
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
88
 
            '2007-03-06 10:04:19 +2400')
89
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
90
 
            '2007-03-06 10:04:19 -2400')
91
 
        # Invalid minute in offset
92
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
93
 
            '2007-03-06 10:04:19 -0560')
94
 
        # Too many digits in offset
95
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
96
 
            '2007-03-06 10:04:19 79500')
97
 
        # Minus sign in middle of offset
98
 
        self.assertRaises(ValueError, timestamp.parse_patch_date,
99
 
            '2007-03-06 10:04:19 +05-5')
100
61
 
101
62
 
102
63
class UnpackHighresDateTests(tests.TestCase):
103
64
 
104
65
    def test_unpack_highres_date(self):
105
 
        self.assertEqual(
 
66
        self.assertEquals(
106
67
            (1120153132.3508501, -18000),
107
68
            timestamp.unpack_highres_date('Thu 2005-06-30 12:38:52.350850105 -0500'))
108
 
        self.assertEqual(
 
69
        self.assertEquals(
109
70
            (1120153132.3508501, 0),
110
71
            timestamp.unpack_highres_date('Thu 2005-06-30 17:38:52.350850105 +0000'))
111
 
        self.assertEqual(
 
72
        self.assertEquals(
112
73
            (1120153132.3508501, 7200),
113
74
            timestamp.unpack_highres_date('Thu 2005-06-30 19:38:52.350850105 +0200'))
114
 
        self.assertEqual(
 
75
        self.assertEquals(
115
76
            (1152428738.867522, 19800),
116
77
            timestamp.unpack_highres_date('Sun 2006-07-09 12:35:38.867522001 +0530'))
117
78
 
119
80
        t = time.time()
120
81
        o = local_time_offset()
121
82
        t2, o2 = timestamp.unpack_highres_date(timestamp.format_highres_date(t, o))
122
 
        self.assertEqual(t, t2)
123
 
        self.assertEqual(o, o2)
 
83
        self.assertEquals(t, t2)
 
84
        self.assertEquals(o, o2)
124
85
        t -= 24*3600*365*2 # Start 2 years ago
125
86
        o = -12*3600
126
87
        for count in xrange(500):
128
89
            o = ((o/3600 + 13) % 25 - 12)*3600 # Add 1 wrap around from [-12, 12]
129
90
            date = timestamp.format_highres_date(t, o)
130
91
            t2, o2 = timestamp.unpack_highres_date(date)
131
 
            self.assertEqual(t, t2,
 
92
            self.assertEquals(t, t2,
132
93
                'Failed on date %r, %s,%s diff:%s' % (date, t, o, t2-t))
133
 
            self.assertEqual(o, o2,
 
94
            self.assertEquals(o, o2,
134
95
                'Failed on date %r, %s,%s diff:%s' % (date, t, o, t2-t))