]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0006-date.sh
Git 2.13
[thirdparty/git.git] / t / t0006-date.sh
CommitLineData
34dc6e73
JK
1#!/bin/sh
2
3test_description='test date parsing and printing'
4. ./test-lib.sh
5
6# arbitrary reference time: 2009-08-30 19:20:00
7TEST_DATE_NOW=1251660000; export TEST_DATE_NOW
8
fdba2cde 9check_relative() {
34dc6e73
JK
10 t=$(($TEST_DATE_NOW - $1))
11 echo "$t -> $2" >expect
12 test_expect_${3:-success} "relative date ($2)" "
fdba2cde 13 test-date relative $t >actual &&
4fa7e198 14 test_i18ncmp expect actual
34dc6e73
JK
15 "
16}
17
fdba2cde
JK
18check_relative 5 '5 seconds ago'
19check_relative 300 '5 minutes ago'
20check_relative 18000 '5 hours ago'
21check_relative 432000 '5 days ago'
22check_relative 1728000 '3 weeks ago'
23check_relative 13000000 '5 months ago'
24check_relative 37500000 '1 year, 2 months ago'
25check_relative 55188000 '1 year, 9 months ago'
26check_relative 630000000 '20 years ago'
27check_relative 31449600 '12 months ago'
28check_relative 62985600 '2 years ago'
34dc6e73 29
36d67921
JK
30check_show () {
31 format=$1
32 time=$2
33 expect=$3
6b9c38e1 34 test_expect_success $4 "show date ($format:$time)" '
36d67921
JK
35 echo "$time -> $expect" >expect &&
36 test-date show:$format "$time" >actual &&
37 test_cmp expect actual
38 '
39}
40
41# arbitrary but sensible time for examples
42TIME='1466000000 +0200'
43check_show iso8601 "$TIME" '2016-06-15 16:13:20 +0200'
44check_show iso8601-strict "$TIME" '2016-06-15T16:13:20+02:00'
45check_show rfc2822 "$TIME" 'Wed, 15 Jun 2016 16:13:20 +0200'
46check_show short "$TIME" '2016-06-15'
47check_show default "$TIME" 'Wed Jun 15 16:13:20 2016 +0200'
48check_show raw "$TIME" '1466000000 +0200'
642833db 49check_show unix "$TIME" '1466000000'
36d67921 50check_show iso-local "$TIME" '2016-06-15 14:13:20 +0000'
1a2a1e8e 51check_show raw-local "$TIME" '1466000000 +0000'
642833db 52check_show unix-local "$TIME" '1466000000'
36d67921 53
bab74837
JK
54# arbitrary time absurdly far in the future
55FUTURE="5758122296 -0400"
6b9c38e1
JK
56check_show iso "$FUTURE" "2152-06-19 18:24:56 -0400" LONG_IS_64BIT
57check_show iso-local "$FUTURE" "2152-06-19 22:24:56 +0000" LONG_IS_64BIT
bab74837 58
34dc6e73
JK
59check_parse() {
60 echo "$1 -> $2" >expect
6b097788
JK
61 test_expect_${4:-success} "parse date ($1${3:+ TZ=$3})" "
62 TZ=${3:-$TZ} test-date parse '$1' >actual &&
34dc6e73
JK
63 test_cmp expect actual
64 "
65}
66
67check_parse 2008 bad
68check_parse 2008-02 bad
69check_parse 2008-02-14 bad
70check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 +0000'
6b097788 71check_parse '2008-02-14 20:30:45 -0500' '2008-02-14 20:30:45 -0500'
ee646eb4
HL
72check_parse '2008-02-14 20:30:45 -0015' '2008-02-14 20:30:45 -0015'
73check_parse '2008-02-14 20:30:45 -5' '2008-02-14 20:30:45 +0000'
74check_parse '2008-02-14 20:30:45 -5:' '2008-02-14 20:30:45 +0000'
75check_parse '2008-02-14 20:30:45 -05' '2008-02-14 20:30:45 -0500'
76check_parse '2008-02-14 20:30:45 -:30' '2008-02-14 20:30:45 +0000'
77check_parse '2008-02-14 20:30:45 -05:00' '2008-02-14 20:30:45 -0500'
0cc4da30 78check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 -0500' EST5
34dc6e73
JK
79
80check_approxidate() {
81 echo "$1 -> $2 +0000" >expect
82 test_expect_${3:-success} "parse approxidate ($1)" "
83 test-date approxidate '$1' >actual &&
84 test_cmp expect actual
85 "
86}
87
88check_approxidate now '2009-08-30 19:20:00'
89check_approxidate '5 seconds ago' '2009-08-30 19:19:55'
90check_approxidate 5.seconds.ago '2009-08-30 19:19:55'
91check_approxidate 10.minutes.ago '2009-08-30 19:10:00'
92check_approxidate yesterday '2009-08-29 19:20:00'
93check_approxidate 3.days.ago '2009-08-27 19:20:00'
94check_approxidate 3.weeks.ago '2009-08-09 19:20:00'
931e8e27
JK
95check_approxidate 3.months.ago '2009-05-30 19:20:00'
96check_approxidate 2.years.3.months.ago '2007-05-30 19:20:00'
34dc6e73
JK
97
98check_approxidate '6am yesterday' '2009-08-29 06:00:00'
99check_approxidate '6pm yesterday' '2009-08-29 18:00:00'
100check_approxidate '3:00' '2009-08-30 03:00:00'
101check_approxidate '15:00' '2009-08-30 15:00:00'
102check_approxidate 'noon today' '2009-08-30 12:00:00'
103check_approxidate 'noon yesterday' '2009-08-29 12:00:00'
104
105check_approxidate 'last tuesday' '2009-08-25 19:20:00'
106check_approxidate 'July 5th' '2009-07-05 19:20:00'
107check_approxidate '06/05/2009' '2009-06-05 19:20:00'
108check_approxidate '06.05.2009' '2009-05-06 19:20:00'
109
110check_approxidate 'Jun 6, 5AM' '2009-06-06 05:00:00'
111check_approxidate '5AM Jun 6' '2009-06-06 05:00:00'
112check_approxidate '6AM, June 7, 2009' '2009-06-07 06:00:00'
113
d3723953
JK
114check_approxidate '2008-12-01' '2008-12-01 19:20:00'
115check_approxidate '2009-12-01' '2009-12-01 19:20:00'
116
34dc6e73 117test_done