]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/psgi_v2.t
v2writable: append, instead of prepending generated Message-ID
[public-inbox.git] / t / psgi_v2.t
index eaa3218c2530ad27ccd34cce388ae5107c5602fc..11b2c794e238634c66dac443d60b64d1e717a817 100644 (file)
@@ -7,6 +7,7 @@ use File::Temp qw/tempdir/;
 use PublicInbox::MIME;
 use PublicInbox::Config;
 use PublicInbox::WWW;
+use PublicInbox::MID qw(mids);
 my @mods = qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test
                URI::Escape Plack::Builder);
 foreach my $mod (@mods) {
@@ -46,8 +47,8 @@ local $SIG{__WARN__} = sub { push @warn, @_ };
 $mime->header_set(Date => 'Fri, 02 Oct 1993 00:01:00 +0000');
 ok($im->add($mime), 'added duplicate-but-different message');
 is(scalar(@warn), 1, 'got one warning');
-my @mids = $mime->header_obj->header_raw('Message-Id');
-$new_mid = PublicInbox::MID::mid_clean($mids[0]);
+my $mids = mids($mime->header_obj);
+$new_mid = $mids->[1];
 $im->done;
 
 my $cfgpfx = "publicinbox.v2test";
@@ -93,8 +94,8 @@ is(scalar(@warn), 2, 'got another warning');
 like($warn[0], qr/mismatched/, 'warned about mismatched messages');
 is($warn[0], $warn[1], 'both warnings are the same');
 
-@mids = $mime->header_obj->header_raw('Message-Id');
-my $third = PublicInbox::MID::mid_clean($mids[0]);
+$mids = mids($mime->header_obj);
+my $third = $mids->[-1];
 $im->done;
 
 test_psgi(sub { $www->call(@_) }, sub {
@@ -139,6 +140,37 @@ test_psgi(sub { $www->call(@_) }, sub {
        foreach my $mid ('a-mid@b', $new_mid, $third) {
                like($raw, qr/<\Q$mid\E>/s, "Message-ID $mid shown");
        }
+       like($raw, qr/\b3\+ messages\b/, 'thread overview shown');
+
+       my $exp = [ qw(<a-mid@b> <reuse@mid>) ];
+       $mime->header_set('Message-Id', @$exp);
+       $mime->header_set('Subject', '4th dupe');
+       local $SIG{__WARN__} = sub {};
+       ok($im->add($mime), 'added one message');
+       $im->done;
+       my @h = $mime->header('Message-ID');
+       is_deeply($exp, \@h, 'reused existing Message-ID');
+
+       $config->each_inbox(sub { $_[0]->search->reopen });
+
+       $res = $cb->(GET('/v2test/new.atom'));
+       my @ids = ($res->content =~ m!<id>urn:uuid:([^<]+)</id>!sg);
+       my %ids;
+       $ids{$_}++ for @ids;
+       is_deeply([qw(1 1 1 1)], [values %ids], 'feed ids unique');
+
+       $res = $cb->(GET('/v2test/reuse@mid/T/'));
+       $raw = $res->content;
+       like($raw, qr/\b4\+ messages\b/, 'thread overview shown with /T/');
+
+       $res = $cb->(GET('/v2test/reuse@mid/t/'));
+       $raw = $res->content;
+       like($raw, qr/\b4\+ messages\b/, 'thread overview shown with /t/');
+
+       $res = $cb->(GET('/v2test/0/info/refs'));
+       is($res->code, 200, 'got info refs for dumb clones');
+       $res = $cb->(GET('/v2test/info/refs'));
+       is($res->code, 404, 'unpartitioned git URL fails');
 });
 
 done_testing();