]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/msgtime.t
www: drop --subject from "git send-email" instructions
[public-inbox.git] / t / msgtime.t
index 7c95e547d5bf98dcb877737d73a2c32c1339eef3..00d579997ac2694170d1c8416cb0903e079651e1 100644 (file)
@@ -1,9 +1,9 @@
-# Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
 use Test::More;
-use PublicInbox::MIME;
+use PublicInbox::Eml;
 use PublicInbox::MsgTime;
 use PublicInbox::TestCommon;
 
@@ -11,22 +11,18 @@ our $received_date = 'Mon, 22 Jan 2007 13:16:24 -0500';
 sub datestamp ($) {
        my ($date) = @_;
        local $SIG{__WARN__} = sub {};  # Suppress warnings
-       my $mime = PublicInbox::MIME->create(
-               header => [
-                       From => 'a@example.com',
-                       To => 'b@example.com',
-                       'Content-Type' => 'text/plain',
-                       Subject => 'this is a subject',
-                       'Message-ID' => '<a@example.com>',
-                       Date => $date,
-                       'Received' => <<EOF,
-(majordomo\@vger.kernel.org) by vger.kernel.org via listexpand
-\tid S932173AbXAVSQY (ORCPT <rfc822;w\@1wt.eu>);
-\t$received_date
+       my $mime = PublicInbox::Eml->new(<<"EOF");
+From: a\@example.com
+To: b\@example.com
+Subject: this is a subject
+Message-ID: <a\@example.com>
+Date: $date
+Received: (majordomo\@vger.kernel.org) by vger.kernel.org via listexpand
+       id S932173AbXAVSQY (ORCPT <rfc822;w\@1wt.eu>);
+       $received_date
+
+hello world
 EOF
-               ],
-               body => "hello world\n",
-           );
        my @ts = PublicInbox::MsgTime::msg_datestamp($mime->header_obj);
        return \@ts;
 }
@@ -34,18 +30,18 @@ EOF
 sub timestamp ($) {
        my ($received) = @_;
        local $SIG{__WARN__} = sub {};  # Suppress warnings
-       my $mime = PublicInbox::MIME->create(
-               header => [
-                       From => 'a@example.com',
-                       To => 'b@example.com',
-                       'Content-Type' => 'text/plain',
-                       Subject => 'this is a subject',
-                       'Message-ID' => '<a@example.com>',
-                       Date => 'Fri, 02 Oct 1993 00:00:00 +0000',
-                       'Received' => '(majordomo@vger.kernel.org) by vger.kernel.org via listexpand\n\tid S932173AbXAVSQY (ORCPT <rfc822;w@1wt.eu>);\n\t' . $received,
-               ],
-               body => "hello world\n",
-           );
+       my $mime = PublicInbox::Eml->new(<<"EOF");
+From: a\@example.com
+To: b\@example.com
+Subject: this is a subject
+Message-ID: <a\@example.com>
+Date: Fri, 02 Oct 1993 00:00:00 +0000
+Received: (majordomo\@vger.kernel.org) by vger.kernel.org via listexpand
+       id S932173AbXAVSQY (ORCPT <rfc822;w\@1wt.eu>);
+       $received
+
+hello world
+EOF
        my @ts = PublicInbox::MsgTime::msg_timestamp($mime->header_obj);
        return \@ts;
 }
@@ -106,6 +102,10 @@ 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']);
 }