t / t0006-date.shon commit Merge branch 'jk/rev-list-no-bitmap-while-pruning' (ace6325)
   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
   9check_show() {
  10        t=$(($TEST_DATE_NOW - $1))
  11        echo "$t -> $2" >expect
  12        test_expect_${3:-success} "relative date ($2)" "
  13        test-date show $t >actual &&
  14        test_i18ncmp expect actual
  15        "
  16}
  17
  18check_show 5 '5 seconds ago'
  19check_show 300 '5 minutes ago'
  20check_show 18000 '5 hours ago'
  21check_show 432000 '5 days ago'
  22check_show 1728000 '3 weeks ago'
  23check_show 13000000 '5 months ago'
  24check_show 37500000 '1 year, 2 months ago'
  25check_show 55188000 '1 year, 9 months ago'
  26check_show 630000000 '20 years ago'
  27check_show 31449600 '12 months ago'
  28check_show 62985600 '2 years ago'
  29
  30check_parse() {
  31        echo "$1 -> $2" >expect
  32        test_expect_${4:-success} "parse date ($1${3:+ TZ=$3})" "
  33        TZ=${3:-$TZ} test-date parse '$1' >actual &&
  34        test_cmp expect actual
  35        "
  36}
  37
  38check_parse 2008 bad
  39check_parse 2008-02 bad
  40check_parse 2008-02-14 bad
  41check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 +0000'
  42check_parse '2008-02-14 20:30:45 -0500' '2008-02-14 20:30:45 -0500'
  43check_parse '2008-02-14 20:30:45 -0015' '2008-02-14 20:30:45 -0015'
  44check_parse '2008-02-14 20:30:45 -5' '2008-02-14 20:30:45 +0000'
  45check_parse '2008-02-14 20:30:45 -5:' '2008-02-14 20:30:45 +0000'
  46check_parse '2008-02-14 20:30:45 -05' '2008-02-14 20:30:45 -0500'
  47check_parse '2008-02-14 20:30:45 -:30' '2008-02-14 20:30:45 +0000'
  48check_parse '2008-02-14 20:30:45 -05:00' '2008-02-14 20:30:45 -0500'
  49check_parse '2008-02-14 20:30:45' '2008-02-14 20:30:45 -0500' EST5
  50
  51check_approxidate() {
  52        echo "$1 -> $2 +0000" >expect
  53        test_expect_${3:-success} "parse approxidate ($1)" "
  54        test-date approxidate '$1' >actual &&
  55        test_cmp expect actual
  56        "
  57}
  58
  59check_approxidate now '2009-08-30 19:20:00'
  60check_approxidate '5 seconds ago' '2009-08-30 19:19:55'
  61check_approxidate 5.seconds.ago '2009-08-30 19:19:55'
  62check_approxidate 10.minutes.ago '2009-08-30 19:10:00'
  63check_approxidate yesterday '2009-08-29 19:20:00'
  64check_approxidate 3.days.ago '2009-08-27 19:20:00'
  65check_approxidate 3.weeks.ago '2009-08-09 19:20:00'
  66check_approxidate 3.months.ago '2009-05-30 19:20:00'
  67check_approxidate 2.years.3.months.ago '2007-05-30 19:20:00'
  68
  69check_approxidate '6am yesterday' '2009-08-29 06:00:00'
  70check_approxidate '6pm yesterday' '2009-08-29 18:00:00'
  71check_approxidate '3:00' '2009-08-30 03:00:00'
  72check_approxidate '15:00' '2009-08-30 15:00:00'
  73check_approxidate 'noon today' '2009-08-30 12:00:00'
  74check_approxidate 'noon yesterday' '2009-08-29 12:00:00'
  75
  76check_approxidate 'last tuesday' '2009-08-25 19:20:00'
  77check_approxidate 'July 5th' '2009-07-05 19:20:00'
  78check_approxidate '06/05/2009' '2009-06-05 19:20:00'
  79check_approxidate '06.05.2009' '2009-05-06 19:20:00'
  80
  81check_approxidate 'Jun 6, 5AM' '2009-06-06 05:00:00'
  82check_approxidate '5AM Jun 6' '2009-06-06 05:00:00'
  83check_approxidate '6AM, June 7, 2009' '2009-06-07 06:00:00'
  84
  85check_approxidate '2008-12-01' '2008-12-01 19:20:00'
  86check_approxidate '2009-12-01' '2009-12-01 19:20:00'
  87
  88test_done