1 # Copyright (C) 2019 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
6 my @mods = qw(DBI DBD::SQLite Search::Xapian);
7 foreach my $mod (@mods) {
9 plan skip_all => "missing $mod for $0" if $@;
11 require './t/common.perl';
13 use File::Temp qw/tempdir/;
14 use PublicInbox::MIME;
15 use PublicInbox::InboxWritable;
17 my $mime = PublicInbox::MIME->create(
19 From => 'a@example.com',
20 To => 'test@example.com',
21 Subject => 'this is a subject',
22 Date => 'Fri, 02 Oct 1993 00:00:00 +0000',
27 my ($this) = (split('/', $0))[-1];
28 my $tmpdir = tempdir($this.'-XXXXXX', TMPDIR => 1, CLEANUP => 1);
29 my $ibx = PublicInbox::Inbox->new({
30 mainrepo => "$tmpdir/testbox",
33 -primary_address => 'test@example.com',
34 indexlevel => 'medium',
36 my $path = 'blib/script';
37 my @xcpdb = ("$path/public-inbox-xcpdb", '-q');
40 my $im = PublicInbox::InboxWritable->new($ibx, {nproc => $nproc})->importer(1);
41 for my $i (1..$ndoc) {
42 $mime->header_set('Message-ID', "<m$i\@example.com>");
43 ok($im->add($mime), "message $i added");
46 my @shards = grep(m!/\d+\z!, glob("$ibx->{mainrepo}/xap*/*"));
47 is(scalar(@shards), $nproc, 'got expected shards');
48 my $orig = $ibx->over->query_xover(1, $ndoc);
49 my %nums = map {; "$_->{num}" => 1 } @$orig;
51 # ensure we can go up or down in shards, or stay the same:
52 for my $R (qw(2 4 1 3 3)) {
53 delete $ibx->{search}; # release old handles
54 is(system(@xcpdb, "-R$R", $ibx->{mainrepo}), 0, "xcpdb -R$R");
55 my @new_shards = grep(m!/\d+\z!, glob("$ibx->{mainrepo}/xap*/*"));
56 is(scalar(@new_shards), $R, 'resharded to two shards');
57 my $msgs = $ibx->search->query('s:this');
58 is(scalar(@$msgs), $ndoc, 'got expected docs after resharding');
59 my %by_mid = map {; "$_->{mid}" => $_ } @$msgs;
60 ok($by_mid{"m$_\@example.com"}, "$_ exists") for (1..$ndoc);
62 delete $ibx->{search}; # release old handles
64 # ensure docids in Xapian match NNTP article numbers
67 foreach my $d (@new_shards) {
68 my $xdb = Search::Xapian::Database->new($d);
69 $tot += $xdb->get_doccount;
70 my $it = $xdb->postlist_begin('');
71 my $end = $xdb->postlist_end('');
72 for (; $it != $end; $it++) {
73 my $docid = $it->get_docid;
74 if ($xdb->get_document($docid)) {
75 ok(delete($tmp{$docid}), "saw #$docid");
79 is(scalar keys %tmp, 0, 'all docids seen');