]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0006-date.sh
Merge branch 'eg/config-type-path-docfix'
[thirdparty/git.git] / t / t0006-date.sh
CommitLineData
34dc6e73
JK
1#!/bin/sh
2
3test_description='test date parsing and printing'
974c919d
ÆAB
4
5TEST_PASSES_SANITIZE_LEAK=true
34dc6e73
JK
6. ./test-lib.sh
7
8# arbitrary reference time: 2009-08-30 19:20:00
b841d4ff 9GIT_TEST_DATE_NOW=1251660000; export GIT_TEST_DATE_NOW
34dc6e73 10
fdba2cde 11check_relative() {
b841d4ff 12 t=$(($GIT_TEST_DATE_NOW - $1))
34dc6e73
JK
13 echo "$t -> $2" >expect
14 test_expect_${3:-success} "relative date ($2)" "
a801a7cf 15 test-tool date relative $t >actual &&
1108cea7 16 test_cmp expect actual
34dc6e73
JK
17 "
18}
19
fdba2cde
JK
20check_relative 5 '5 seconds ago'
21check_relative 300 '5 minutes ago'
22check_relative 18000 '5 hours ago'
23check_relative 432000 '5 days ago'
24check_relative 1728000 '3 weeks ago'
25check_relative 13000000 '5 months ago'
26check_relative 37500000 '1 year, 2 months ago'
27check_relative 55188000 '1 year, 9 months ago'
28check_relative 630000000 '20 years ago'
29check_relative 31449600 '12 months ago'
30check_relative 62985600 '2 years ago'
34dc6e73 31
36d67921
JK
32check_show () {
33 format=$1
34 time=$2
35 expect=$3
22280d7e
JK
36 prereqs=$4
37 zone=$5
38 test_expect_success $prereqs "show date ($format:$time)" '
36d67921 39 echo "$time -> $expect" >expect &&
a801a7cf 40 TZ=${zone:-$TZ} test-tool date show:"$format" "$time" >actual &&
36d67921
JK
41 test_cmp expect actual
42 '
43}
44
45# arbitrary but sensible time for examples
46TIME='1466000000 +0200'
47check_show iso8601 "$TIME" '2016-06-15 16:13:20 +0200'
48check_show iso8601-strict "$TIME" '2016-06-15T16:13:20+02:00'
49check_show rfc2822 "$TIME" 'Wed, 15 Jun 2016 16:13:20 +0200'
50check_show short "$TIME" '2016-06-15'
51check_show default "$TIME" 'Wed Jun 15 16:13:20 2016 +0200'
52check_show raw "$TIME" '1466000000 +0200'
642833db 53check_show unix "$TIME" '1466000000'
36d67921 54check_show iso-local "$TIME" '2016-06-15 14:13:20 +0000'
1a2a1e8e 55check_show raw-local "$TIME" '1466000000 +0000'
642833db 56check_show unix-local "$TIME" '1466000000'
36d67921 57
c3fbf81a
RS
58check_show 'format:%z' "$TIME" '+0200'
59check_show 'format-local:%z' "$TIME" '+0000'
60check_show 'format:%Z' "$TIME" ''
6eced3ec 61check_show 'format-local:%Z' "$TIME" 'UTC'
c3fbf81a
RS
62check_show 'format:%%z' "$TIME" '%z'
63check_show 'format-local:%%z' "$TIME" '%z'
64
22280d7e
JK
65check_show 'format:%Y-%m-%d %H:%M:%S' "$TIME" '2016-06-15 16:13:20'
66check_show 'format-local:%Y-%m-%d %H:%M:%S' "$TIME" '2016-06-15 09:13:20' '' EST5
67
9b591b94
JK
68check_show 'format:%s' '123456789 +1234' 123456789
69check_show 'format:%s' '123456789 -1234' 123456789
70check_show 'format-local:%s' '123456789 -1234' 123456789
71
bab74837
JK
72# arbitrary time absurdly far in the future
73FUTURE="5758122296 -0400"
efac8ac8
JS
74check_show iso "$FUTURE" "2152-06-19 18:24:56 -0400" TIME_IS_64BIT,TIME_T_IS_64BIT
75check_show iso-local "$FUTURE" "2152-06-19 22:24:56 +0000" TIME_IS_64BIT,TIME_T_IS_64BIT
bab74837 76
34dc6e73
JK
77check_parse() {
78 echo "$1 -> $2" >expect
6b097788 79 test_expect_${4:-success} "parse date ($1${3:+ TZ=$3})" "
a801a7cf 80 TZ=${3:-$TZ} test-tool date parse '$1' >actual &&
34dc6e73
JK
81 test_cmp expect actual
82 "
83}
84
85check_parse 2008 bad
86check_parse 2008-02 bad
87check_parse 2008-02-14 bad
88check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 +0000'
6b097788 89check_parse '2008-02-14 20:30:45 -0500' '2008-02-14 20:30:45 -0500'
b784840c 90check_parse '2008.02.14 20:30:45 -0500' '2008-02-14 20:30:45 -0500'
b56be499
ĐTCD
91check_parse '20080214T20:30:45' '2008-02-14 20:30:45 +0000'
92check_parse '20080214T20:30' '2008-02-14 20:30:00 +0000'
93check_parse '20080214T20' '2008-02-14 20:00:00 +0000'
94check_parse '20080214T203045' '2008-02-14 20:30:45 +0000'
95check_parse '20080214T2030' '2008-02-14 20:30:00 +0000'
96check_parse '20080214T000000.20' '2008-02-14 00:00:00 +0000'
97check_parse '20080214T00:00:00.20' '2008-02-14 00:00:00 +0000'
544ed961
ĐTCD
98check_parse '20080214T203045-04:00' '2008-02-14 20:30:45 -0400'
99check_parse '20080214T203045 -04:00' '2008-02-14 20:30:45 -0400'
100check_parse '20080214T203045.019-04:00' '2008-02-14 20:30:45 -0400'
b784840c 101check_parse '2008-02-14 20:30:45.019-04:00' '2008-02-14 20:30:45 -0400'
ee646eb4
HL
102check_parse '2008-02-14 20:30:45 -0015' '2008-02-14 20:30:45 -0015'
103check_parse '2008-02-14 20:30:45 -5' '2008-02-14 20:30:45 +0000'
104check_parse '2008-02-14 20:30:45 -5:' '2008-02-14 20:30:45 +0000'
105check_parse '2008-02-14 20:30:45 -05' '2008-02-14 20:30:45 -0500'
106check_parse '2008-02-14 20:30:45 -:30' '2008-02-14 20:30:45 +0000'
107check_parse '2008-02-14 20:30:45 -05:00' '2008-02-14 20:30:45 -0500'
0cc4da30 108check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 -0500' EST5
b56be499 109check_parse 'Thu, 7 Apr 2005 15:14:13 -0700' '2005-04-07 15:14:13 -0700'
34dc6e73
JK
110
111check_approxidate() {
112 echo "$1 -> $2 +0000" >expect
113 test_expect_${3:-success} "parse approxidate ($1)" "
a801a7cf 114 test-tool date approxidate '$1' >actual &&
34dc6e73
JK
115 test_cmp expect actual
116 "
117}
118
119check_approxidate now '2009-08-30 19:20:00'
120check_approxidate '5 seconds ago' '2009-08-30 19:19:55'
121check_approxidate 5.seconds.ago '2009-08-30 19:19:55'
122check_approxidate 10.minutes.ago '2009-08-30 19:10:00'
123check_approxidate yesterday '2009-08-29 19:20:00'
124check_approxidate 3.days.ago '2009-08-27 19:20:00'
b784840c 125check_approxidate '12:34:56.3.days.ago' '2009-08-27 12:34:56'
34dc6e73 126check_approxidate 3.weeks.ago '2009-08-09 19:20:00'
931e8e27
JK
127check_approxidate 3.months.ago '2009-05-30 19:20:00'
128check_approxidate 2.years.3.months.ago '2007-05-30 19:20:00'
34dc6e73
JK
129
130check_approxidate '6am yesterday' '2009-08-29 06:00:00'
131check_approxidate '6pm yesterday' '2009-08-29 18:00:00'
132check_approxidate '3:00' '2009-08-30 03:00:00'
133check_approxidate '15:00' '2009-08-30 15:00:00'
134check_approxidate 'noon today' '2009-08-30 12:00:00'
135check_approxidate 'noon yesterday' '2009-08-29 12:00:00'
c27cc94f 136check_approxidate 'January 5th noon pm' '2009-01-05 12:00:00'
aa097b88 137check_approxidate '10am noon' '2009-08-29 12:00:00'
34dc6e73
JK
138
139check_approxidate 'last tuesday' '2009-08-25 19:20:00'
140check_approxidate 'July 5th' '2009-07-05 19:20:00'
141check_approxidate '06/05/2009' '2009-06-05 19:20:00'
142check_approxidate '06.05.2009' '2009-05-06 19:20:00'
143
144check_approxidate 'Jun 6, 5AM' '2009-06-06 05:00:00'
145check_approxidate '5AM Jun 6' '2009-06-06 05:00:00'
146check_approxidate '6AM, June 7, 2009' '2009-06-07 06:00:00'
147
d3723953
JK
148check_approxidate '2008-12-01' '2008-12-01 19:20:00'
149check_approxidate '2009-12-01' '2009-12-01 19:20:00'
150
110a6a16
SS
151check_date_format_human() {
152 t=$(($GIT_TEST_DATE_NOW - $1))
153 echo "$t -> $2" >expect
154 test_expect_success "human date $t" '
155 test-tool date human $t >actual &&
1108cea7 156 test_cmp expect actual
110a6a16
SS
157'
158}
159
160check_date_format_human 18000 "5 hours ago" # 5 hours ago
161check_date_format_human 432000 "Tue Aug 25 19:20" # 5 days ago
162check_date_format_human 1728000 "Mon Aug 10 19:20" # 3 weeks ago
163check_date_format_human 13000000 "Thu Apr 2 08:13" # 5 months ago
164check_date_format_human 31449600 "Aug 31 2008" # 12 months ago
165check_date_format_human 37500000 "Jun 22 2008" # 1 year, 2 months ago
166check_date_format_human 55188000 "Dec 1 2007" # 1 year, 9 months ago
167check_date_format_human 630000000 "Sep 13 1989" # 20 years ago
168
34dc6e73 169test_done