]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/cgi.t
cgi: rename to have .cgi suffix
[public-inbox.git] / t / cgi.t
diff --git a/t/cgi.t b/t/cgi.t
index f359cf6e1f1ffc1bddfbeef70d2098620fef6655..a66c582520ecf0190194ebd2e55bc7f7505da257 100644 (file)
--- a/t/cgi.t
+++ b/t/cgi.t
@@ -8,7 +8,7 @@ use File::Temp qw/tempdir/;
 use Cwd;
 use IPC::Run qw/run/;
 
-use constant CGI => "blib/script/public-inbox-cgi";
+use constant CGI => "blib/script/public-inbox.cgi";
 my $mda = "blib/script/public-inbox-mda";
 my $tmpdir = tempdir(CLEANUP => 1);
 my $home = "$tmpdir/pi-home";
@@ -106,7 +106,7 @@ EOF
        like($res->{body}, qr/<title>test for public-inbox/,
                "set title in XML feed");
        like($res->{body},
-               qr!http://test\.example\.com/test/mid/blah%40example\.com!,
+               qr!http://test\.example\.com/test/m/blah%40example\.com!,
                "link id set");
        like($res->{body}, qr/what\?/, "reply included");
 
@@ -117,16 +117,34 @@ EOF
 # indices
 {
        local $ENV{HOME} = $home;
-       my $res = cgi_run("/test/all.atom.xml");
-       like($res->{body}, qr/<title>test for public-inbox/,
-               "set title in XML feed");
-       like($res->{body},
-               qr!http://test\.example\.com/test/mid/blah%40example\.com!,
-               "link id set");
-       like($res->{body}, qr/what\?/, "reply included");
+       my $res = cgi_run("/test/");
+       like($res->{head}, qr/Status: 200 OK/, "index returns 200");
 
-       $res = cgi_run("/test/index.atom.xml");
-       unlike($res->{body}, qr/what\?/, "reply not included in index");
+       my $idx = cgi_run("/test/index.html");
+       is_deeply($res, $idx,
+               '/$LISTNAME/ and /$LISTNAME/index.html are identical');
+       # more checks in t/feed.t
+}
+
+{
+       local $ENV{HOME} = $home;
+       my $res = cgi_run("/test/m/blahblah\@example.com.txt");
+       like($res->{body}, qr/Message-Id: <blahblah\@example\.com>/,
+               "mid.txt hit");
+       $res = cgi_run("/test/m/blahblah\@example.con.txt");
+       like($res->{head}, qr/Status: 404 Not Found/, "mid.txt miss");
+
+       $res = cgi_run("/test/m/blahblah\@example.com.html");
+       like($res->{body}, qr/\A<html>/, "mid.html hit");
+       like($res->{head}, qr/Status: 200 OK/, "200 response");
+       $res = cgi_run("/test/m/blahblah\@example.con.html");
+       like($res->{head}, qr/Status: 404 Not Found/, "mid.html miss");
+
+       $res = cgi_run("/test/f/blahblah\@example.com.html");
+       like($res->{body}, qr/\A<html>/, "mid.html hit");
+       like($res->{head}, qr/Status: 200 OK/, "200 response");
+       $res = cgi_run("/test/f/blahblah\@example.con.html");
+       like($res->{head}, qr/Status: 404 Not Found/, "mid.html miss");
 }
 
 done_testing();