rebase: use correct base for --keep-base when a branch is given
[alt-git.git] / t / t0006-date.sh
blob2490162071e700e8a69d0e6311b6f22eda4e7046
1 #!/bin/sh
3 test_description='test date parsing and printing'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
8 # arbitrary reference time: 2009-08-30 19:20:00
9 GIT_TEST_DATE_NOW=1251660000; export GIT_TEST_DATE_NOW
11 check_relative() {
12 t=$(($GIT_TEST_DATE_NOW - $1))
13 echo "$t -> $2" >expect
14 test_expect_${3:-success} "relative date ($2)" "
15 test-tool date relative $t >actual &&
16 test_cmp expect actual
20 check_relative 5 '5 seconds ago'
21 check_relative 300 '5 minutes ago'
22 check_relative 18000 '5 hours ago'
23 check_relative 432000 '5 days ago'
24 check_relative 1728000 '3 weeks ago'
25 check_relative 13000000 '5 months ago'
26 check_relative 37500000 '1 year, 2 months ago'
27 check_relative 55188000 '1 year, 9 months ago'
28 check_relative 630000000 '20 years ago'
29 check_relative 31449600 '12 months ago'
30 check_relative 62985600 '2 years ago'
32 check_show () {
33 format=$1
34 time=$2
35 expect=$3
36 prereqs=$4
37 zone=$5
38 test_expect_success $prereqs "show date ($format:$time)" '
39 echo "$time -> $expect" >expect &&
40 TZ=${zone:-$TZ} test-tool date show:"$format" "$time" >actual &&
41 test_cmp expect actual
45 # arbitrary but sensible time for examples
46 TIME='1466000000 +0200'
47 check_show iso8601 "$TIME" '2016-06-15 16:13:20 +0200'
48 check_show iso8601-strict "$TIME" '2016-06-15T16:13:20+02:00'
49 check_show rfc2822 "$TIME" 'Wed, 15 Jun 2016 16:13:20 +0200'
50 check_show short "$TIME" '2016-06-15'
51 check_show default "$TIME" 'Wed Jun 15 16:13:20 2016 +0200'
52 check_show raw "$TIME" '1466000000 +0200'
53 check_show unix "$TIME" '1466000000'
54 check_show iso-local "$TIME" '2016-06-15 14:13:20 +0000'
55 check_show raw-local "$TIME" '1466000000 +0000'
56 check_show unix-local "$TIME" '1466000000'
58 check_show 'format:%z' "$TIME" '+0200'
59 check_show 'format-local:%z' "$TIME" '+0000'
60 check_show 'format:%Z' "$TIME" ''
61 check_show 'format-local:%Z' "$TIME" 'UTC'
62 check_show 'format:%%z' "$TIME" '%z'
63 check_show 'format-local:%%z' "$TIME" '%z'
65 check_show 'format:%Y-%m-%d %H:%M:%S' "$TIME" '2016-06-15 16:13:20'
66 check_show 'format-local:%Y-%m-%d %H:%M:%S' "$TIME" '2016-06-15 09:13:20' '' EST5
68 check_show 'format:%s' '123456789 +1234' 123456789
69 check_show 'format:%s' '123456789 -1234' 123456789
70 check_show 'format-local:%s' '123456789 -1234' 123456789
72 # arbitrary time absurdly far in the future
73 FUTURE="5758122296 -0400"
74 check_show iso "$FUTURE" "2152-06-19 18:24:56 -0400" TIME_IS_64BIT,TIME_T_IS_64BIT
75 check_show iso-local "$FUTURE" "2152-06-19 22:24:56 +0000" TIME_IS_64BIT,TIME_T_IS_64BIT
77 check_parse() {
78 echo "$1 -> $2" >expect
79 test_expect_${4:-success} "parse date ($1${3:+ TZ=$3})" "
80 TZ=${3:-$TZ} test-tool date parse '$1' >actual &&
81 test_cmp expect actual
85 check_parse 2008 bad
86 check_parse 2008-02 bad
87 check_parse 2008-02-14 bad
88 check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 +0000'
89 check_parse '2008-02-14 20:30:45 -0500' '2008-02-14 20:30:45 -0500'
90 check_parse '2008.02.14 20:30:45 -0500' '2008-02-14 20:30:45 -0500'
91 check_parse '20080214T203045-04:00' '2008-02-14 20:30:45 -0400'
92 check_parse '20080214T203045 -04:00' '2008-02-14 20:30:45 -0400'
93 check_parse '20080214T203045.019-04:00' '2008-02-14 20:30:45 -0400'
94 check_parse '2008-02-14 20:30:45.019-04:00' '2008-02-14 20:30:45 -0400'
95 check_parse '2008-02-14 20:30:45 -0015' '2008-02-14 20:30:45 -0015'
96 check_parse '2008-02-14 20:30:45 -5' '2008-02-14 20:30:45 +0000'
97 check_parse '2008-02-14 20:30:45 -5:' '2008-02-14 20:30:45 +0000'
98 check_parse '2008-02-14 20:30:45 -05' '2008-02-14 20:30:45 -0500'
99 check_parse '2008-02-14 20:30:45 -:30' '2008-02-14 20:30:45 +0000'
100 check_parse '2008-02-14 20:30:45 -05:00' '2008-02-14 20:30:45 -0500'
101 check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 -0500' EST5
103 check_approxidate() {
104 echo "$1 -> $2 +0000" >expect
105 test_expect_${3:-success} "parse approxidate ($1)" "
106 test-tool date approxidate '$1' >actual &&
107 test_cmp expect actual
111 check_approxidate now '2009-08-30 19:20:00'
112 check_approxidate '5 seconds ago' '2009-08-30 19:19:55'
113 check_approxidate 5.seconds.ago '2009-08-30 19:19:55'
114 check_approxidate 10.minutes.ago '2009-08-30 19:10:00'
115 check_approxidate yesterday '2009-08-29 19:20:00'
116 check_approxidate 3.days.ago '2009-08-27 19:20:00'
117 check_approxidate '12:34:56.3.days.ago' '2009-08-27 12:34:56'
118 check_approxidate 3.weeks.ago '2009-08-09 19:20:00'
119 check_approxidate 3.months.ago '2009-05-30 19:20:00'
120 check_approxidate 2.years.3.months.ago '2007-05-30 19:20:00'
122 check_approxidate '6am yesterday' '2009-08-29 06:00:00'
123 check_approxidate '6pm yesterday' '2009-08-29 18:00:00'
124 check_approxidate '3:00' '2009-08-30 03:00:00'
125 check_approxidate '15:00' '2009-08-30 15:00:00'
126 check_approxidate 'noon today' '2009-08-30 12:00:00'
127 check_approxidate 'noon yesterday' '2009-08-29 12:00:00'
128 check_approxidate 'January 5th noon pm' '2009-01-05 12:00:00'
129 check_approxidate '10am noon' '2009-08-29 12:00:00'
131 check_approxidate 'last tuesday' '2009-08-25 19:20:00'
132 check_approxidate 'July 5th' '2009-07-05 19:20:00'
133 check_approxidate '06/05/2009' '2009-06-05 19:20:00'
134 check_approxidate '06.05.2009' '2009-05-06 19:20:00'
136 check_approxidate 'Jun 6, 5AM' '2009-06-06 05:00:00'
137 check_approxidate '5AM Jun 6' '2009-06-06 05:00:00'
138 check_approxidate '6AM, June 7, 2009' '2009-06-07 06:00:00'
140 check_approxidate '2008-12-01' '2008-12-01 19:20:00'
141 check_approxidate '2009-12-01' '2009-12-01 19:20:00'
143 check_date_format_human() {
144 t=$(($GIT_TEST_DATE_NOW - $1))
145 echo "$t -> $2" >expect
146 test_expect_success "human date $t" '
147 test-tool date human $t >actual &&
148 test_cmp expect actual
152 check_date_format_human 18000 "5 hours ago" # 5 hours ago
153 check_date_format_human 432000 "Tue Aug 25 19:20" # 5 days ago
154 check_date_format_human 1728000 "Mon Aug 10 19:20" # 3 weeks ago
155 check_date_format_human 13000000 "Thu Apr 2 08:13" # 5 months ago
156 check_date_format_human 31449600 "Aug 31 2008" # 12 months ago
157 check_date_format_human 37500000 "Jun 22 2008" # 1 year, 2 months ago
158 check_date_format_human 55188000 "Dec 1 2007" # 1 year, 9 months ago
159 check_date_format_human 630000000 "Sep 13 1989" # 20 years ago
161 test_done