1 # Copyright (C) 2014-2019 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 PublicInbox::TestCommon;
10 require_mods(qw(Plack::Handler::CGI Plack::Util));
11 my ($tmpdir, $for_destroy) = tmpdir();
12 my $home = "$tmpdir/pi-home";
13 my $pi_home = "$home/.public-inbox";
14 my $pi_config = "$pi_home/config";
15 my $maindir = "$tmpdir/main.git";
16 my $addr = 'test-public@example.com';
19 is(1, mkdir($home, 0755), "setup ~/ for testing");
20 is(1, mkdir($pi_home, 0755), "setup ~/.public-inbox");
21 is(0, system(qw(git init -q --bare), $maindir), "git init (main)");
23 open my $fh, '>', "$maindir/description" or die "open: $!\n";
24 print $fh "test for public-inbox\n";
25 close $fh or die "close: $!\n";
26 open $fh, '>>', $pi_config or die;
27 print $fh <<EOF or die;
33 close $fh or die "close: $!\n";
36 use_ok 'PublicInbox::Inbox';
37 use_ok 'PublicInbox::InboxWritable';
38 use_ok 'PublicInbox::Config';
39 my $cfg = PublicInbox::Config->new($pi_config);
40 my $ibx = $cfg->lookup_name('test');
41 my $im = PublicInbox::InboxWritable->new($ibx)->importer;
44 local $ENV{HOME} = $home;
46 # inject some messages:
47 my $mime = Email::MIME->new(<<EOF);
48 From: Me <me\@example.com>
49 To: You <you\@example.com>
51 Message-Id: <blah\@example.com>
53 Date: Thu, 01 Jan 1970 00:00:00 +0000
59 # deliver a reply, too
60 my $reply = Email::MIME->new(<<EOF);
61 From: You <you\@example.com>
62 To: Me <me\@example.com>
64 In-Reply-To: <blah\@example.com>
65 Message-Id: <blahblah\@example.com>
67 Date: Thu, 01 Jan 1970 00:00:01 +0000
76 my $slashy_mid = 'slashy/asdf@example.com';
77 my $slashy = Email::MIME->new(<<EOF);
78 From: You <you\@example.com>
79 To: Me <me\@example.com>
81 Message-Id: <$slashy_mid>
83 Date: Thu, 01 Jan 1970 00:00:01 +0000
90 my $res = cgi_run("/test/slashy/asdf\@example.com/raw");
91 like($res->{body}, qr/Message-Id: <\Q$slashy_mid\E>/,
92 "slashy mid raw hit");
95 # retrieve thread as an mbox
97 local $ENV{HOME} = $home;
98 my $path = "/test/blahblah\@example.com/t.mbox.gz";
99 my $res = cgi_run($path);
100 like($res->{head}, qr/^Status: 501 /, "search not-yet-enabled");
104 require PublicInbox::SearchIdx;
105 my $s = PublicInbox::SearchIdx->new($ibx, 1);
110 $res = cgi_run($path);
111 like($res->{head}, qr/^Status: 200 /, "search returned mbox");
113 require IO::Uncompress::Gunzip;
114 my $in = $res->{body};
116 IO::Uncompress::Gunzip::gunzip(\$in => \$out);
117 like($out, qr/^From /m, "From lines in mbox");
120 like($res->{head}, qr/^Status: 501 /, "search not available");
121 SKIP: { skip 'DBD::SQLite not available', 2 };
124 my $have_xml_feed = eval { require XML::Feed; 1 } if $indexed;
125 if ($have_xml_feed) {
126 $path = "/test/blahblah\@example.com/t.atom";
127 $res = cgi_run($path);
128 like($res->{head}, qr/^Status: 200 /, "atom returned 200");
129 like($res->{head}, qr!^Content-Type: application/atom\+xml!m,
130 "search returned atom");
131 my $p = XML::Feed->parse(\($res->{body}));
132 is($p->format, "Atom", "parsed atom feed");
133 is(scalar $p->entries, 3, "parsed three entries");
135 SKIP: { skip 'DBD::SQLite or XML::Feed missing', 2 };
144 QUERY_STRING => $_[1] || "",
146 REQUEST_URI => $_[0] . ($_[1] ? "?$_[1]" : ''),
147 REQUEST_METHOD => $_[2] || "GET",
148 GATEWAY_INTERFACE => 'CGI/1.1',
149 HTTP_ACCEPT => '*/*',
150 HTTP_HOST => 'test.example.com',
152 my ($in, $out, $err) = ("", "", "");
153 my $rdr = { 0 => \$in, 1 => \$out, 2 => \$err };
154 run_script(['.cgi'], \%env, $rdr);
155 die "unexpected error: \$?=$?" if $?;
156 my ($head, $body) = split(/\r\n\r\n/, $out, 2);
157 { head => $head, body => $body, err => $err }