1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
use HTTP::Date;
print "1..59\n";
$no = 1;
$| = 1;
sub ok {
print "not " if $_[0];
print "ok $no\n";
$no++;
}
# test str2time for supported dates
my(@tests) =
(
'Thu Feb 3 00:00:00 GMT 1994', # ctime format
'Thu Feb 3 00:00:00 1994', # same as ctime, except no TZ
'Thu, 03 Feb 1994 00:00:00 GMT', # proposed new HTTP format
'Thursday, 03-Feb-94 00:00:00 GMT', # old rfc850 HTTP format
'Thursday, 03-Feb-1994 00:00:00 GMT', # broken rfc850 HTTP format
'03/Feb/1994:00:00:00 0000', # common logfile format
'03/Feb/1994:01:00:00 +0100', # common logfile format
'02/Feb/1994:23:00:00 -0100', # common logfile format
'03 Feb 1994 00:00:00 GMT', # HTTP format (no weekday)
'03-Feb-94 00:00:00 GMT', # old rfc850 (no weekday)
'03-Feb-1994 00:00:00 GMT', # broken rfc850 (no weekday)
'03-Feb-1994 00:00 GMT', # broken rfc850 (no weekday, no seconds)
'03-Feb-1994 00:00', # VMS dir listing format
'03-Feb-94', # old rfc850 HTTP format (no weekday, no time)
'03-Feb-1994', # broken rfc850 HTTP format (no weekday, no time)
'03 Feb 1994', # proposed new HTTP format (no weekday, no time)
'03/Feb/1994', # common logfile format (no time, no offset)
#'Feb 3 00:00', # Unix 'ls -l' format (can't really test it here)
'Feb 3 1994', # Unix 'ls -l' format
"02-03-94 12:00AM", # Windows 'dir' format
# ISO 8601 formats
'1994-02-03 00:00:00 +0000',
'1994-02-03',
'19940203',
'1994-02-03T00:00:00+0000',
'1994-02-02T23:00:00-0100',
'1994-02-02T23:00:00-01:00',
'1994-02-03T00:00:00 Z',
'19940203T000000Z',
'199402030000',
# A few tests with extra space at various places
' 03/Feb/1994 ',
' 03 Feb 1994 0:00 ',
);
my $time = 760233600; # assume broken POSIX counting of seconds
for (@tests) {
if (/GMT/i) {
$t = str2time($_);
} else {
$t = str2time($_, "GMT");
}
$t = "UNDEF" unless defined $t;
print "'$_' => $t\n";
print $@ if $@;
print "not " if $t eq 'UNDEF' || $t != $time;
ok;
}
# test time2str
die "time2str failed"
unless time2str($time) eq 'Thu, 03 Feb 1994 00:00:00 GMT';
# test the 'ls -l' format with missing year$
# round to nearest minute 3 days ago.
$time = int((time - 3 * 24*60*60) /60)*60;
($min, $hr, $mday, $mon) = (localtime $time)[1,2,3,4];
$mon = (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec))[$mon];
$str = sprintf("$mon %02d %02d:%02d", $mday, $hr, $min);
$t = str2time($str);
$t = "UNDEF" unless defined $t;
print "'$str' => $t ($time)\n";
print "not " if $t != $time;
ok;
# try some out of bounds date and some garbage.
for ('03-Feb-1969', '03-Feb-2039',
undef, '', 'Garbage',
'Mandag 16. September 1996',
'Thu Feb 3 00:00:00 CET 1994',
'Thu, 03 Feb 1994 00:00:00 CET',
'Wednesday, 31-Dec-69 23:59:59 GMT',
'1980-00-01',
'1980-13-01',
'1980-01-00',
'1980-01-32',
'1980-01-01 25:00:00',
'1980-01-01 00:61:00',
'1980-01-01 00:00:61',
)
{
my $bad = 0;
eval {
if (defined str2time $_) {
print "str2time($_) is not undefined\n";
$bad++;
}
};
print defined($_) ? "'$_'\n" : "undef\n";
print $@ if $@;
print "not " if $bad;
ok;
}
print "Testing AM/PM gruff...\n";
$t = time2iso(str2time("11-12-96 0:00AM"));print "$t\n";
ok($t ne "1996-11-12 00:00:00");
$t = time2iso(str2time("11-12-96 12:00AM"));print "$t\n";
ok($t ne "1996-11-12 00:00:00");
$t = time2iso(str2time("11-12-96 0:00PM"));print "$t\n";
ok($t ne "1996-11-12 12:00:00");
$t = time2iso(str2time("11-12-96 12:00PM"));print "$t\n";
ok($t ne "1996-11-12 12:00:00");
$t = time2iso(str2time("11-12-96 1:05AM"));print "$t\n";
ok($t ne "1996-11-12 01:05:00");
$t = time2iso(str2time("11-12-96 12:05AM"));print "$t\n";
ok($t ne "1996-11-12 00:05:00");
$t = time2iso(str2time("11-12-96 1:05PM"));print "$t\n";
ok($t ne "1996-11-12 13:05:00");
$t = time2iso(str2time("11-12-96 12:05PM"));print "$t\n";
ok($t ne "1996-11-12 12:05:00");
# Test the str2iso routines
use HTTP::Date qw(time2iso time2isoz);
print "Testing time2iso functions\n";
$a = time2iso;
$b = time2iso(500000);
print "LOCAL $a $b\n";
$az = time2isoz;
$bz = time2isoz(500000);
print "GMT $az $bz\n";
for ($a, $b) { ok if /^\d{4}-\d\d-\d\d \d\d:\d\d:\d\d$/; }
for ($az, $bz) { ok if /^\d{4}-\d\d-\d\d \d\d:\d\d:\d\dZ$/; }
print "HTTP::Date $HTTP::Date::VERSION tested ok\n";
|