X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fmsgtime.t;h=3f09fb4ef76ee0a915add8942136f0860c59ad2d;hb=c29b2b7ded47def906cf00e3baad65c102304120;hp=c390670ae01fcd11c5f6324554c1063165f94db4;hpb=ae80a3fdb53d70142624f2691ed8ed84eddda66b;p=public-inbox.git diff --git a/t/msgtime.t b/t/msgtime.t index c390670a..3f09fb4e 100644 --- a/t/msgtime.t +++ b/t/msgtime.t @@ -1,11 +1,13 @@ -# Copyright (C) 2016-2018 all contributors +# Copyright (C) 2016-2020 all contributors # License: AGPL-3.0+ use strict; use warnings; use Test::More; use PublicInbox::MIME; use PublicInbox::MsgTime; +use PublicInbox::TestCommon; +our $received_date = 'Mon, 22 Jan 2007 13:16:24 -0500'; sub datestamp ($) { my ($date) = @_; local $SIG{__WARN__} = sub {}; # Suppress warnings @@ -17,7 +19,11 @@ sub datestamp ($) { Subject => 'this is a subject', 'Message-ID' => '', Date => $date, - 'Received' => '(majordomo@vger.kernel.org) by vger.kernel.org via listexpand\n\tid S932173AbXAVSQY (ORCPT );\n\tMon, 22 Jan 2007 13:16:24 -0500', + 'Received' => <); +\t$received_date +EOF ], body => "hello world\n", ); @@ -58,7 +64,7 @@ for (my $min = -1440; $min <= 1440; $min += 30) { my $date = sprintf("Fri, 02 Oct 1993 00:00:00 %s%02d%02d", $sign, $h, $m); my $result = datestamp($date); - is_deeply($result, [ $ts_expect, $tz_expect ]); + is_deeply($result, [ $ts_expect, $tz_expect ], $date); } # Verify that the parser sucks up the timezone and for received timestamps @@ -74,14 +80,49 @@ for (my $min = -1440; $min <= 1440; $min += 30) { } my $received = sprintf('Mon, 22 Jan 2007 13:16:24 %s%02d%02d', $sign, $h, $m); - is_deeply(timestamp($received), [ $ts_expect, $tz_expect ]); + is_deeply(timestamp($received), [ $ts_expect, $tz_expect ], + $received); } -is_deeply(datestamp('Wed, 13 Dec 2006 10:26:38 +1'), [1166001998, '+0100']); -is_deeply(datestamp('Fri, 3 Feb 2006 18:11:22 -00'), [1138990282, '+0000']); -is_deeply(datestamp('Thursday, 20 Feb 2003 01:14:34 +000'), [1045703674, '+0000']); -is_deeply(datestamp('Fri, 28 Jun 2002 12:54:40 -700'), [1025294080, '-0700']); -is_deeply(datestamp('Sat, 12 Jan 2002 12:52:57 -200'), [1010847177, '-0200']); -is_deeply(datestamp('Mon, 05 Nov 2001 10:36:16 -800'), [1004985376, '-0800']); +sub is_datestamp ($$) { + my ($date, $expect) = @_; + is_deeply(datestamp($date), $expect, $date); +} +is_datestamp('Wed, 13 Dec 2006 10:26:38 +1', [1166001998, '+0100']); +is_datestamp('Fri, 3 Feb 2006 18:11:22 -00', [1138990282, '+0000']); +is_datestamp('Thursday, 20 Feb 2003 01:14:34 +000', [1045703674, '+0000']); +is_datestamp('Fri, 28 Jun 2002 12:54:40 -700', [1025294080, '-0700']); +is_datestamp('Sat, 12 Jan 2002 12:52:57 -200', [1010847177, '-0200']); +is_datestamp('Mon, 05 Nov 2001 10:36:16 -800', [1004985376, '-0800']); +is_datestamp('Tue, 3 Jun 2003 8:58:23 --500', [1054648703, '-0500']); +is_datestamp('Thu, 18 May 100 10:40:43 +0200 (MET DST)', [958639243, '+0200']); +is_datestamp('Thu, 18 May 2000 10:40:43 +0200', [958639243, '+0200']); +is_datestamp('Tue, 27 Feb 2007 16:23:25 -0060', [1172597005, '-0100']); +is_datestamp('Wed, 20 Dec 2006 05:32:58 -0420', [1166608378, '-0420']); +is_datestamp('Wed, 20 Dec 2006 05:32:58 +0420', [1166577178, '+0420']); +is_datestamp('Thu, 14 Dec 2006 00:20:24 +0480', [1166036424, '+0520']); +is_datestamp('Thu, 14 Dec 2006 00:20:24 -0480', [1166074824, '-0520']); +is_datestamp('Mon, 14 Apr 2014 07:59:01 -0007', [1397462761, '-0007']); + +SKIP: { + require_mods('Date::Parse', 1); + my $now = time; + if (join("\0", gmtime($now)) ne join("\0", localtime($now))) { + skip('needs TZ=UTC to test zone-less parsing', 1); + } + is_datestamp('Sat, 27 Sep 1997 10:02:32', [875354552, '+0000']); +} + +# obsolete formats described in RFC2822 +for (qw(UT GMT Z)) { + is_datestamp('Fri, 02 Oct 1993 00:00:00 '.$_, [ 749520000, '+0000']); +} +is_datestamp('Fri, 02 Oct 1993 00:00:00 EDT', [ 749534400, '-0400']); + +# fallback to Received: header if Date: is out-of-range: +is_datestamp('Fri, 1 Jan 1904 10:12:31 +0100', + PublicInbox::MsgTime::str2date_zone($received_date)); +is_datestamp('Fri, 9 Mar 71685 18:45:56 +0000', # Y10K is not my problem :P + PublicInbox::MsgTime::str2date_zone($received_date)); done_testing();