6614.1.3
by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual. |
1 |
# Copyright (C) 2007, 2009, 2010, 2011, 2016 Canonical Ltd
|
1551.12.29
by Aaron Bentley
Copy and extend patch date formatting code, add patch-date parsing |
2 |
#
|
3 |
# This program is free software; you can redistribute it and/or modify
|
|
4 |
# it under the terms of the GNU General Public License as published by
|
|
5 |
# the Free Software Foundation; either version 2 of the License, or
|
|
6 |
# (at your option) any later version.
|
|
7 |
#
|
|
8 |
# This program is distributed in the hope that it will be useful,
|
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11 |
# GNU General Public License for more details.
|
|
12 |
#
|
|
13 |
# You should have received a copy of the GNU General Public License
|
|
14 |
# along with this program; if not, write to the Free Software
|
|
4183.7.1
by Sabin Iacob
update FSF mailing address |
15 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
1551.12.29
by Aaron Bentley
Copy and extend patch date formatting code, add patch-date parsing |
16 |
|
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
17 |
import random |
18 |
import time |
|
19 |
||
20 |
||
1551.12.29
by Aaron Bentley
Copy and extend patch date formatting code, add patch-date parsing |
21 |
from bzrlib import ( |
22 |
tests, |
|
23 |
timestamp, |
|
24 |
)
|
|
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
25 |
from bzrlib.osutils import local_time_offset |
26 |
||
1551.12.29
by Aaron Bentley
Copy and extend patch date formatting code, add patch-date parsing |
27 |
|
28 |
class TestPatchHeader(tests.TestCase): |
|
29 |
||
1551.12.36
by Aaron Bentley
Fix failing tests |
30 |
def test_format_patch_date(self): |
2425.6.1
by Martin Pool
Fix formatting of timezones in bundles and merge directives. |
31 |
# epoch is always in utc
|
1551.12.29
by Aaron Bentley
Copy and extend patch date formatting code, add patch-date parsing |
32 |
self.assertEqual('1970-01-01 00:00:00 +0000', |
1551.12.36
by Aaron Bentley
Fix failing tests |
33 |
timestamp.format_patch_date(0)) |
2425.6.1
by Martin Pool
Fix formatting of timezones in bundles and merge directives. |
34 |
self.assertEqual('1970-01-01 00:00:00 +0000', |
1551.12.36
by Aaron Bentley
Fix failing tests |
35 |
timestamp.format_patch_date(0, 5 * 3600)) |
2425.6.1
by Martin Pool
Fix formatting of timezones in bundles and merge directives. |
36 |
self.assertEqual('1970-01-01 00:00:00 +0000', |
37 |
timestamp.format_patch_date(0, -5 * 3600)) |
|
38 |
# regular timestamp with typical timezone
|
|
1551.12.29
by Aaron Bentley
Copy and extend patch date formatting code, add patch-date parsing |
39 |
self.assertEqual('2007-03-06 10:04:19 -0500', |
1551.12.36
by Aaron Bentley
Fix failing tests |
40 |
timestamp.format_patch_date(1173193459, -5 * 3600)) |
2425.6.1
by Martin Pool
Fix formatting of timezones in bundles and merge directives. |
41 |
# the timezone part is HHMM
|
42 |
self.assertEqual('2007-03-06 09:34:19 -0530', |
|
43 |
timestamp.format_patch_date(1173193459, -5.5 * 3600)) |
|
44 |
# timezones can be offset by single minutes (but no less)
|
|
45 |
self.assertEqual('2007-03-06 15:05:19 +0001', |
|
46 |
timestamp.format_patch_date(1173193459, +1 * 60)) |
|
1551.12.29
by Aaron Bentley
Copy and extend patch date formatting code, add patch-date parsing |
47 |
|
48 |
def test_parse_patch_date(self): |
|
49 |
self.assertEqual((0, 0), |
|
50 |
timestamp.parse_patch_date('1970-01-01 00:00:00 +0000')) |
|
2425.6.1
by Martin Pool
Fix formatting of timezones in bundles and merge directives. |
51 |
# even though we don't emit pre-epoch dates, we can parse them
|
1551.12.29
by Aaron Bentley
Copy and extend patch date formatting code, add patch-date parsing |
52 |
self.assertEqual((0, -5 * 3600), |
53 |
timestamp.parse_patch_date('1969-12-31 19:00:00 -0500')) |
|
54 |
self.assertEqual((0, +5 * 3600), |
|
55 |
timestamp.parse_patch_date('1970-01-01 05:00:00 +0500')) |
|
56 |
self.assertEqual((1173193459, -5 * 3600), |
|
57 |
timestamp.parse_patch_date('2007-03-06 10:04:19 -0500')) |
|
2425.6.1
by Martin Pool
Fix formatting of timezones in bundles and merge directives. |
58 |
# offset of three minutes
|
59 |
self.assertEqual((1173193459, +3 * 60), |
|
60 |
timestamp.parse_patch_date('2007-03-06 15:07:19 +0003')) |
|
6280.2.1
by Matt Giuca
bzrlib.timestamp: More robust handling of time stamp string. (LP: #892657) |
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') |
|
6280.2.2
by Matt Giuca
bzrlib.timestamp: Now checks offset hour and minute to ensure they are within correct range. |
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') |
|
6280.2.1
by Matt Giuca
bzrlib.timestamp: More robust handling of time stamp string. (LP: #892657) |
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') |
|
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
100 |
|
101 |
||
102 |
class UnpackHighresDateTests(tests.TestCase): |
|
103 |
||
104 |
def test_unpack_highres_date(self): |
|
6614.1.3
by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual. |
105 |
self.assertEqual( |
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
106 |
(1120153132.3508501, -18000), |
107 |
timestamp.unpack_highres_date('Thu 2005-06-30 12:38:52.350850105 -0500')) |
|
6614.1.3
by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual. |
108 |
self.assertEqual( |
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
109 |
(1120153132.3508501, 0), |
110 |
timestamp.unpack_highres_date('Thu 2005-06-30 17:38:52.350850105 +0000')) |
|
6614.1.3
by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual. |
111 |
self.assertEqual( |
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
112 |
(1120153132.3508501, 7200), |
113 |
timestamp.unpack_highres_date('Thu 2005-06-30 19:38:52.350850105 +0200')) |
|
6614.1.3
by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual. |
114 |
self.assertEqual( |
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
115 |
(1152428738.867522, 19800), |
116 |
timestamp.unpack_highres_date('Sun 2006-07-09 12:35:38.867522001 +0530')) |
|
117 |
||
118 |
def test_random(self): |
|
119 |
t = time.time() |
|
120 |
o = local_time_offset() |
|
121 |
t2, o2 = timestamp.unpack_highres_date(timestamp.format_highres_date(t, o)) |
|
6614.1.3
by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual. |
122 |
self.assertEqual(t, t2) |
123 |
self.assertEqual(o, o2) |
|
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
124 |
t -= 24*3600*365*2 # Start 2 years ago |
125 |
o = -12*3600 |
|
126 |
for count in xrange(500): |
|
127 |
t += random.random()*24*3600*30 |
|
128 |
o = ((o/3600 + 13) % 25 - 12)*3600 # Add 1 wrap around from [-12, 12] |
|
129 |
date = timestamp.format_highres_date(t, o) |
|
130 |
t2, o2 = timestamp.unpack_highres_date(date) |
|
6614.1.3
by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual. |
131 |
self.assertEqual(t, t2, |
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
132 |
'Failed on date %r, %s,%s diff:%s' % (date, t, o, t2-t)) |
6614.1.3
by Vincent Ladeuil
Fix assertEquals being deprecated by using assertEqual. |
133 |
self.assertEqual(o, o2, |
5580.1.1
by Jelmer Vernooij
Convert bzrlib.timestamp.unpack_highres_date doc test to a unit test. |
134 |
'Failed on date %r, %s,%s diff:%s' % (date, t, o, t2-t)) |