]> Sergey Matveev's repositories - public-inbox.git/blob - t/v2mirror.t
tests: favor IPv6
[public-inbox.git] / t / v2mirror.t
1 # Copyright (C) 2018-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::TestCommon;
7 use File::Path qw(remove_tree);
8 use Cwd qw(abs_path);
9 require_git(2.6);
10 local $ENV{HOME} = abs_path('t');
11
12 # Integration tests for HTTP cloning + mirroring
13 require_mods(qw(Plack::Util Plack::Builder
14                 HTTP::Date HTTP::Status Search::Xapian DBD::SQLite));
15 use IO::Socket;
16 use POSIX qw(dup2);
17 use_ok 'PublicInbox::V2Writable';
18 use PublicInbox::InboxWritable;
19 use PublicInbox::Eml;
20 use PublicInbox::Config;
21 # FIXME: too much setup
22 my ($tmpdir, $for_destroy) = tmpdir();
23 my $pi_config = "$tmpdir/config";
24 {
25         open my $fh, '>', $pi_config or die "open($pi_config): $!";
26         print $fh <<"" or die "print $pi_config: $!";
27 [publicinbox "v2"]
28         inboxdir = $tmpdir/in
29         address = test\@example.com
30
31         close $fh or die "close($pi_config): $!";
32 }
33 local $ENV{PI_CONFIG} = $pi_config;
34
35 my $cfg = PublicInbox::Config->new($pi_config);
36 my $ibx = $cfg->lookup('test@example.com');
37 ok($ibx, 'inbox found');
38 $ibx->{version} = 2;
39 my $v2w = PublicInbox::V2Writable->new($ibx, 1);
40 ok $v2w, 'v2w loaded';
41 $v2w->{parallel} = 0;
42 my $mime = PublicInbox::Eml->new(<<'');
43 From: Me <me@example.com>
44 To: You <you@example.com>
45 Subject: a
46 Date: Thu, 01 Jan 1970 00:00:00 +0000
47
48 my $old_rotate_bytes = $v2w->{rotate_bytes};
49 $v2w->{rotate_bytes} = 500; # force rotating
50 for my $i (1..9) {
51         $mime->header_set('Message-ID', "<$i\@example.com>");
52         $mime->header_set('Subject', "subject = $i");
53         ok($v2w->add($mime), "add msg $i OK");
54 }
55
56 my $epoch_max = $v2w->{epoch_max};
57 ok($epoch_max > 0, "multiple epochs");
58 $v2w->done;
59 {
60         my $smsg = $ibx->over->get_art(1);
61         like($smsg->{lines}, qr/\A[0-9]+\z/, 'lines is a digit');
62         like($smsg->{bytes}, qr/\A[0-9]+\z/, 'bytes is a digit');
63 }
64 $ibx->cleanup;
65
66 my $sock = tcp_server();
67 my $cmd = [ '-httpd', '-W0', "--stdout=$tmpdir/out", "--stderr=$tmpdir/err" ];
68 my $td = start_script($cmd, undef, { 3 => $sock });
69 my ($host, $port) = tcp_host_port($sock);
70 $sock = undef;
71
72 my @cmd;
73 foreach my $i (0..$epoch_max) {
74         my $sfx = $i == 0 ? '.git' : '';
75         @cmd = (qw(git clone --mirror -q),
76                 "http://$host:$port/v2/$i$sfx",
77                 "$tmpdir/m/git/$i.git");
78
79         is(xsys(@cmd), 0, "cloned $i.git");
80         ok(-d "$tmpdir/m/git/$i.git", "mirror $i OK");
81 }
82
83 @cmd = ("-init", '-j1', '-V2', 'm', "$tmpdir/m", 'http://example.com/m',
84         'alt@example.com');
85 ok(run_script(\@cmd), 'initialized public-inbox -V2');
86 my @shards = glob("$tmpdir/m/xap*/?");
87 is(scalar(@shards), 1, 'got a single shard on init');
88
89 ok(run_script([qw(-index -j0), "$tmpdir/m"]), 'indexed');
90
91 my $mibx = { inboxdir => "$tmpdir/m", address => 'alt@example.com' };
92 $mibx = PublicInbox::Inbox->new($mibx);
93 is_deeply([$mibx->mm->minmax], [$ibx->mm->minmax], 'index synched minmax');
94
95 $v2w->{rotate_bytes} = $old_rotate_bytes;
96 for my $i (10..15) {
97         $mime->header_set('Message-ID', "<$i\@example.com>");
98         $mime->header_set('Subject', "subject = $i");
99         ok($v2w->add($mime), "add msg $i OK");
100 }
101 $v2w->done;
102 $ibx->cleanup;
103
104 my $fetch_each_epoch = sub {
105         foreach my $i (0..$epoch_max) {
106                 my $dir = "$tmpdir/m/git/$i.git";
107                 is(xsys('git', "--git-dir=$dir", 'fetch', '-q'), 0,
108                         'fetch successful');
109         }
110 };
111
112 $fetch_each_epoch->();
113
114 my $mset = $mibx->search->reopen->mset('m:15@example.com');
115 is(scalar($mset->items), 0, 'new message not found in mirror, yet');
116 ok(run_script([qw(-index -j0), "$tmpdir/m"]), 'index updated');
117 is_deeply([$mibx->mm->minmax], [$ibx->mm->minmax], 'index synched minmax');
118 $mset = $mibx->search->reopen->mset('m:15@example.com');
119 is(scalar($mset->items), 1, 'found message in mirror');
120
121 # purge:
122 $mime->header_set('Message-ID', '<10@example.com>');
123 $mime->header_set('Subject', 'subject = 10');
124 {
125         my @warn;
126         local $SIG{__WARN__} = sub { push @warn, @_ };
127         ok($v2w->purge($mime), 'purge a message');
128         my $warn = join('', @warn);
129         like($warn, qr/purge rewriting/);
130         my @subj = ($warn =~ m/^# subject .*$/mg);
131         is_deeply(\@subj, ["# subject = 10"], "only rewrote one");
132 }
133
134 $v2w->done;
135
136 my $msgs = $mibx->over->get_thread('10@example.com');
137 my $to_purge = $msgs->[0]->{blob};
138 like($to_purge, qr/\A[a-f0-9]{40,}\z/, 'read blob to be purged');
139 $mset = $ibx->search->reopen->mset('m:10@example.com');
140 is(scalar($mset->items), 0, 'purged message gone from origin');
141
142 $fetch_each_epoch->();
143 {
144         $ibx->cleanup;
145         PublicInbox::InboxWritable::cleanup($mibx);
146         $v2w->done;
147         my $cmd = [ qw(-index --prune -j0), "$tmpdir/m" ];
148         my ($out, $err) = ('', '');
149         my $opt = { 1 => \$out, 2 => \$err };
150         ok(run_script($cmd, undef, $opt), '-index --prune');
151         like($err, qr/discontiguous range/, 'warned about discontiguous range');
152         unlike($err, qr/fatal/, 'no scary fatal error shown');
153 }
154
155 $mset = $mibx->search->reopen->mset('m:10@example.com');
156 is(scalar($mset->items), 0, 'purged message not found in mirror');
157 is_deeply([$mibx->mm->minmax], [$ibx->mm->minmax], 'minmax still synced');
158 for my $i ((1..9),(11..15)) {
159         $mset = $mibx->search->mset("m:$i\@example.com");
160         is(scalar($mset->items), 1, "$i\@example.com remains visible");
161 }
162 is($mibx->git->check($to_purge), undef, 'unindex+prune successful in mirror');
163
164 {
165         my @warn;
166         local $SIG{__WARN__} = sub { push @warn, @_ };
167         $v2w->index_sync;
168         is_deeply(\@warn, [], 'no warnings from index_sync after purge');
169 }
170
171 # deletes happen in a different fetch window
172 {
173         $mset = $mibx->search->reopen->mset('m:1@example.com');
174         is(scalar($mset->items), 1, '1@example.com visible in mirror');
175         $mime->header_set('Message-ID', '<1@example.com>');
176         $mime->header_set('Subject', 'subject = 1');
177         ok($v2w->remove($mime), 'removed <1@example.com> from source');
178         $v2w->done;
179         $ibx->cleanup;
180         $fetch_each_epoch->();
181         PublicInbox::InboxWritable::cleanup($mibx);
182
183         my $cmd = [ qw(-index -j0), "$tmpdir/m" ];
184         my ($out, $err) = ('', '');
185         my $opt = { 1 => \$out, 2 => \$err };
186         ok(run_script($cmd, undef, $opt), 'index ran');
187         is($err, '', 'no errors reported by index');
188         $mset = $mibx->search->reopen->mset('m:1@example.com');
189         is(scalar($mset->items), 0, '1@example.com no longer visible in mirror');
190 }
191
192 if ('sequential-shard') {
193         $mset = $mibx->search->mset('m:15@example.com');
194         is(scalar($mset->items), 1, 'large message not indexed');
195         remove_tree(glob("$tmpdir/m/xap*"), glob("$tmpdir/m/msgmap.*"));
196         my $cmd = [ qw(-index -j9 --sequential-shard), "$tmpdir/m" ];
197         ok(run_script($cmd), '--sequential-shard works');
198         my @shards = glob("$tmpdir/m/xap*/?");
199         is(scalar(@shards), 8, 'got expected shard count');
200         PublicInbox::InboxWritable::cleanup($mibx);
201         $mset = $mibx->search->mset('m:15@example.com');
202         is(scalar($mset->items), 1, 'search works after --sequential-shard');
203 }
204
205 if ('max size') {
206         $mime->header_set('Message-ID', '<2big@a>');
207         my $max = '2k';
208         $mime->body_str_set("z\n" x 1024);
209         ok($v2w->add($mime), "add big message");
210         $v2w->done;
211         $ibx->cleanup;
212         $fetch_each_epoch->();
213         PublicInbox::InboxWritable::cleanup($mibx);
214         my $cmd = [qw(-index -j0), "$tmpdir/m", "--max-size=$max" ];
215         my $opt = { 2 => \(my $err) };
216         ok(run_script($cmd, undef, $opt), 'indexed with --max-size');
217         like($err, qr/skipping [a-f0-9]{40,}/, 'warned about skipping message');
218         $mset = $mibx->search->reopen->mset('m:2big@a');
219         is(scalar($mset->items), 0, 'large message not indexed');
220
221         {
222                 open my $fh, '>>', $pi_config or die;
223                 print $fh <<EOF or die;
224 [publicinbox]
225         indexMaxSize = 2k
226 EOF
227                 close $fh or die;
228         }
229         $cmd = [ qw(-index -j0 --reindex), "$tmpdir/m" ];
230         ok(run_script($cmd, undef, $opt), 'reindexed w/ indexMaxSize in file');
231         like($err, qr/skipping [a-f0-9]{40,}/, 'warned about skipping message');
232         $mset = $mibx->search->reopen->mset('m:2big@a');
233         is(scalar($mset->items), 0, 'large message not re-indexed');
234 }
235
236 ok($td->kill, 'killed httpd');
237 $td->join;
238
239 done_testing();
240
241 1;