]> Sergey Matveev's repositories - public-inbox.git/blob - t/msgtime.t
www: drop --subject from "git send-email" instructions
[public-inbox.git] / t / msgtime.t
1 # Copyright (C) 2016-2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 use strict;
4 use warnings;
5 use Test::More;
6 use PublicInbox::Eml;
7 use PublicInbox::MsgTime;
8 use PublicInbox::TestCommon;
9
10 our $received_date = 'Mon, 22 Jan 2007 13:16:24 -0500';
11 sub datestamp ($) {
12         my ($date) = @_;
13         local $SIG{__WARN__} = sub {};  # Suppress warnings
14         my $mime = PublicInbox::Eml->new(<<"EOF");
15 From: a\@example.com
16 To: b\@example.com
17 Subject: this is a subject
18 Message-ID: <a\@example.com>
19 Date: $date
20 Received: (majordomo\@vger.kernel.org) by vger.kernel.org via listexpand
21         id S932173AbXAVSQY (ORCPT <rfc822;w\@1wt.eu>);
22         $received_date
23
24 hello world
25 EOF
26         my @ts = PublicInbox::MsgTime::msg_datestamp($mime->header_obj);
27         return \@ts;
28 }
29
30 sub timestamp ($) {
31         my ($received) = @_;
32         local $SIG{__WARN__} = sub {};  # Suppress warnings
33         my $mime = PublicInbox::Eml->new(<<"EOF");
34 From: a\@example.com
35 To: b\@example.com
36 Subject: this is a subject
37 Message-ID: <a\@example.com>
38 Date: Fri, 02 Oct 1993 00:00:00 +0000
39 Received: (majordomo\@vger.kernel.org) by vger.kernel.org via listexpand
40         id S932173AbXAVSQY (ORCPT <rfc822;w\@1wt.eu>);
41         $received
42
43 hello world
44 EOF
45         my @ts = PublicInbox::MsgTime::msg_timestamp($mime->header_obj);
46         return \@ts;
47 }
48
49 # Verify that the parser sucks up the timezone for dates
50 for (my $min = -1440; $min <= 1440; $min += 30) {
51         my $sign = ($min < 0) ? '-': '+';
52         my $h = abs(int($min / 60));
53         my $m = $min % 60;
54
55         my $ts_expect = 749520000 - ($min * 60);
56         my $tz_expect = sprintf('%s%02d%02d', $sign, $h, $m);
57         if ($tz_expect >= 1400 || $tz_expect <= -1400) {
58                 $tz_expect = '+0000';
59         }
60         my $date = sprintf("Fri, 02 Oct 1993 00:00:00 %s%02d%02d",
61                            $sign, $h, $m);
62         my $result = datestamp($date);
63         is_deeply($result, [ $ts_expect, $tz_expect ], $date);
64 }
65
66 # Verify that the parser sucks up the timezone and for received timestamps
67 for (my $min = -1440; $min <= 1440; $min += 30) {
68         my $sign = ($min < 0) ? '-' : '+';
69         my $h = abs(int($min / 60));
70         my $m = $min %60;
71
72         my $ts_expect = 1169471784 - ($min * 60);
73         my $tz_expect = sprintf('%s%02d%02d', $sign, $h, $m);
74         if ($tz_expect >= 1400 || $tz_expect <= -1400) {
75                 $tz_expect = '+0000';
76         }
77         my $received = sprintf('Mon, 22 Jan 2007 13:16:24 %s%02d%02d',
78                                $sign, $h, $m);
79         is_deeply(timestamp($received), [ $ts_expect, $tz_expect ],
80                 $received);
81 }
82
83 sub is_datestamp ($$) {
84         my ($date, $expect) = @_;
85         is_deeply(datestamp($date), $expect, $date);
86 }
87 is_datestamp('Wed, 13 Dec 2006 10:26:38 +1', [1166001998, '+0100']);
88 is_datestamp('Fri, 3 Feb 2006 18:11:22 -00', [1138990282, '+0000']);
89 is_datestamp('Thursday, 20 Feb 2003 01:14:34 +000', [1045703674, '+0000']);
90 is_datestamp('Fri, 28 Jun 2002 12:54:40 -700', [1025294080, '-0700']);
91 is_datestamp('Sat, 12 Jan 2002 12:52:57 -200', [1010847177, '-0200']);
92 is_datestamp('Mon, 05 Nov 2001 10:36:16 -800', [1004985376, '-0800']);
93 is_datestamp('Tue, 3 Jun 2003 8:58:23 --500', [1054648703, '-0500']);
94 is_datestamp('Thu, 18 May 100 10:40:43 +0200 (MET DST)', [958639243, '+0200']);
95 is_datestamp('Thu, 18 May 2000 10:40:43 +0200', [958639243, '+0200']);
96 is_datestamp('Tue, 27 Feb 2007 16:23:25 -0060', [1172597005, '-0100']);
97 is_datestamp('Wed, 20 Dec 2006 05:32:58 -0420', [1166608378, '-0420']);
98 is_datestamp('Wed, 20 Dec 2006 05:32:58 +0420', [1166577178, '+0420']);
99 is_datestamp('Thu, 14 Dec 2006 00:20:24 +0480', [1166036424, '+0520']);
100 is_datestamp('Thu, 14 Dec 2006 00:20:24 -0480', [1166074824, '-0520']);
101 is_datestamp('Mon, 14 Apr 2014 07:59:01 -0007', [1397462761, '-0007']);
102
103 SKIP: {
104         require_mods('Date::Parse', 1);
105         my $now = time;
106         if (join("\0", gmtime($now)) ne join("\0", localtime($now))) {
107                 skip('needs TZ=UTC to test zone-less parsing', 1);
108         }
109         is_datestamp('Sat, 27 Sep 1997 10:02:32', [875354552, '+0000']);
110 }
111
112 # obsolete formats described in RFC2822
113 for (qw(UT GMT Z)) {
114         is_datestamp('Fri, 02 Oct 1993 00:00:00 '.$_, [ 749520000, '+0000']);
115 }
116 is_datestamp('Fri, 02 Oct 1993 00:00:00 EDT', [ 749534400, '-0400']);
117
118 # fallback to Received: header if Date: is out-of-range:
119 is_datestamp('Fri, 1 Jan 1904 10:12:31 +0100',
120         PublicInbox::MsgTime::str2date_zone($received_date));
121 is_datestamp('Fri, 9 Mar 71685 18:45:56 +0000', # Y10K is not my problem :P
122         PublicInbox::MsgTime::str2date_zone($received_date));
123
124 done_testing();