about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-01-09 11:43:27 +0000
committerEric Wong <e@80x24.org>2019-02-01 18:21:00 +0000
commit98661e7894ae4b516d7b7a9d87e451ef2bfe57ba (patch)
tree5527e887258fef7cf3dd7ade8313dd78554205b6 /t
parent0c3a1dabf7fd10ead73140d3f95b3047b144a834 (diff)
downloadpublic-inbox-98661e7894ae4b516d7b7a9d87e451ef2bfe57ba.tar.gz
This is the fallback for the normal WWW endpoint.

Adding this to the top-level seems to be alright, since lynx and
w3m both understand nntp://<HOSTNAME>/<Message-ID> anyways.

If newsgroup and inbox names conflict, then consider it the
fault of the original sender.

Since NewsWWW is intended to support buggy linkifiers in mail clients,
they can interpret nntp:// URLs as http://<HOSTNAME>/<Message-ID>

Inbox ordering from the config file is preserved since
commit cfa8ff7c256e20f3240aed5f98d155c019788e3b
("config: each_inbox iteration preserves config order"),
so admins can rely on that to configure how scanning
works.

Requested-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
cf. https://public-inbox.org/meta/20190107190719.GE9442@pure.paranoia.local/
    nntp://news.public-inbox.org/20190107190719.GE9442@pure.paranoia.local
Diffstat (limited to 't')
-rw-r--r--t/psgi_scan_all.t69
1 files changed, 69 insertions, 0 deletions
diff --git a/t/psgi_scan_all.t b/t/psgi_scan_all.t
new file mode 100644
index 00000000..e9c439ec
--- /dev/null
+++ b/t/psgi_scan_all.t
@@ -0,0 +1,69 @@
+# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+use strict;
+use warnings;
+use Test::More;
+use Email::MIME;
+use File::Temp qw/tempdir/;
+use PublicInbox::Config;
+my @mods = qw(HTTP::Request::Common Plack::Test URI::Escape Search::Xapian
+        DBD::SQLite);
+foreach my $mod (@mods) {
+        eval "require $mod";
+        plan skip_all => "$mod missing for psgi_scan_all.t" if $@;
+}
+use_ok 'PublicInbox::V2Writable';
+foreach my $mod (@mods) { use_ok $mod; }
+my $tmp = tempdir('pi-scan_all-XXXXXX', TMPDIR => 1, CLEANUP => 1);
+my $cfg = {};
+
+foreach my $i (1..2) {
+        my $cfgpfx = "publicinbox.test-$i";
+        my $addr = $cfg->{"$cfgpfx.address"} = "test-$i\@example.com";
+        my $mainrepo = $cfg->{"$cfgpfx.mainrepo"} = "$tmp/$i";
+        $cfg->{"$cfgpfx.url"} = "http://example.com/$i";
+        my $opt = {
+                mainrepo => $mainrepo,
+                name => "test-$i",
+                version => 2,
+                -primary_address => $addr,
+        };
+        my $ibx = PublicInbox::Inbox->new($opt);
+        my $im = PublicInbox::V2Writable->new($ibx, 1);
+        $im->{parallel} = 0;
+        $im->init_inbox(0);
+        my $mime = PublicInbox::MIME->new(<<EOF);
+From: a\@example.com
+To: $addr
+Subject: s$i
+Message-ID: <a-mid-$i\@b>
+Date: Fri, 02 Oct 1993 00:00:00 +0000
+
+hello world
+EOF
+
+        ok($im->add($mime), "added message to $i");
+        $im->done;
+}
+my $config = PublicInbox::Config->new($cfg);
+use_ok 'PublicInbox::WWW';
+my $www = PublicInbox::WWW->new($config);
+
+test_psgi(sub { $www->call(@_) }, sub {
+        my ($cb) = @_;
+        foreach my $i (1..2) {
+                foreach my $end ('', '/') {
+                        my $res = $cb->(GET("/a-mid-$i\@b$end"));
+                        is($res->code, 302, 'got 302');
+                        is($res->header('Location'),
+                                "http://example.com/$i/a-mid-$i\@b/",
+                                "redirected OK to $i");
+                }
+        }
+        foreach my $x (qw(inv@lid inv@lid/ i/v/a l/i/d/)) {
+                my $res = $cb->(GET("/$x"));
+                is($res->code, 404, "404 on $x");
+        }
+});
+
+done_testing();