]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/nntp.t
No ext_urls
[public-inbox.git] / t / nntp.t
index 82918ff55456581964017b9bad2130c33f5021ff..655af39825b2f514d621600399964db7ba4b450e 100644 (file)
--- a/t/nntp.t
+++ b/t/nntp.t
@@ -1,15 +1,18 @@
-# Copyright (C) 2015 all contributors <meta@public-inbox.org>
-# License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
+# Copyright (C) 2015-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 Data::Dumper;
-
+use PublicInbox::TestCommon;
+use PublicInbox::Eml;
+require_mods(qw(DBD::SQLite Data::Dumper));
 use_ok 'PublicInbox::NNTP';
+use_ok 'PublicInbox::Inbox';
+use PublicInbox::Config;
 
 {
        sub quote_str {
-               my (undef, $s) = split(/ = /, Dumper($_[0]), 2);
+               my (undef, $s) = split(/ = /, Data::Dumper::Dumper($_[0]), 2);
                $s =~ s/;\n//;
                $s;
        }
@@ -61,4 +64,74 @@ use_ok 'PublicInbox::NNTP';
        ngpat_like('a.s.r', 'a.t,a.s.*');
 }
 
+{
+       use POSIX qw(strftime);
+       sub time_roundtrip {
+               my ($date, $time, $gmt) = @_;
+               my $m = join(' ', @_);
+               my $ts = PublicInbox::NNTP::parse_time(@_);
+               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}//;
+               }
+               is_deeply([$d, $t], [$date, $time], "roundtripped: $m");
+               $ts;
+       }
+       my $x1 = time_roundtrip(qw(20141109 060606 GMT));
+       my $x2 = time_roundtrip(qw(141109 060606 GMT));
+       my $x3 = time_roundtrip(qw(930724 060606 GMT));
+       my $x5 = time_roundtrip(qw(710101 000000));
+       my $x6 = time_roundtrip(qw(720101 000000));
+       SKIP: {
+               skip('YYMMDD test needs updating', 6) if (time > 0x7fffffff);
+               # our world probably ends in 2038, but if not we'll try to
+               # remember to update the test then
+               is($x1, $x2, 'YYYYMMDD and YYMMDD parse identically');
+               is(strftime('%Y', gmtime($x3)), '1993', '930724 was in 1993');
+
+               my $epoch = time_roundtrip(qw(700101 000000 GMT));
+               is($epoch, 0, 'epoch parsed correctly');
+               ok($x6 > $x5, '1972 > 1971');
+               ok($x5 > $epoch, '1971 > Unix epoch');
+       }
+}
+
+{ # test setting NNTP headers in HEAD and ARTICLE requests
+       my $u = 'https://example.com/a/';
+       my $ibx = PublicInbox::Inbox->new({ name => 'test',
+                                       inboxdir => 'test.git',
+                                       address => 'a@example.com',
+                                       -primary_address => 'a@example.com',
+                                       newsgroup => 'test',
+                                       domain => 'example.com',
+                                       url => [ '//example.com/a' ]});
+       is($ibx->base_url, $u, 'URL expanded');
+       my $mid = 'a@b';
+       my $mime = PublicInbox::Eml->new("Message-ID: <$mid>\r\n\r\n");
+       my $hdr = $mime->header_obj;
+       my $mock_self = {
+               nntpd => {
+                       servername => 'example.com',
+                       pi_cfg => bless {}, 'PublicInbox::Config',
+               },
+               ibx => $ibx,
+       };
+       my $smsg = { num => 1, mid => $mid, nntp => $mock_self, -ibx => $ibx };
+       PublicInbox::NNTP::set_nntp_headers($hdr, $smsg);
+       is_deeply([ $mime->header('Message-ID') ], [ "<$mid>" ],
+               'Message-ID unchanged');
+       is_deeply([ $mime->header('Newsgroups') ], [ 'test' ],
+               'Newsgroups: set');
+       is_deeply([ $mime->header('Xref') ], [ 'example.com test:1' ],
+               'Xref: set');
+
+       $smsg->{num} = 2;
+       PublicInbox::NNTP::set_nntp_headers($hdr, $smsg);
+       is_deeply([ $mime->header('Message-ID') ], [ "<$mid>" ],
+               'Message-ID unchanged');
+       is_deeply([ $mime->header('Xref') ], [ 'example.com test:2' ],
+               'Old Xref: clobbered');
+}
+
 done_testing();