]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/cgi.t
t/cgi: cleanup: no need for additional block
[public-inbox.git] / t / cgi.t
diff --git a/t/cgi.t b/t/cgi.t
index a66c582520ecf0190194ebd2e55bc7f7505da257..ae7cc730e7203ea1c1c5991233d52a7dff7597ea 100644 (file)
--- a/t/cgi.t
+++ b/t/cgi.t
@@ -39,9 +39,9 @@ my $cfgpfx = "publicinbox.test";
        }
 }
 
+my $failbox = "$home/fail.mbox";
+local $ENV{PI_FAILBOX} = $failbox;
 {
-       my $failbox = "$home/fail.mbox";
-       local $ENV{PI_FAILBOX} = $failbox;
        local $ENV{HOME} = $home;
        local $ENV{RECIPIENT} = $addr;
 
@@ -126,11 +126,41 @@ EOF
        # more checks in t/feed.t
 }
 
+# message-id pages
 {
        local $ENV{HOME} = $home;
-       my $res = cgi_run("/test/m/blahblah\@example.com.txt");
+       my $slashy_mid = 'slashy/asdf@example.com';
+       my $reply = Email::Simple->new(<<EOF);
+From: You <you\@example.com>
+To: Me <me\@example.com>
+Cc: $addr
+In-Reply-To: <blah\@example.com>
+Message-Id: <$slashy_mid>
+Subject: Re: hihi
+Date: Thu, 01 Jan 1970 00:00:01 +0000
+
+slashy
+EOF
+       my $in = $reply->as_string;
+
+       {
+               local $ENV{HOME} = $home;
+               local $ENV{RECIPIENT} = $addr;
+               run_with_env({PATH => $main_path}, [$mda], \$in);
+       }
+       local $ENV{GIT_DIR} = $maindir;
+
+       my $res = cgi_run("/test/m/slashy%2fasdf%40example.com.txt");
+       like($res->{body}, qr/Message-Id: <\Q$slashy_mid\E>/,
+               "slashy mid.txt hit");
+
+       $res = cgi_run("/test/m/blahblah\@example.com.txt");
        like($res->{body}, qr/Message-Id: <blahblah\@example\.com>/,
                "mid.txt hit");
+
+       my $pfx = cgi_run("/prefixed/test/m/blahblah\@example.com.txt");
+       is_deeply($pfx, $res, "we do not have to be a top-level URL");
+
        $res = cgi_run("/test/m/blahblah\@example.con.txt");
        like($res->{head}, qr/Status: 404 Not Found/, "mid.txt miss");
 
@@ -145,6 +175,10 @@ EOF
        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");
+
+       $res = cgi_run("/test/");
+       like($res->{body}, qr/slashy%2Fasdf%40example\.com/,
+               "slashy URL generated correctly");
 }
 
 done_testing();