]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/nntp.t
t/*.t: reduce dependency on Email::MIME APIs
[public-inbox.git] / t / nntp.t
index 961b3d6af1e2da8b29aa3aec6cb1bb86e228d11a..35fb55b42ccfec723a2dfa734222d8aedd648b9c 100644 (file)
--- a/t/nntp.t
+++ b/t/nntp.t
@@ -1,9 +1,10 @@
-# Copyright (C) 2015-2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2015-2020 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::TestCommon;
+use PublicInbox::MIME;
 require_mods(qw(DBD::SQLite Data::Dumper));
 use_ok 'PublicInbox::NNTP';
 use_ok 'PublicInbox::Inbox';
@@ -68,7 +69,7 @@ use_ok 'PublicInbox::Inbox';
                my ($date, $time, $gmt) = @_;
                my $m = join(' ', @_);
                my $ts = PublicInbox::NNTP::parse_time(@_);
-               my @t = gmtime($ts);
+               my @t = $gmt ? gmtime($ts) : localtime($ts);
                my ($d, $t) = split(' ', strftime('%Y%m%d %H%M%S', @t));
                if (length($date) != 8) { # Net::NNTP uses YYMMDD :<
                        $d =~ s/^[0-9]{2}//;
@@ -96,7 +97,6 @@ use_ok 'PublicInbox::Inbox';
 }
 
 { # test setting NNTP headers in HEAD and ARTICLE requests
-       require Email::MIME;
        my $u = 'https://example.com/a/';
        my $ng = PublicInbox::Inbox->new({ name => 'test',
                                        inboxdir => 'test.git',
@@ -104,10 +104,10 @@ use_ok 'PublicInbox::Inbox';
                                        -primary_address => 'a@example.com',
                                        newsgroup => 'test',
                                        domain => 'example.com',
-                                       url => '//example.com/a'});
+                                       url => [ '//example.com/a' ]});
        is($ng->base_url, $u, 'URL expanded');
        my $mid = 'a@b';
-       my $mime = Email::MIME->new("Message-ID: <$mid>\r\n\r\n");
+       my $mime = PublicInbox::MIME->new("Message-ID: <$mid>\r\n\r\n");
        my $hdr = $mime->header_obj;
        my $mock_self = { nntpd => { grouplist => [], 
                                     servername => 'example.com' } };