]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/cgi.t
remove GIT_DIR env usage in favor of --git-dir
[public-inbox.git] / t / cgi.t
diff --git a/t/cgi.t b/t/cgi.t
index 020dfe7eeea81c6c9d92de6e28f8d4c6ab08b5d6..dcbfb4ce5634e732dd704e44a6c11d9976b844d3 100644 (file)
--- a/t/cgi.t
+++ b/t/cgi.t
@@ -1,4 +1,4 @@
-# Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
+# Copyright (C) 2014-2015 all contributors <meta@public-inbox.org>
 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
 use strict;
 use warnings;
@@ -11,7 +11,7 @@ use IPC::Run qw/run/;
 use constant CGI => "blib/script/public-inbox.cgi";
 my $mda = "blib/script/public-inbox-mda";
 my $index = "blib/script/public-inbox-index";
-my $tmpdir = tempdir(CLEANUP => 1);
+my $tmpdir = tempdir('pi-cgi-XXXXXX', TMPDIR => 1, CLEANUP => 1);
 my $home = "$tmpdir/pi-home";
 my $pi_home = "$home/.public-inbox";
 my $pi_config = "$pi_home/config";
@@ -62,8 +62,7 @@ zzzzzz
 EOF
                my $in = $simple->as_string;
                run_with_env({PATH => $main_path}, [$mda], \$in);
-               local $ENV{GIT_DIR} = $maindir;
-               my $rev = `git rev-list HEAD`;
+               my $rev = `git --git-dir=$maindir rev-list HEAD`;
                like($rev, qr/\A[a-f0-9]{40}/, "good revision committed");
        }
 
@@ -85,8 +84,7 @@ what?
 EOF
                my $in = $reply->as_string;
                run_with_env({PATH => $main_path}, [$mda], \$in);
-               local $ENV{GIT_DIR} = $maindir;
-               my $rev = `git rev-list HEAD`;
+               my $rev = `git --git-dir=$maindir rev-list HEAD`;
                like($rev, qr/\A[a-f0-9]{40}/, "good revision committed");
        }
 
@@ -102,6 +100,25 @@ EOF
        like($res->{head}, qr/Status:\s*404/i, "index returns 404");
 }
 
+# dumb HTTP support
+{
+       local $ENV{HOME} = $home;
+       my $path = "/test/info/refs";
+       my $res = cgi_run($path);
+       like($res->{head}, qr/Status:\s*200/i, "info/refs readable");
+       my $orig = $res->{body};
+
+       local $ENV{HTTP_RANGE} = 'bytes=5-10';
+       $res = cgi_run($path);
+       like($res->{head}, qr/Status:\s*206/i, "info/refs partial OK");
+       is($res->{body}, substr($orig, 5, 6), 'partial body OK');
+
+       local $ENV{HTTP_RANGE} = 'bytes=5-';
+       $res = cgi_run($path);
+       like($res->{head}, qr/Status:\s*206/i, "info/refs partial past end OK");
+       is($res->{body}, substr($orig, 5), 'partial body OK past end');
+}
+
 # atom feeds
 {
        local $ENV{HOME} = $home;
@@ -109,7 +126,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/m/blah%40example\.com!,
+               qr!http://test\.example\.com/test/blah%40example\.com/!,
                "link id set");
        like($res->{body}, qr/what\?/, "reply included");
 }
@@ -150,29 +167,30 @@ EOF
                local $ENV{ORIGINAL_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");
+       my $res = cgi_run("/test/slashy%2fasdf%40example.com/raw");
        like($res->{body}, qr/Message-Id: <\Q$slashy_mid\E>/,
-               "slashy mid.txt hit");
+               "slashy mid raw hit");
 
-       $res = cgi_run("/test/m/blahblah\@example.com.txt");
+       $res = cgi_run("/test/blahblah\@example.com/raw");
        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");
+               "mid raw hit");
+       $res = cgi_run("/test/blahblah\@example.con/raw");
+       like($res->{head}, qr/Status: 300 Multiple Choices/, "mid raw miss");
 
-       $res = cgi_run("/test/m/blahblah\@example.com.html");
-       like($res->{body}, qr/\A<html>/, "mid.html hit");
+       $res = cgi_run("/test/blahblah\@example.com/");
+       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/blahblah\@example.con/");
+       like($res->{head}, qr/Status: 300 Multiple Choices/, "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");
+       $res = cgi_run("/test/blahblah\@example.com/f/");
+       like($res->{head}, qr/Status: 301 Moved/, "301 response");
+       like($res->{head},
+               qr!^Location: http://[^/]+/test/blahblah%40example\.com/\r\n!ms,
+               '301 redirect location');
+       $res = cgi_run("/test/blahblah\@example.con/");
+       like($res->{head}, qr/Status: 300 Multiple Choices/, "mid html miss");
 
        $res = cgi_run("/test/");
        like($res->{body}, qr/slashy%2Fasdf%40example\.com/,
@@ -183,7 +201,7 @@ EOF
 {
        local $ENV{HOME} = $home;
        local $ENV{PATH} = $main_path;
-       my $path = "/test/t/blahblah%40example.com/mbox.gz";
+       my $path = "/test/blahblah%40example.com/t.mbox.gz";
        my $res = cgi_run($path);
        like($res->{head}, qr/^Status: 501 /, "search not-yet-enabled");
        my $indexed = system($index, $maindir) == 0;
@@ -200,6 +218,18 @@ EOF
        } else {
                like($res->{head}, qr/^Status: 501 /, "search not available");
        }
+
+       my $have_xml_feed = eval { require XML::Feed; 1 } if $indexed;
+       if ($have_xml_feed) {
+               $path = "/test/blahblah%40example.com/t.atom";
+               $res = cgi_run($path);
+               like($res->{head}, qr/^Status: 200 /, "atom returned 200");
+               like($res->{head}, qr!^Content-Type: application/atom\+xml!m,
+                       "search returned atom");
+               my $p = XML::Feed->parse(\($res->{body}));
+               is($p->format, "Atom", "parsed atom feed");
+               is(scalar $p->entries, 3, "parsed three entries");
+       }
 }
 
 # redirect list-name-only URLs