X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fcgi.t;h=a66c582520ecf0190194ebd2e55bc7f7505da257;hb=6e4654d5c509a2772f9fa8dcd0c46e05ca5feaea;hp=93a48d0079e431d0c1e8ff2b0cf09901f962ec78;hpb=b60a668b43b0a279c2a1d621c009396bea1a4898;p=public-inbox.git diff --git a/t/cgi.t b/t/cgi.t index 93a48d00..a66c5825 100644 --- 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/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"); @@ -133,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();