| 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='test date parsing and printing' |
| 4 | |
| 5 | . ./test-lib.sh |
| 6 | |
| 7 | # arbitrary reference time: 2009-08-30 19:20:00 |
| 8 | GIT_TEST_DATE_NOW=1251660000; export GIT_TEST_DATE_NOW |
| 9 | |
| 10 | if test_have_prereq TIME_IS_64BIT,TIME_T_IS_64BIT |
| 11 | then |
| 12 | test_set_prereq HAVE_64BIT_TIME |
| 13 | fi |
| 14 | |
| 15 | check_relative() { |
| 16 | t=$(($GIT_TEST_DATE_NOW - $1)) |
| 17 | echo "$t -> $2" >expect |
| 18 | test_expect_${3:-success} "relative date ($2)" " |
| 19 | test-tool date relative $t >actual && |
| 20 | test_cmp expect actual |
| 21 | " |
| 22 | } |
| 23 | |
| 24 | check_relative 5 '5 seconds ago' |
| 25 | check_relative 300 '5 minutes ago' |
| 26 | check_relative 18000 '5 hours ago' |
| 27 | check_relative 432000 '5 days ago' |
| 28 | check_relative 1728000 '3 weeks ago' |
| 29 | check_relative 13000000 '5 months ago' |
| 30 | check_relative 37500000 '1 year, 2 months ago' |
| 31 | check_relative 55188000 '1 year, 9 months ago' |
| 32 | check_relative 630000000 '20 years ago' |
| 33 | check_relative 31449600 '12 months ago' |
| 34 | check_relative 62985600 '2 years ago' |
| 35 | |
| 36 | check_show () { |
| 37 | format=$1 |
| 38 | time=$2 |
| 39 | expect=$3 |
| 40 | prereqs=$4 |
| 41 | zone=$5 |
| 42 | test_expect_success $prereqs "show date ($format:$time)" ' |
| 43 | echo "$time -> $expect" >expect && |
| 44 | TZ=${zone:-$TZ} test-tool date show:"$format" "$time" >actual && |
| 45 | test_cmp expect actual |
| 46 | ' |
| 47 | } |
| 48 | |
| 49 | # arbitrary but sensible time for examples |
| 50 | TIME='1466000000 +0200' |
| 51 | check_show iso8601 "$TIME" '2016-06-15 16:13:20 +0200' |
| 52 | check_show iso8601-strict "$TIME" '2016-06-15T16:13:20+02:00' |
| 53 | check_show iso8601-strict "$(echo "$TIME" | sed 's/+0200$/+0000/')" '2016-06-15T14:13:20Z' |
| 54 | check_show rfc2822 "$TIME" 'Wed, 15 Jun 2016 16:13:20 +0200' |
| 55 | check_show short "$TIME" '2016-06-15' |
| 56 | check_show default "$TIME" 'Wed Jun 15 16:13:20 2016 +0200' |
| 57 | check_show raw "$TIME" '1466000000 +0200' |
| 58 | check_show unix "$TIME" '1466000000' |
| 59 | check_show iso-local "$TIME" '2016-06-15 14:13:20 +0000' |
| 60 | check_show raw-local "$TIME" '1466000000 +0000' |
| 61 | check_show unix-local "$TIME" '1466000000' |
| 62 | |
| 63 | check_show 'format:%z' "$TIME" '+0200' |
| 64 | check_show 'format-local:%z' "$TIME" '+0000' |
| 65 | check_show 'format:%Z' "$TIME" '' |
| 66 | check_show 'format-local:%Z' "$TIME" 'UTC' |
| 67 | check_show 'format:%%z' "$TIME" '%z' |
| 68 | check_show 'format-local:%%z' "$TIME" '%z' |
| 69 | |
| 70 | check_show 'format:%Y-%m-%d %H:%M:%S' "$TIME" '2016-06-15 16:13:20' |
| 71 | check_show 'format-local:%Y-%m-%d %H:%M:%S' "$TIME" '2016-06-15 09:13:20' '' EST5 |
| 72 | |
| 73 | check_show 'format:%s' '123456789 +1234' 123456789 |
| 74 | check_show 'format:%s' '123456789 -1234' 123456789 |
| 75 | check_show 'format-local:%s' '123456789 -1234' 123456789 |
| 76 | |
| 77 | # negative TZ offset |
| 78 | TIME='1466000000 -0200' |
| 79 | check_show iso8601 "$TIME" '2016-06-15 12:13:20 -0200' |
| 80 | check_show iso8601-strict "$TIME" '2016-06-15T12:13:20-02:00' |
| 81 | check_show rfc2822 "$TIME" 'Wed, 15 Jun 2016 12:13:20 -0200' |
| 82 | check_show default "$TIME" 'Wed Jun 15 12:13:20 2016 -0200' |
| 83 | check_show raw "$TIME" '1466000000 -0200' |
| 84 | |
| 85 | # arbitrary time absurdly far in the future |
| 86 | FUTURE="5758122296 -0400" |
| 87 | check_show iso "$FUTURE" "2152-06-19 18:24:56 -0400" HAVE_64BIT_TIME |
| 88 | check_show iso-local "$FUTURE" "2152-06-19 22:24:56 +0000" HAVE_64BIT_TIME |
| 89 | |
| 90 | REQUIRE_64BIT_TIME= |
| 91 | check_parse () { |
| 92 | echo "$1 -> $2" >expect |
| 93 | test_expect_success $REQUIRE_64BIT_TIME "parse date ($1${3:+ TZ=$3}) -> $2" " |
| 94 | TZ=${3:-$TZ} test-tool date parse '$1' >actual && |
| 95 | test_cmp expect actual |
| 96 | " |
| 97 | } |
| 98 | |
| 99 | check_parse 2008 bad |
| 100 | check_parse 2008-02 bad |
| 101 | check_parse 2008-02-14 bad |
| 102 | check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 +0000' |
| 103 | check_parse '2008-02-14 20:30:45 -0500' '2008-02-14 20:30:45 -0500' |
| 104 | check_parse '2008.02.14 20:30:45 -0500' '2008-02-14 20:30:45 -0500' |
| 105 | check_parse '20080214T20:30:45' '2008-02-14 20:30:45 +0000' |
| 106 | check_parse '20080214T20:30' '2008-02-14 20:30:00 +0000' |
| 107 | check_parse '20080214T20' '2008-02-14 20:00:00 +0000' |
| 108 | check_parse '20080214T203045' '2008-02-14 20:30:45 +0000' |
| 109 | check_parse '20080214T2030' '2008-02-14 20:30:00 +0000' |
| 110 | check_parse '20080214T000000.20' '2008-02-14 00:00:00 +0000' |
| 111 | check_parse '20080214T00:00:00.20' '2008-02-14 00:00:00 +0000' |
| 112 | check_parse '20080214T203045-04:00' '2008-02-14 20:30:45 -0400' |
| 113 | check_parse '20080214T203045 -04:00' '2008-02-14 20:30:45 -0400' |
| 114 | check_parse '20080214T203045.019-04:00' '2008-02-14 20:30:45 -0400' |
| 115 | check_parse '2008-02-14 20:30:45.019-04:00' '2008-02-14 20:30:45 -0400' |
| 116 | check_parse '2008-02-14 20:30:45 -0015' '2008-02-14 20:30:45 -0015' |
| 117 | check_parse '2008-02-14 20:30:45 -5' '2008-02-14 20:30:45 +0000' |
| 118 | check_parse '2008-02-14 20:30:45 -5:' '2008-02-14 20:30:45 +0000' |
| 119 | check_parse '2008-02-14 20:30:45 -05' '2008-02-14 20:30:45 -0500' |
| 120 | check_parse '2008-02-14 20:30:45 -:30' '2008-02-14 20:30:45 +0000' |
| 121 | check_parse '2008-02-14 20:30:45 -05:00' '2008-02-14 20:30:45 -0500' |
| 122 | check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 -0500' EST5 |
| 123 | check_parse 'Thu, 7 Apr 2005 15:14:13 -0700' '2005-04-07 15:14:13 -0700' |
| 124 | |
| 125 | check_parse '1970-01-01 00:00:00' '1970-01-01 00:00:00 +0000' |
| 126 | check_parse '1970-01-01 00:00:00 +00' '1970-01-01 00:00:00 +0000' |
| 127 | check_parse '1970-01-01 00:00:00 Z' '1970-01-01 00:00:00 +0000' |
| 128 | check_parse '1970-01-01 00:00:00 -01' '1970-01-01 00:00:00 -0100' |
| 129 | check_parse '1970-01-01 00:00:00 +01' bad |
| 130 | check_parse '1970-01-01 00:00:00 +11' bad |
| 131 | check_parse '1970-01-01 00:59:59 +01' bad |
| 132 | check_parse '1970-01-01 01:00:00 +01' '1970-01-01 01:00:00 +0100' |
| 133 | check_parse '1970-01-01 01:00:00 +11' bad |
| 134 | check_parse '1970-01-02 00:00:00 +11' '1970-01-02 00:00:00 +1100' |
| 135 | check_parse '1969-12-31 23:59:59' bad |
| 136 | check_parse '1969-12-31 23:59:59 +00' bad |
| 137 | check_parse '1969-12-31 23:59:59 Z' bad |
| 138 | check_parse '1969-12-31 23:59:59 +11' bad |
| 139 | check_parse '1969-12-31 23:59:59 -11' bad |
| 140 | |
| 141 | # pathologically small timestamps requiring `@` prefix |
| 142 | check_parse '@0 +0000' '1970-01-01 00:00:00 +0000' |
| 143 | check_parse '@99999999 +0000' '1973-03-03 09:46:39 +0000' |
| 144 | check_parse '99999999 +0000' bad |
| 145 | check_parse '@100000000 +0000' '1973-03-03 09:46:40 +0000' |
| 146 | check_parse '100000000 +0000' '1973-03-03 09:46:40 +0000' |
| 147 | |
| 148 | REQUIRE_64BIT_TIME=HAVE_64BIT_TIME |
| 149 | check_parse '2099-12-31 23:59:59' '2099-12-31 23:59:59 +0000' |
| 150 | check_parse '2099-12-31 23:59:59 +00' '2099-12-31 23:59:59 +0000' |
| 151 | check_parse '2099-12-31 23:59:59 Z' '2099-12-31 23:59:59 +0000' |
| 152 | check_parse '2099-12-31 23:59:59 +01' '2099-12-31 23:59:59 +0100' |
| 153 | check_parse '2099-12-31 23:59:59 -01' bad |
| 154 | check_parse '2099-12-31 23:59:59 -11' bad |
| 155 | check_parse '2099-12-31 23:00:00 -01' bad |
| 156 | check_parse '2099-12-31 22:59:59 -01' '2099-12-31 22:59:59 -0100' |
| 157 | check_parse '2100-00-00 00:00:00' bad |
| 158 | check_parse '2099-12-30 00:00:00 -11' '2099-12-30 00:00:00 -1100' |
| 159 | check_parse '2100-00-00 00:00:00 +00' bad |
| 160 | check_parse '2100-00-00 00:00:00 Z' bad |
| 161 | check_parse '2100-00-00 00:00:00 -11' bad |
| 162 | check_parse '2100-00-00 00:00:00 +11' bad |
| 163 | REQUIRE_64BIT_TIME= |
| 164 | |
| 165 | add_time_offset() { |
| 166 | case "$3" in |
| 167 | hours) |
| 168 | unit=$(( 60*60 )) |
| 169 | ;; |
| 170 | days) |
| 171 | unit=$(( 24*60*60 )) |
| 172 | ;; |
| 173 | esac |
| 174 | offset=$(( $2 * unit )) |
| 175 | echo $(( $1 + offset )) |
| 176 | } |
| 177 | |
| 178 | check_approxidate() { |
| 179 | old_date=$GIT_TEST_DATE_NOW |
| 180 | if test "$3" = "failure" |
| 181 | then |
| 182 | expection="$3" |
| 183 | else |
| 184 | expection=${4:-success} |
| 185 | offset="$3" |
| 186 | fi |
| 187 | if test -n "$offset" |
| 188 | then |
| 189 | GIT_TEST_DATE_NOW=$(add_time_offset $old_date $offset) |
| 190 | caption="$1; offset $offset" |
| 191 | else |
| 192 | caption=$1 |
| 193 | fi |
| 194 | echo "$1 -> $2 +0000" >expect |
| 195 | test_expect_$expection "parse approxidate ($caption)" " |
| 196 | test-tool date approxidate '$1' >actual && |
| 197 | test_cmp expect actual |
| 198 | " |
| 199 | GIT_TEST_DATE_NOW=$old_date |
| 200 | } |
| 201 | |
| 202 | check_approxidate now '2009-08-30 19:20:00' |
| 203 | check_approxidate today '2009-08-30 00:00:00' |
| 204 | check_approxidate '5 seconds ago' '2009-08-30 19:19:55' |
| 205 | check_approxidate 5.seconds.ago '2009-08-30 19:19:55' |
| 206 | check_approxidate 10.minutes.ago '2009-08-30 19:10:00' |
| 207 | check_approxidate yesterday '2009-08-29 19:20:00' |
| 208 | check_approxidate 3.days.ago '2009-08-27 19:20:00' |
| 209 | check_approxidate '12:34:56.3.days.ago' '2009-08-27 12:34:56' |
| 210 | check_approxidate 3.weeks.ago '2009-08-09 19:20:00' |
| 211 | check_approxidate 3.months.ago '2009-05-30 19:20:00' |
| 212 | check_approxidate 2.years.3.months.ago '2007-05-30 19:20:00' |
| 213 | |
| 214 | check_approxidate '6am yesterday' '2009-08-29 06:00:00' |
| 215 | check_approxidate '6pm yesterday' '2009-08-29 18:00:00' |
| 216 | check_approxidate '3:00' '2009-08-30 03:00:00' |
| 217 | check_approxidate '15:00' '2009-08-30 15:00:00' |
| 218 | check_approxidate 'noon today' '2009-08-30 12:00:00' |
| 219 | check_approxidate 'today at noon' '2009-08-30 12:00:00' '-12 hours' |
| 220 | check_approxidate 'noon today' '2009-09-01 12:00:00' '+36 hours' |
| 221 | check_approxidate 'noon yesterday' '2009-08-29 12:00:00' |
| 222 | check_approxidate 'noon yesterday' '2009-08-29 12:00:00' '-12 hours' |
| 223 | check_approxidate 'last Friday at noon' '2009-08-28 12:00:00' |
| 224 | check_approxidate 'last Friday at noon' '2009-08-28 12:00:00' '-12 hours' |
| 225 | check_approxidate 'tea last saturday' '2009-08-29 17:00:00' |
| 226 | check_approxidate 'tea last saturday' '2009-08-29 17:00:00' '-12 hours' |
| 227 | check_approxidate 'January 5th noon pm' '2009-01-05 12:00:00' |
| 228 | check_approxidate 'January 5th noon pm' '2009-01-05 12:00:00' '-12 hours' |
| 229 | check_approxidate 'January 5th today pm' '2009-01-30 12:00:00' |
| 230 | check_approxidate '10am noon' '2009-08-29 12:00:00' |
| 231 | check_approxidate 'January 5th yesterday' '2009-01-29 19:20:00' |
| 232 | check_approxidate 'January 5th yesterday' '2008-12-31 19:20:00' '+2 days' |
| 233 | |
| 234 | check_approxidate 'last tuesday' '2009-08-25 19:20:00' |
| 235 | check_approxidate 'July 5th' '2009-07-05 19:20:00' |
| 236 | check_approxidate '06/05/2009' '2009-06-05 19:20:00' |
| 237 | check_approxidate '06.05.2009' '2009-05-06 19:20:00' |
| 238 | check_approxidate 'Jan 5 today' '2009-01-30 00:00:00' |
| 239 | |
| 240 | check_approxidate 'Jun 6, 5AM' '2009-06-06 05:00:00' |
| 241 | check_approxidate '5AM Jun 6' '2009-06-06 05:00:00' |
| 242 | check_approxidate '6AM, June 7, 2009' '2009-06-07 06:00:00' |
| 243 | |
| 244 | check_approxidate '2008-12-01' '2008-12-01 19:20:00' |
| 245 | check_approxidate '2009-12-01' '2009-12-01 19:20:00' |
| 246 | |
| 247 | # ambiguous raw timestamp |
| 248 | check_approxidate '2000 +0000' '2000-08-30 19:20:00' |
| 249 | check_approxidate '@2000 +0000' '1970-01-01 00:33:20' |
| 250 | |
| 251 | check_date_format_human() { |
| 252 | t=$(($GIT_TEST_DATE_NOW - $1)) |
| 253 | echo "$t -> $2" >expect |
| 254 | test_expect_success "human date $t" ' |
| 255 | test-tool date human $t >actual && |
| 256 | test_cmp expect actual |
| 257 | ' |
| 258 | } |
| 259 | |
| 260 | check_date_format_human 18000 "5 hours ago" # 5 hours ago |
| 261 | check_date_format_human 432000 "Tue Aug 25 19:20" # 5 days ago |
| 262 | check_date_format_human 1728000 "Mon Aug 10 19:20" # 3 weeks ago |
| 263 | check_date_format_human 13000000 "Thu Apr 2 08:13" # 5 months ago |
| 264 | check_date_format_human 31449600 "Aug 31 2008" # 12 months ago |
| 265 | check_date_format_human 37500000 "Jun 22 2008" # 1 year, 2 months ago |
| 266 | check_date_format_human 55188000 "Dec 1 2007" # 1 year, 9 months ago |
| 267 | check_date_format_human 630000000 "Sep 13 1989" # 20 years ago |
| 268 | |
| 269 | test_done |