1 # Copyright (C) 2018-2019 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
6 use File::Temp qw/tempdir/;
8 use PublicInbox::Config;
10 my @mods = qw(DBD::SQLite HTTP::Request::Common Plack::Test
11 URI::Escape Plack::Builder);
12 foreach my $mod (@mods) {
14 plan skip_all => "$mod missing for psgi_bad_mids.t" if $@;
17 use_ok 'PublicInbox::V2Writable';
18 my $mainrepo = tempdir('pi-bad-mids-XXXXXX', TMPDIR => 1, CLEANUP => 1);
19 my $cfgpfx = "publicinbox.bad-mids";
21 mainrepo => $mainrepo,
24 -primary_address => 'test@example.com',
25 indexlevel => 'basic',
27 $ibx = PublicInbox::Inbox->new($ibx);
28 my $im = PublicInbox::V2Writable->new($ibx, 1);
32 F1V5OR6NMF.3M649JTLO9IXD@tux.localdomain/hehe1"'<foo
33 F1V5NB0PTU.3U0DCVGAJ750Z@tux.localdomain"'<>/foo
34 F1V5MIHGCU.2ABINKW6WBE8N@tux.localdomain/raw
35 F1V5LF9D9C.2QT5PGXZQ050E@tux.localdomain/t.atom
36 F1V58X3CMU.2DCCVAKQZGADV@tux.localdomain/../../../../foo
37 F1TVKINT3G.2S6I36MXMHYG6@tux.localdomain" onclick="alert(1)"
39 my @mids = split(/\n/, $msgs);
41 foreach my $mid (@mids) {
47 Date: Fri, 02 Oct 1993 00:00:0$i +0000
50 my $mime = PublicInbox::MIME->new(\$data);
51 ok($im->add($mime), "added $mid");
57 "$cfgpfx.address" => $ibx->{-primary_address},
58 "$cfgpfx.mainrepo" => $mainrepo,
60 my $config = PublicInbox::Config->new($cfg);
61 my $www = PublicInbox::WWW->new($config);
62 test_psgi(sub { $www->call(@_) }, sub {
64 my $res = $cb->(GET('/bad-mids/'));
65 is($res->code, 200, 'got 200 OK listing');
66 my $raw = $res->content;
67 foreach my $mid (@mids) {
68 ok(index($raw, $mid) < 0, "escaped $mid");
71 my (@xmids) = ($raw =~ m!\bhref="([^"]+)/t\.mbox\.gz"!sg);
72 is(scalar(@xmids), scalar(@mids),
73 'got escaped links to all messages');
75 @xmids = reverse @xmids;
76 foreach my $i (0..$#xmids) {
77 $res = $cb->(GET("/bad-mids/$xmids[$i]/raw"));
78 is($res->code, 200, 'got 200 OK raw message');
79 like($res->content, qr/Message-ID: <\Q$mids[$i]\E>/s,
80 'retrieved correct message');