X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fpsgi_v2.t;h=7d73b606dbef5f0ad736cc57ddaef5b5d222e4b8;hb=HEAD;hp=6b1b3a39bd7f29f5656482aae6ed30dc9cb8b592;hpb=5ca29b7f2789517f0a41f1482509f504b8b601e1;p=public-inbox.git diff --git a/t/psgi_v2.t b/t/psgi_v2.t index 6b1b3a39..5b197a9f 100644 --- a/t/psgi_v2.t +++ b/t/psgi_v2.t @@ -13,6 +13,36 @@ require_mods(qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test use_ok($_) for (qw(HTTP::Request::Common Plack::Test)); use_ok 'PublicInbox::WWW'; my ($tmpdir, $for_destroy) = tmpdir(); +my $enc_dup = 'ref-20150309094050.GO3427@x1.example'; + +my $dibx = create_inbox 'v2-dup', version => 2, indexlevel => 'medium', + tmpdir => "$tmpdir/dup", sub { + my ($im, $ibx) = @_; + my $common = <<""; +Date: Mon, 9 Mar 2015 09:40:50 +0000 +From: x\@example.com +To: y\@example.com +Subject: re +Message-ID: <$enc_dup> +MIME-Version: 1.0 + + $im->add(PublicInbox::Eml->new($common.<add(PublicInbox::Eml->new($common.<new(<<'EOF'); From oldbug-pre-a0c07cba0e5d8b6a Fri Oct 2 00:00:00 1993 From: a@example.com @@ -53,6 +83,9 @@ my $cfgpath = "$ibx->{inboxdir}/pi_config"; [publicinbox "v2test"] inboxdir = $ibx->{inboxdir} address = $ibx->{-primary_address} +[publicinbox "dup"] + inboxdir = $dibx->{inboxdir} + address = $dibx->{-primary_address} EOF close $fh or BAIL_OUT; } @@ -220,6 +253,14 @@ my $client1 = sub { like($raw, qr!>\Q$mid\E!s, "Message-ID $mid shown"); } like($raw, qr/\b3\+ messages\b/, 'thread overview shown'); + + $res = $cb->(GET("/dup/$enc_dup/d/")); + is($res->code, 200, '/d/ (diff) endpoint works'); + $raw = $res->content; + like($raw, qr! cr_mismatch\n!s, + 'cr_mismatch is only diff context'); + like($raw, qr!>\-pipe !s, 'pipe diff del line'); + like($raw, qr!>\+pipe !s, 'pipe diff ins line'); }; test_psgi(sub { $www->call(@_) }, $client1);