1 # Copyright (C) 2019 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
7 use File::Temp qw/tempdir/;
8 use PublicInbox::Config;
9 my @mods = qw(HTTP::Request::Common Plack::Test URI::Escape DBD::SQLite);
10 foreach my $mod (@mods) {
12 plan skip_all => "$mod missing for psgi_scan_all.t" if $@;
14 use_ok 'PublicInbox::V2Writable';
15 foreach my $mod (@mods) { use_ok $mod; }
16 my $tmp = tempdir('pi-scan_all-XXXXXX', TMPDIR => 1, CLEANUP => 1);
19 foreach my $i (1..2) {
20 my $cfgpfx = "publicinbox.test-$i";
21 my $addr = $cfg->{"$cfgpfx.address"} = "test-$i\@example.com";
22 my $mainrepo = $cfg->{"$cfgpfx.mainrepo"} = "$tmp/$i";
23 $cfg->{"$cfgpfx.url"} = "http://example.com/$i";
25 mainrepo => $mainrepo,
28 indexlevel => 'basic',
29 -primary_address => $addr,
31 my $ibx = PublicInbox::Inbox->new($opt);
32 my $im = PublicInbox::V2Writable->new($ibx, 1);
35 my $mime = PublicInbox::MIME->new(<<EOF);
39 Message-ID: <a-mid-$i\@b>
40 Date: Fri, 02 Oct 1993 00:00:00 +0000
45 ok($im->add($mime), "added message to $i");
48 my $config = PublicInbox::Config->new($cfg);
49 use_ok 'PublicInbox::WWW';
50 my $www = PublicInbox::WWW->new($config);
52 test_psgi(sub { $www->call(@_) }, sub {
54 foreach my $i (1..2) {
55 foreach my $end ('', '/') {
56 my $res = $cb->(GET("/a-mid-$i\@b$end"));
57 is($res->code, 302, 'got 302');
58 is($res->header('Location'),
59 "http://example.com/$i/a-mid-$i\@b/",
60 "redirected OK to $i");
63 foreach my $x (qw(inv@lid inv@lid/ i/v/a l/i/d/)) {
64 my $res = $cb->(GET("/$x"));
65 is($res->code, 404, "404 on $x");