blob: 3031256d143b154dc1ff5e55ae46a7ffd4c7cf6d [file] [log] [blame]
Jeff King34dc6e72009-08-30 22:30:16 -04001#!/bin/sh
2
3test_description='test date parsing and printing'
Ævar Arnfjörð Bjarmason974c9192022-02-16 09:14:05 +01004
5TEST_PASSES_SANITIZE_LEAK=true
Jeff King34dc6e72009-08-30 22:30:16 -04006. ./test-lib.sh
7
8# arbitrary reference time: 2009-08-30 19:20:00
Stephen P. Smithb841d4f2019-01-28 20:50:15 -07009GIT_TEST_DATE_NOW=1251660000; export GIT_TEST_DATE_NOW
Jeff King34dc6e72009-08-30 22:30:16 -040010
Jeff Kingfdba2cd2016-06-20 17:10:29 -040011check_relative() {
Stephen P. Smithb841d4f2019-01-28 20:50:15 -070012 t=$(($GIT_TEST_DATE_NOW - $1))
Jeff King34dc6e72009-08-30 22:30:16 -040013 echo "$t -> $2" >expect
14 test_expect_${3:-success} "relative date ($2)" "
Nguyễn Thái Ngọc Duya801a7c2018-03-24 08:44:36 +010015 test-tool date relative $t >actual &&
Ævar Arnfjörð Bjarmason1108cea2021-02-11 02:53:53 +010016 test_cmp expect actual
Jeff King34dc6e72009-08-30 22:30:16 -040017 "
18}
19
Jeff Kingfdba2cd2016-06-20 17:10:29 -040020check_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'
Jeff King34dc6e72009-08-30 22:30:16 -040031
Jeff King36d67922016-06-20 17:11:59 -040032check_show () {
33 format=$1
34 time=$2
35 expect=$3
Jeff King22280d72017-06-15 09:51:22 -040036 prereqs=$4
37 zone=$5
38 test_expect_success $prereqs "show date ($format:$time)" '
Jeff King36d67922016-06-20 17:11:59 -040039 echo "$time -> $expect" >expect &&
Nguyễn Thái Ngọc Duya801a7c2018-03-24 08:44:36 +010040 TZ=${zone:-$TZ} test-tool date show:"$format" "$time" >actual &&
Jeff King36d67922016-06-20 17:11:59 -040041 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'
Beat Bolli69e2bee2024-03-13 23:54:23 +010049check_show iso8601-strict "$(echo "$TIME" | sed 's/+0200$/+0000/')" '2016-06-15T14:13:20Z'
Jeff King36d67922016-06-20 17:11:59 -040050check_show rfc2822 "$TIME" 'Wed, 15 Jun 2016 16:13:20 +0200'
51check_show short "$TIME" '2016-06-15'
52check_show default "$TIME" 'Wed Jun 15 16:13:20 2016 +0200'
53check_show raw "$TIME" '1466000000 +0200'
Jeff King642833d2016-07-22 15:51:49 -040054check_show unix "$TIME" '1466000000'
Jeff King36d67922016-06-20 17:11:59 -040055check_show iso-local "$TIME" '2016-06-15 14:13:20 +0000'
Jeff King1a2a1e82016-07-27 09:44:41 -040056check_show raw-local "$TIME" '1466000000 +0000'
Jeff King642833d2016-07-22 15:51:49 -040057check_show unix-local "$TIME" '1466000000'
Jeff King36d67922016-06-20 17:11:59 -040058
René Scharfec3fbf812017-06-15 14:29:53 +020059check_show 'format:%z' "$TIME" '+0200'
60check_show 'format-local:%z' "$TIME" '+0000'
61check_show 'format:%Z' "$TIME" ''
Jeff King6eced3e2017-06-15 09:52:17 -040062check_show 'format-local:%Z' "$TIME" 'UTC'
René Scharfec3fbf812017-06-15 14:29:53 +020063check_show 'format:%%z' "$TIME" '%z'
64check_show 'format-local:%%z' "$TIME" '%z'
65
Jeff King22280d72017-06-15 09:51:22 -040066check_show 'format:%Y-%m-%d %H:%M:%S' "$TIME" '2016-06-15 16:13:20'
67check_show 'format-local:%Y-%m-%d %H:%M:%S' "$TIME" '2016-06-15 09:13:20' '' EST5
68
Jeff King9b591b92021-11-02 07:35:34 -040069check_show 'format:%s' '123456789 +1234' 123456789
70check_show 'format:%s' '123456789 -1234' 123456789
71check_show 'format-local:%s' '123456789 -1234' 123456789
72
Beat Bollie4e9d5f2024-03-14 09:55:12 +010073# negative TZ offset
74TIME='1466000000 -0200'
75check_show iso8601 "$TIME" '2016-06-15 12:13:20 -0200'
76check_show iso8601-strict "$TIME" '2016-06-15T12:13:20-02:00'
77check_show rfc2822 "$TIME" 'Wed, 15 Jun 2016 12:13:20 -0200'
78check_show default "$TIME" 'Wed Jun 15 12:13:20 2016 -0200'
79check_show raw "$TIME" '1466000000 -0200'
80
Jeff Kingbab74832016-06-20 17:14:14 -040081# arbitrary time absurdly far in the future
82FUTURE="5758122296 -0400"
Johannes Schindelinefac8ac2017-04-20 22:58:21 +020083check_show iso "$FUTURE" "2152-06-19 18:24:56 -0400" TIME_IS_64BIT,TIME_T_IS_64BIT
84check_show iso-local "$FUTURE" "2152-06-19 22:24:56 +0000" TIME_IS_64BIT,TIME_T_IS_64BIT
Jeff Kingbab74832016-06-20 17:14:14 -040085
Jeff King34dc6e72009-08-30 22:30:16 -040086check_parse() {
87 echo "$1 -> $2" >expect
Jeff King6b097782010-07-04 06:48:35 -040088 test_expect_${4:-success} "parse date ($1${3:+ TZ=$3})" "
Nguyễn Thái Ngọc Duya801a7c2018-03-24 08:44:36 +010089 TZ=${3:-$TZ} test-tool date parse '$1' >actual &&
Jeff King34dc6e72009-08-30 22:30:16 -040090 test_cmp expect actual
91 "
92}
93
94check_parse 2008 bad
95check_parse 2008-02 bad
96check_parse 2008-02-14 bad
97check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 +0000'
Jeff King6b097782010-07-04 06:48:35 -040098check_parse '2008-02-14 20:30:45 -0500' '2008-02-14 20:30:45 -0500'
Đoàn Trần Công Danhb7848402020-04-24 22:07:31 +070099check_parse '2008.02.14 20:30:45 -0500' '2008-02-14 20:30:45 -0500'
Đoàn Trần Công Danhb56be492023-01-11 07:10:03 +0700100check_parse '20080214T20:30:45' '2008-02-14 20:30:45 +0000'
101check_parse '20080214T20:30' '2008-02-14 20:30:00 +0000'
102check_parse '20080214T20' '2008-02-14 20:00:00 +0000'
103check_parse '20080214T203045' '2008-02-14 20:30:45 +0000'
104check_parse '20080214T2030' '2008-02-14 20:30:00 +0000'
105check_parse '20080214T000000.20' '2008-02-14 00:00:00 +0000'
106check_parse '20080214T00:00:00.20' '2008-02-14 00:00:00 +0000'
Đoàn Trần Công Danh544ed962020-04-24 22:07:32 +0700107check_parse '20080214T203045-04:00' '2008-02-14 20:30:45 -0400'
108check_parse '20080214T203045 -04:00' '2008-02-14 20:30:45 -0400'
109check_parse '20080214T203045.019-04:00' '2008-02-14 20:30:45 -0400'
Đoàn Trần Công Danhb7848402020-04-24 22:07:31 +0700110check_parse '2008-02-14 20:30:45.019-04:00' '2008-02-14 20:30:45 -0400'
Haitao Liee646eb2011-09-09 18:10:33 +0800111check_parse '2008-02-14 20:30:45 -0015' '2008-02-14 20:30:45 -0015'
112check_parse '2008-02-14 20:30:45 -5' '2008-02-14 20:30:45 +0000'
113check_parse '2008-02-14 20:30:45 -5:' '2008-02-14 20:30:45 +0000'
114check_parse '2008-02-14 20:30:45 -05' '2008-02-14 20:30:45 -0500'
115check_parse '2008-02-14 20:30:45 -:30' '2008-02-14 20:30:45 +0000'
116check_parse '2008-02-14 20:30:45 -05:00' '2008-02-14 20:30:45 -0500'
Brandon Casey0cc4da32010-07-06 18:34:20 -0500117check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 -0500' EST5
Đoàn Trần Công Danhb56be492023-01-11 07:10:03 +0700118check_parse 'Thu, 7 Apr 2005 15:14:13 -0700' '2005-04-07 15:14:13 -0700'
Jeff King34dc6e72009-08-30 22:30:16 -0400119
120check_approxidate() {
121 echo "$1 -> $2 +0000" >expect
122 test_expect_${3:-success} "parse approxidate ($1)" "
Nguyễn Thái Ngọc Duya801a7c2018-03-24 08:44:36 +0100123 test-tool date approxidate '$1' >actual &&
Jeff King34dc6e72009-08-30 22:30:16 -0400124 test_cmp expect actual
125 "
126}
127
128check_approxidate now '2009-08-30 19:20:00'
129check_approxidate '5 seconds ago' '2009-08-30 19:19:55'
130check_approxidate 5.seconds.ago '2009-08-30 19:19:55'
131check_approxidate 10.minutes.ago '2009-08-30 19:10:00'
132check_approxidate yesterday '2009-08-29 19:20:00'
133check_approxidate 3.days.ago '2009-08-27 19:20:00'
Đoàn Trần Công Danhb7848402020-04-24 22:07:31 +0700134check_approxidate '12:34:56.3.days.ago' '2009-08-27 12:34:56'
Jeff King34dc6e72009-08-30 22:30:16 -0400135check_approxidate 3.weeks.ago '2009-08-09 19:20:00'
Jeff King931e8e22009-08-30 22:31:42 -0400136check_approxidate 3.months.ago '2009-05-30 19:20:00'
137check_approxidate 2.years.3.months.ago '2007-05-30 19:20:00'
Jeff King34dc6e72009-08-30 22:30:16 -0400138
139check_approxidate '6am yesterday' '2009-08-29 06:00:00'
140check_approxidate '6pm yesterday' '2009-08-29 18:00:00'
141check_approxidate '3:00' '2009-08-30 03:00:00'
142check_approxidate '15:00' '2009-08-30 15:00:00'
143check_approxidate 'noon today' '2009-08-30 12:00:00'
144check_approxidate 'noon yesterday' '2009-08-29 12:00:00'
Jeff Kingc27cc942018-11-02 01:23:09 -0400145check_approxidate 'January 5th noon pm' '2009-01-05 12:00:00'
Jeff Kingaa097b82018-11-06 20:12:53 -0500146check_approxidate '10am noon' '2009-08-29 12:00:00'
Jeff King34dc6e72009-08-30 22:30:16 -0400147
148check_approxidate 'last tuesday' '2009-08-25 19:20:00'
149check_approxidate 'July 5th' '2009-07-05 19:20:00'
150check_approxidate '06/05/2009' '2009-06-05 19:20:00'
151check_approxidate '06.05.2009' '2009-05-06 19:20:00'
152
153check_approxidate 'Jun 6, 5AM' '2009-06-06 05:00:00'
154check_approxidate '5AM Jun 6' '2009-06-06 05:00:00'
155check_approxidate '6AM, June 7, 2009' '2009-06-07 06:00:00'
156
Jeff Kingd3723952014-11-13 16:43:31 -0500157check_approxidate '2008-12-01' '2008-12-01 19:20:00'
158check_approxidate '2009-12-01' '2009-12-01 19:20:00'
159
Stephen P. Smith110a6a12019-01-28 20:50:16 -0700160check_date_format_human() {
161 t=$(($GIT_TEST_DATE_NOW - $1))
162 echo "$t -> $2" >expect
163 test_expect_success "human date $t" '
164 test-tool date human $t >actual &&
Ævar Arnfjörð Bjarmason1108cea2021-02-11 02:53:53 +0100165 test_cmp expect actual
Stephen P. Smith110a6a12019-01-28 20:50:16 -0700166'
167}
168
169check_date_format_human 18000 "5 hours ago" # 5 hours ago
170check_date_format_human 432000 "Tue Aug 25 19:20" # 5 days ago
171check_date_format_human 1728000 "Mon Aug 10 19:20" # 3 weeks ago
172check_date_format_human 13000000 "Thu Apr 2 08:13" # 5 months ago
173check_date_format_human 31449600 "Aug 31 2008" # 12 months ago
174check_date_format_human 37500000 "Jun 22 2008" # 1 year, 2 months ago
175check_date_format_human 55188000 "Dec 1 2007" # 1 year, 9 months ago
176check_date_format_human 630000000 "Sep 13 1989" # 20 years ago
177
Jeff King34dc6e72009-08-30 22:30:16 -0400178test_done