]> Sergey Matveev's repositories - public-inbox.git/blob - t/psgi_v2.t
fetch: support running as root
[public-inbox.git] / t / psgi_v2.t
1 #!perl -w
2 # Copyright (C) 2018-2021 all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 use strict;
5 use v5.10.1;
6 use PublicInbox::TestCommon;
7 require_git(2.6);
8 use PublicInbox::Eml;
9 use PublicInbox::Config;
10 use PublicInbox::MID qw(mids);
11 require_mods(qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test
12                 URI::Escape Plack::Builder));
13 use_ok($_) for (qw(HTTP::Request::Common Plack::Test));
14 use_ok 'PublicInbox::WWW';
15 my ($tmpdir, $for_destroy) = tmpdir();
16 my $eml = PublicInbox::Eml->new(<<'EOF');
17 From oldbug-pre-a0c07cba0e5d8b6a Fri Oct  2 00:00:00 1993
18 From: a@example.com
19 To: test@example.com
20 Subject: this is a subject
21 Message-ID: <a-mid@b>
22 Date: Fri, 02 Oct 1993 00:00:00 +0000
23
24 hello world
25 EOF
26 my $new_mid;
27 my $ibx = create_inbox 'v2', version => 2, indexlevel => 'medium',
28                         tmpdir => "$tmpdir/v2", sub {
29         my ($im, $ibx) = @_;
30         $im->add($eml) or BAIL_OUT;
31         $eml->body_set("hello world!\n");
32         my @warn;
33         local $SIG{__WARN__} = sub { push @warn, @_ };
34         $eml->header_set(Date => 'Fri, 02 Oct 1993 00:01:00 +0000');
35         $im->add($eml) or BAIL_OUT;
36         is(scalar(@warn), 1, 'got one warning');
37         my $mids = mids($eml->header_obj);
38         $new_mid = $mids->[1];
39         open my $fh, '>', "$ibx->{inboxdir}/new_mid" or BAIL_OUT;
40         print $fh $new_mid or BAIL_OUT;
41         close $fh or BAIL_OUT;
42 };
43 $new_mid //= do {
44         open my $fh, '<', "$ibx->{inboxdir}/new_mid" or BAIL_OUT;
45         local $/;
46         <$fh>;
47 };
48 my $cfgpath = "$ibx->{inboxdir}/pi_config";
49 {
50         open my $fh, '>', $cfgpath or BAIL_OUT $!;
51         print $fh <<EOF or BAIL_OUT $!;
52 [publicinbox "v2test"]
53         inboxdir = $ibx->{inboxdir}
54         address = $ibx->{-primary_address}
55 EOF
56         close $fh or BAIL_OUT;
57 }
58
59 my $msg = $ibx->msg_by_mid('a-mid@b');
60 like($$msg, qr/\AFrom oldbug/s,
61         '"From_" line stored to test old bug workaround');
62 my $cfg = PublicInbox::Config->new($cfgpath);
63 my $www = PublicInbox::WWW->new($cfg);
64 my ($res, $raw, @from_);
65 my $client0 = sub {
66         my ($cb) = @_;
67         $res = $cb->(GET('/v2test/description'));
68         like($res->content, qr!\$INBOX_DIR/description missing!,
69                 'got v2 description missing message');
70         $res = $cb->(GET('/v2test/a-mid@b/raw'));
71         $raw = $res->content;
72         unlike($raw, qr/^From oldbug/sm, 'buggy "From_" line omitted');
73         like($raw, qr/^hello world$/m, 'got first message');
74         like($raw, qr/^hello world!$/m, 'got second message');
75         @from_ = ($raw =~ m/^From /mg);
76         is(scalar(@from_), 2, 'two From_ lines');
77
78         $res = $cb->(GET("/v2test/$new_mid/raw"));
79         $raw = $res->content;
80         like($raw, qr/^hello world!$/m, 'second message with new Message-Id');
81         @from_ = ($raw =~ m/^From /mg);
82         is(scalar(@from_), 1, 'only one From_ line');
83
84         # Atom feed should sort by Date: (if Received is missing)
85         $res = $cb->(GET('/v2test/new.atom'));
86         my @bodies = ($res->content =~ />(hello [^<]+)</mg);
87         is_deeply(\@bodies, [ "hello world!\n", "hello world\n" ],
88                 'Atom ordering is chronological');
89
90         # new.html should sort by Date:, too (if Received is missing)
91         $res = $cb->(GET('/v2test/new.html'));
92         @bodies = ($res->content =~ /^(hello [^<]+)$/mg);
93         is_deeply(\@bodies, [ "hello world!\n", "hello world\n" ],
94                 'new.html ordering is chronological');
95 };
96 test_psgi(sub { $www->call(@_) }, $client0);
97 my $env = { TMPDIR => $tmpdir, PI_CONFIG => $cfgpath };
98 test_httpd($env, $client0, 9);
99
100 $eml->header_set('Message-ID', 'a-mid@b');
101 $eml->body_set("hello ghosts\n");
102 my $im = $ibx->importer(0);
103 {
104         my @warn;
105         local $SIG{__WARN__} = sub { push @warn, @_ };
106         ok($im->add($eml), 'added 3rd duplicate-but-different message');
107         is(scalar(@warn), 1, 'got another warning');
108         like($warn[0], qr/mismatched/, 'warned about mismatched messages');
109 }
110 my $mids = mids($eml->header_obj);
111 my $third = $mids->[-1];
112 $im->done;
113
114 my $client1 = sub {
115         my ($cb) = @_;
116         $res = $cb->(GET("/v2test/$third/raw"));
117         $raw = $res->content;
118         like($raw, qr/^hello ghosts$/m, 'got third message');
119         @from_ = ($raw =~ m/^From /mg);
120         is(scalar(@from_), 1, 'one From_ line');
121
122         $res = $cb->(GET('/v2test/a-mid@b/raw'));
123         $raw = $res->content;
124         like($raw, qr/^hello world$/m, 'got first message');
125         like($raw, qr/^hello world!$/m, 'got second message');
126         like($raw, qr/^hello ghosts$/m, 'got third message');
127         @from_ = ($raw =~ m/^From /mg);
128         is(scalar(@from_), 3, 'three From_ lines');
129         $cfg->each_inbox(sub { $_[0]->search->reopen });
130
131         SKIP: {
132                 eval { require IO::Uncompress::Gunzip };
133                 skip 'IO::Uncompress::Gunzip missing', 6 if $@;
134                 my ($in, $out, $status);
135                 my $req = GET('/v2test/a-mid@b/raw');
136                 $req->header('Accept-Encoding' => 'gzip');
137                 $res = $cb->($req);
138                 is($res->header('Content-Encoding'), 'gzip', 'gzip encoding');
139                 $in = $res->content;
140                 IO::Uncompress::Gunzip::gunzip(\$in => \$out);
141                 is($out, $raw, 'gzip response matches');
142
143                 $res = $cb->(GET('/v2test/a-mid@b/t.mbox.gz'));
144                 $in = $res->content;
145                 $status = IO::Uncompress::Gunzip::gunzip(\$in => \$out);
146                 unlike($out, qr/^From oldbug/sm, 'buggy "From_" line omitted');
147                 like($out, qr/^hello world$/m, 'got first in t.mbox.gz');
148                 like($out, qr/^hello world!$/m, 'got second in t.mbox.gz');
149                 like($out, qr/^hello ghosts$/m, 'got third in t.mbox.gz');
150                 @from_ = ($out =~ m/^From /mg);
151                 is(scalar(@from_), 3, 'three From_ lines in t.mbox.gz');
152
153                 # search interface
154                 $res = $cb->(POST('/v2test/?q=m:a-mid@b&x=m'));
155                 $in = $res->content;
156                 $status = IO::Uncompress::Gunzip::gunzip(\$in => \$out);
157                 unlike($out, qr/^From oldbug/sm, 'buggy "From_" line omitted');
158                 like($out, qr/^hello world$/m, 'got first in mbox POST');
159                 like($out, qr/^hello world!$/m, 'got second in mbox POST');
160                 like($out, qr/^hello ghosts$/m, 'got third in mbox POST');
161                 @from_ = ($out =~ m/^From /mg);
162                 is(scalar(@from_), 3, 'three From_ lines in mbox POST');
163
164                 # all.mbox.gz interface
165                 $res = $cb->(GET('/v2test/all.mbox.gz'));
166                 $in = $res->content;
167                 $status = IO::Uncompress::Gunzip::gunzip(\$in => \$out);
168                 unlike($out, qr/^From oldbug/sm, 'buggy "From_" line omitted');
169                 like($out, qr/^hello world$/m, 'got first in all.mbox');
170                 like($out, qr/^hello world!$/m, 'got second in all.mbox');
171                 like($out, qr/^hello ghosts$/m, 'got third in all.mbox');
172                 @from_ = ($out =~ m/^From /mg);
173                 is(scalar(@from_), 3, 'three From_ lines in all.mbox');
174         };
175
176         $res = $cb->(GET('/v2test/?q=m:a-mid@b&x=t'));
177         is($res->code, 200, 'success with threaded search');
178         my $raw = $res->content;
179         ok($raw =~ s/\A.*>Results 1-3 of 3\b//s, 'got all results');
180         my @over = ($raw =~ m/\d{4}-\d+-\d+\s+\d+:\d+ +(?:\d+\% )?(.+)$/gm);
181         is_deeply(\@over, [ '<a', '` <a', '` <a' ], 'threaded messages show up');
182
183         $res = $cb->(GET('/v2test/?q=m:a-mid@b&x=A'));
184         is($res->code, 200, 'success with Atom search');
185         SKIP: {
186                 require_mods(qw(XML::TreePP), 2);
187                 my $t = XML::TreePP->new->parse($res->content);
188                 like($t->{feed}->{-xmlns}, qr/\bAtom\b/,
189                         'looks like an an Atom feed');
190                 is(scalar @{$t->{feed}->{entry}}, 3, 'parsed three entries');
191         };
192
193         local $SIG{__WARN__} = 'DEFAULT';
194         $res = $cb->(GET('/v2test/a-mid@b/'));
195         $raw = $res->content;
196         like($raw, qr/^hello world$/m, 'got first message');
197         like($raw, qr/^hello world!$/m, 'got second message');
198         like($raw, qr/^hello ghosts$/m, 'got third message');
199         @from_ = ($raw =~ m/>From: /mg);
200         is(scalar(@from_), 3, 'three From: lines');
201         foreach my $mid ('a-mid@b', $new_mid, $third) {
202                 like($raw, qr!>\Q$mid\E</a>!s, "Message-ID $mid shown");
203         }
204         like($raw, qr/\b3\+ messages\b/, 'thread overview shown');
205 };
206
207 test_psgi(sub { $www->call(@_) }, $client1);
208 test_httpd($env, $client1, 38);
209
210 {
211         my $exp = [ qw(<a-mid@b> <reuse@mid>) ];
212         $eml->header_set('Message-Id', @$exp);
213         $eml->header_set('Subject', '4th dupe');
214         local $SIG{__WARN__} = sub {};
215         ok($im->add($eml), 'added one message');
216         $im->done;
217         my @h = $eml->header('Message-ID');
218         is_deeply($exp, \@h, 'reused existing Message-ID');
219         $cfg->each_inbox(sub { $_[0]->search->reopen });
220 }
221
222 my $client2 = sub {
223         my ($cb) = @_;
224         my $res = $cb->(GET('/v2test/new.atom'));
225         my @ids = ($res->content =~ m!<id>urn:uuid:([^<]+)</id>!sg);
226         my %ids;
227         $ids{$_}++ for @ids;
228         is_deeply([qw(1 1 1 1)], [values %ids], 'feed ids unique');
229
230         $res = $cb->(GET('/v2test/reuse@mid/T/'));
231         $raw = $res->content;
232         like($raw, qr/\b4\+ messages\b/, 'thread overview shown with /T/');
233         my @over = ($raw =~ m/^\d{4}-\d+-\d+\s+\d+:\d+ (.+)$/gm);
234         is_deeply(\@over, [ '<a', '` <a', '` <a', '` <a' ],
235                 'duplicate messages share the same root');
236
237         $res = $cb->(GET('/v2test/reuse@mid/t/'));
238         $raw = $res->content;
239         like($raw, qr/\b4\+ messages\b/, 'thread overview shown with /t/');
240
241         $res = $cb->(GET('/v2test/0/info/refs'));
242         is($res->code, 200, 'got info refs for dumb clones');
243         $res = $cb->(GET('/v2test/0.git/info/refs'));
244         is($res->code, 200, 'got info refs for dumb clones w/ .git suffix');
245         $res = $cb->(GET('/v2test/info/refs'));
246         is($res->code, 404, 'v2 git URL w/o shard fails');
247 };
248
249 test_psgi(sub { $www->call(@_) }, $client2);
250 test_httpd($env, $client2, 8);
251 {
252         # ensure conflicted attachments can be resolved
253         local $SIG{__WARN__} = sub {};
254         foreach my $body (qw(old new)) {
255                 $im->add(eml_load "t/psgi_v2-$body.eml") or BAIL_OUT;
256         }
257         $im->done;
258 }
259 $cfg->each_inbox(sub { $_[0]->search->reopen });
260
261 my $client3 = sub {
262         my ($cb) = @_;
263         my $res = $cb->(GET('/v2test/a@dup/'));
264         my @links = ($res->content =~ m!"\.\./([^/]+/2-attach\.txt)\"!g);
265         is(scalar(@links), 2, 'both attachment links exist');
266         isnt($links[0], $links[1], 'attachment links are different');
267         {
268                 my $old = $cb->(GET('/v2test/' . $links[0]));
269                 my $new = $cb->(GET('/v2test/' . $links[1]));
270                 is($old->content, 'old', 'got expected old content');
271                 is($new->content, 'new', 'got expected new content');
272         }
273         $res = $cb->(GET('/v2test/?t=1970'.'01'.'01'.'000000'));
274         is($res->code, 404, '404 for out-of-range t= param');
275         my @warn = ();
276         local $SIG{__WARN__} = sub { push @warn, @_ };
277         $res = $cb->(GET('/v2test/?t=1970'.'01'.'01'));
278         is_deeply(\@warn, [], 'no warnings on YYYYMMDD only');
279 };
280 test_psgi(sub { $www->call(@_) }, $client3);
281 test_httpd($env, $client3, 4);
282
283 done_testing;