]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/nntp.t
nntp: append Archived-At and List-Archive headers
[public-inbox.git] / t / nntp.t
index 82918ff55456581964017b9bad2130c33f5021ff..5513c7bcd58a5be43e02876f374157d2707ad0b4 100644 (file)
--- a/t/nntp.t
+++ b/t/nntp.t
@@ -5,7 +5,13 @@ use warnings;
 use Test::More;
 use Data::Dumper;
 
+foreach my $mod (qw(DBD::SQLite Search::Xapian Danga::Socket)) {
+       eval "require $mod";
+       plan skip_all => "$mod missing for nntp.t" if $@;
+}
+
 use_ok 'PublicInbox::NNTP';
+use_ok 'PublicInbox::NewsGroup';
 
 {
        sub quote_str {
@@ -61,4 +67,66 @@ 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 = gmtime($ts);
+               my ($d, $t);
+               if (length($date) == 8) {
+                       ($d, $t) = split(' ', strftime('%Y%m%d %H%M%S', @t));
+               } else {
+                       ($d, $t) = split(' ', strftime('%g%m%d %H%M%S', @t));
+               }
+               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));
+
+       SKIP: {
+               skip('YYMMDD test needs updating', 2) 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');
+       }
+}
+
+{ # test setting NNTP headers in HEAD and ARTICLE requests
+       require Email::MIME;
+       my $u = 'https://example.com/a/';
+       my $ng = PublicInbox::NewsGroup->new('test', 'test.git',
+                               'a@example.com', '//example.com/a');
+       is($ng->{url}, $u, 'URL expanded');
+       my $mid = 'a@b';
+       my $mime = Email::MIME->new("Message-ID: <$mid>\r\n\r\n");
+       PublicInbox::NNTP::set_nntp_headers($mime->header_obj, $ng, 1, $mid);
+       is_deeply([ $mime->header('Message-ID') ], [ "<$mid>" ],
+               'Message-ID unchanged');
+       is_deeply([ $mime->header('Archived-At') ], [ "<${u}a%40b/>" ],
+               'Archived-At: set');
+       is_deeply([ $mime->header('List-Archive') ], [ "<$u>" ],
+               'List-Archive: set');
+       is_deeply([ $mime->header('List-Post') ], [ '<mailto:a@example.com>' ],
+               'List-Post: set');
+       is_deeply([ $mime->header('Newsgroups') ], [ 'test' ],
+               'Newsgroups: set');
+       is_deeply([ $mime->header('Xref') ], [ 'example.com test:1' ],
+               'Xref: set');
+
+       $ng->{url} = 'http://mirror.example.com/m/';
+       PublicInbox::NNTP::set_nntp_headers($mime->header_obj, $ng, 2, $mid);
+       is_deeply([ $mime->header('Message-ID') ], [ "<$mid>" ],
+               'Message-ID unchanged');
+       is_deeply([ $mime->header('Archived-At') ],
+               [ "<${u}a%40b/>", '<http://mirror.example.com/m/a%40b/>' ],
+               'Archived-At: appended');
+       is_deeply([ $mime->header('Xref') ], [ 'example.com test:2' ],
+               'Old Xref: clobbered');
+}
+
 done_testing();