]> 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 a19f2cf11ab9fe8f367ce69ab942fa447846d48b..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");
 
@@ -119,10 +119,13 @@ EOF
        local $ENV{HOME} = $home;
        my $res = cgi_run("/test/");
        like($res->{head}, qr/Status: 200 OK/, "index returns 200");
+
+       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");
@@ -130,6 +133,18 @@ EOF
                "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();