]> Sergey Matveev's repositories - public-inbox.git/blob - t/psgi_scan_all.t
update copyrights for 2021
[public-inbox.git] / t / psgi_scan_all.t
1 # Copyright (C) 2019-2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 use strict;
4 use warnings;
5 use Test::More;
6 use PublicInbox::Eml;
7 use PublicInbox::Config;
8 use PublicInbox::TestCommon;
9 my @mods = qw(HTTP::Request::Common Plack::Test URI::Escape DBD::SQLite);
10 require_git 2.6;
11 require_mods(@mods);
12 use_ok 'PublicInbox::V2Writable';
13 foreach my $mod (@mods) { use_ok $mod; }
14 my ($tmp, $for_destroy) = tmpdir();
15 my $cfg = '';
16
17 foreach my $i (1..2) {
18         my $cfgpfx = "publicinbox.test-$i";
19         my $addr = "test-$i\@example.com";
20         my $inboxdir = "$tmp/$i";
21         $cfg .= "$cfgpfx.address=$addr\n";
22         $cfg .= "$cfgpfx.inboxdir=$inboxdir\n";
23         $cfg .= "$cfgpfx.url=http://example.com/$i\n";
24         my $opt = {
25                 inboxdir => $inboxdir,
26                 name => "test-$i",
27                 version => 2,
28                 indexlevel => 'basic',
29                 -primary_address => $addr,
30         };
31         my $ibx = PublicInbox::Inbox->new($opt);
32         my $im = PublicInbox::V2Writable->new($ibx, 1);
33         $im->{parallel} = 0;
34         $im->init_inbox(0);
35         my $mime = PublicInbox::Eml->new(<<EOF);
36 From: a\@example.com
37 To: $addr
38 Subject: s$i
39 Message-ID: <a-mid-$i\@b>
40 Date: Fri, 02 Oct 1993 00:00:00 +0000
41
42 hello world
43 EOF
44
45         ok($im->add($mime), "added message to $i");
46         $im->done;
47 }
48 my $config = PublicInbox::Config->new(\$cfg);
49 use_ok 'PublicInbox::WWW';
50 my $www = PublicInbox::WWW->new($config);
51
52 test_psgi(sub { $www->call(@_) }, sub {
53         my ($cb) = @_;
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");
61                 }
62         }
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");
66         }
67 });
68
69 done_testing();