]> Sergey Matveev's repositories - public-inbox.git/blobdiff - xt/msgtime_cmp.t
replace most uses of PublicInbox::MIME with Eml
[public-inbox.git] / xt / msgtime_cmp.t
index 469756c61357b3ec5b5373023a9b53f0a48ea2b8..4ebf5b2cedb85a859b771873452de3d92f95fb2b 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2019-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use Test::More;
@@ -9,7 +9,7 @@ use PublicInbox::Inbox;
 use PublicInbox::Git;
 use PublicInbox::MsgTime qw(msg_timestamp msg_datestamp);
 use POSIX qw(strftime);
-eval { require Date::Parse } or plan skip_all => "Date::Parse missing for $0";
+require_mods('Date::Parse');
 my $git;
 my ($inboxdir, $git_dir) = @ENV{qw(GIANT_INBOX_DIR GIANT_GIT_DIR)};
 if (defined $inboxdir) {
@@ -82,6 +82,13 @@ sub str2date_zone ($) {
 
        # off is the time zone offset in seconds from GMT
        my ($ss,$mm,$hh,$day,$month,$year,$off) = Date::Parse::strptime($date);
+
+       # new behavior which wasn't in the original old version:
+       if ('commit d857e7dc0d816b635a7ead09c3273f8c2d2434be') {
+               # "msgtime: assume +0000 if TZ missing when using Date::Parse"
+               $off //= '+0000';
+       }
+
        return undef unless(defined $off);
 
        # Compute the time zone from offset