1 # Copyright (C) 2014-2018 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 # FIXME: this test is too slow and most non-CGI-requirements
4 # should be moved over to things which use test_psgi
9 use File::Temp qw/tempdir/;
11 eval { require IPC::Run };
12 plan skip_all => "missing IPC::Run for t/cgi.t" if $@;
14 use constant CGI => "blib/script/public-inbox.cgi";
15 my $index = "blib/script/public-inbox-index";
16 my $tmpdir = tempdir('pi-cgi-XXXXXX', TMPDIR => 1, CLEANUP => 1);
17 my $home = "$tmpdir/pi-home";
18 my $pi_home = "$home/.public-inbox";
19 my $pi_config = "$pi_home/config";
20 my $maindir = "$tmpdir/main.git";
21 my $addr = 'test-public@example.com';
22 my $cfgpfx = "publicinbox.test";
25 is(1, mkdir($home, 0755), "setup ~/ for testing");
26 is(1, mkdir($pi_home, 0755), "setup ~/.public-inbox");
27 is(0, system(qw(git init -q --bare), $maindir), "git init (main)");
29 open my $fh, '>', "$maindir/description" or die "open: $!\n";
30 print $fh "test for public-inbox\n";
31 close $fh or die "close: $!\n";
33 "$cfgpfx.address" => $addr,
34 "$cfgpfx.mainrepo" => $maindir,
36 while (my ($k,$v) = each %cfg) {
37 is(0, system(qw(git config --file), $pi_config, $k, $v),
42 use_ok 'PublicInbox::Git';
43 use_ok 'PublicInbox::Import';
45 my $git = PublicInbox::Git->new($maindir);
46 my $im = PublicInbox::Import->new($git, 'test', $addr);
49 local $ENV{HOME} = $home;
51 # ensure successful message delivery
53 my $mime = Email::MIME->new(<<EOF);
54 From: Me <me\@example.com>
55 To: You <you\@example.com>
57 Message-Id: <blah\@example.com>
59 Date: Thu, 01 Jan 1970 00:00:00 +0000
65 my $rev = `git --git-dir=$maindir rev-list HEAD`;
66 like($rev, qr/\A[a-f0-9]{40}/, "good revision committed");
69 # deliver a reply, too
71 my $reply = Email::MIME->new(<<EOF);
72 From: You <you\@example.com>
73 To: Me <me\@example.com>
75 In-Reply-To: <blah\@example.com>
76 Message-Id: <blahblah\@example.com>
78 Date: Thu, 01 Jan 1970 00:00:01 +0000
87 my $rev = `git --git-dir=$maindir rev-list HEAD`;
88 like($rev, qr/\A[a-f0-9]{40}/, "good revision committed");
93 # obvious failures, first
95 local $ENV{HOME} = $home;
96 my $res = cgi_run("/", "", "PUT");
97 like($res->{head}, qr/Status:\s*405/i, "PUT not allowed");
100 like($res->{head}, qr/Status:\s*404/i, "index returns 404");
105 local $ENV{HOME} = $home;
106 my $path = "/test/info/refs";
107 my $res = cgi_run($path);
108 like($res->{head}, qr/Status:\s*200/i, "info/refs readable");
109 my $orig = $res->{body};
111 local $ENV{HTTP_RANGE} = 'bytes=5-10';
112 $res = cgi_run($path);
113 like($res->{head}, qr/Status:\s*206/i, "info/refs partial OK");
114 is($res->{body}, substr($orig, 5, 6), 'partial body OK');
116 local $ENV{HTTP_RANGE} = 'bytes=5-';
117 $res = cgi_run($path);
118 like($res->{head}, qr/Status:\s*206/i, "info/refs partial past end OK");
119 is($res->{body}, substr($orig, 5), 'partial body OK past end');
124 local $ENV{HOME} = $home;
125 my $res = cgi_run("/test/atom.xml");
126 like($res->{body}, qr/<title>test for public-inbox/,
127 "set title in XML feed");
129 qr!http://test\.example\.com/test/blah\@example\.com/!,
131 like($res->{body}, qr/what\?/, "reply included");
136 local $ENV{HOME} = $home;
137 my $slashy_mid = 'slashy/asdf@example.com';
138 my $reply = Email::MIME->new(<<EOF);
139 From: You <you\@example.com>
140 To: Me <me\@example.com>
142 Message-Id: <$slashy_mid>
144 Date: Thu, 01 Jan 1970 00:00:01 +0000
151 my $res = cgi_run("/test/slashy/asdf\@example.com/raw");
152 like($res->{body}, qr/Message-Id: <\Q$slashy_mid\E>/,
153 "slashy mid raw hit");
155 $res = cgi_run("/test/blahblah\@example.com/raw");
156 like($res->{body}, qr/Message-Id: <blahblah\@example\.com>/,
158 $res = cgi_run("/test/blahblah\@example.con/raw");
159 like($res->{head}, qr/Status: 300 Multiple Choices/, "mid raw miss");
161 $res = cgi_run("/test/blahblah\@example.com/");
162 like($res->{body}, qr/\A<html>/, "mid html hit");
163 like($res->{head}, qr/Status: 200 OK/, "200 response");
164 $res = cgi_run("/test/blahblah\@example.con/");
165 like($res->{head}, qr/Status: 300 Multiple Choices/, "mid html miss");
167 $res = cgi_run("/test/blahblah\@example.com/f/");
168 like($res->{head}, qr/Status: 301 Moved/, "301 response");
170 qr!^Location: http://[^/]+/test/blahblah\@example\.com/\r\n!ms,
171 '301 redirect location');
172 $res = cgi_run("/test/blahblah\@example.con/");
173 like($res->{head}, qr/Status: 300 Multiple Choices/, "mid html miss");
175 $res = cgi_run("/test/new.html");
176 like($res->{body}, qr/slashy%2Fasdf\@example\.com/,
177 "slashy URL generated correctly");
180 # retrieve thread as an mbox
182 local $ENV{HOME} = $home;
183 my $path = "/test/blahblah\@example.com/t.mbox.gz";
184 my $res = cgi_run($path);
185 like($res->{head}, qr/^Status: 501 /, "search not-yet-enabled");
186 my $indexed = system($index, $maindir) == 0;
188 $res = cgi_run($path);
189 like($res->{head}, qr/^Status: 200 /, "search returned mbox");
191 require IO::Uncompress::Gunzip;
192 my $in = $res->{body};
194 IO::Uncompress::Gunzip::gunzip(\$in => \$out);
195 like($out, qr/^From /m, "From lines in mbox");
198 like($res->{head}, qr/^Status: 501 /, "search not available");
201 my $have_xml_feed = eval { require XML::Feed; 1 } if $indexed;
202 if ($have_xml_feed) {
203 $path = "/test/blahblah\@example.com/t.atom";
204 $res = cgi_run($path);
205 like($res->{head}, qr/^Status: 200 /, "atom returned 200");
206 like($res->{head}, qr!^Content-Type: application/atom\+xml!m,
207 "search returned atom");
208 my $p = XML::Feed->parse(\($res->{body}));
209 is($p->format, "Atom", "parsed atom feed");
210 is(scalar $p->entries, 3, "parsed three entries");
214 # redirect list-name-only URLs
216 local $ENV{HOME} = $home;
217 my $res = cgi_run("/test");
218 like($res->{head}, qr/Status: 301 Moved/, "redirected status");
219 like($res->{head}, qr!/test/!, "redirected with slash");
225 my ($env, @args) = @_;
226 my $init = sub { foreach my $k (keys %$env) { $ENV{$k} = $env->{$k} } };
227 IPC::Run::run(@args, init => $init);
233 QUERY_STRING => $_[1] || "",
234 REQUEST_METHOD => $_[2] || "GET",
235 GATEWAY_INTERFACE => 'CGI/1.1',
236 HTTP_ACCEPT => '*/*',
237 HTTP_HOST => 'test.example.com',
239 my ($in, $out, $err) = ("", "", "");
240 my $rc = run_with_env(\%env, [CGI], \$in, \$out, \$err);
241 my ($head, $body) = split(/\r\n\r\n/, $out, 2);
242 { head => $head, body => $body, rc => $rc, err => $err }