1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
| | #!perl -w
# Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
use strict;
use v5.10.1;
use List::Util qw(shuffle max);
use PublicInbox::TestCommon;
use PublicInbox::Eml;
use PublicInbox::InboxWritable;
require_mods(qw(DBD::SQLite Search::Xapian));
require PublicInbox::ExtSearchIdx;
require_git 2.6;
require_ok 'PublicInbox::LeiXSearch';
my ($home, $for_destroy) = tmpdir();
my @ibx;
for my $V (1..2) {
for my $i (3..6) {
push @ibx, create_inbox("v$V-$i", indexlevel => 'full',
version => $V, sub {
my ($im, $ibx) = @_;
for my $j (0..9) {
my $eml = PublicInbox::Eml->new(<<EOM);
From: x\@example.com
To: $ibx->{-primary_address}
Date: Fri, 02 Oct 1993 0$V:0$i:0$j +0000
Subject: v${V}i${i}j$j
Message-ID: <v${V}i${i}j$j\@example>
${V}er ${i}on j$j
EOM
$im->add($eml) or BAIL_OUT '->add';
}
}); # create_inbox
}
}
my $first = shift @ibx; is($first->{name}, 'v1-3', 'first plucked');
my $last = pop @ibx; is($last->{name}, 'v2-6', 'last plucked');
my $eidx = PublicInbox::ExtSearchIdx->new("$home/eidx");
$eidx->attach_inbox($first);
$eidx->attach_inbox($last);
$eidx->eidx_sync({fsync => 0});
my $es = PublicInbox::ExtSearch->new("$home/eidx");
my $lxs = PublicInbox::LeiXSearch->new;
for my $ibxish (shuffle($es, @ibx)) {
$lxs->prepare_external($ibxish);
}
for my $loc ($lxs->locals) {
$lxs->attach_external($loc);
}
my $nr = $lxs->xdb->get_doccount;
my $mset = $lxs->mset('d:19931002..19931003', { limit => $nr });
is($mset->size, $nr, 'got all messages');
my @msgs;
for my $mi ($mset->items) {
if (my $smsg = $lxs->smsg_for($mi)) {
push @msgs, $smsg;
} else {
diag "E: ${\$mi->get_docid} missing";
}
}
is(scalar(@msgs), $nr, 'smsgs retrieved for all');
$mset = $lxs->recent(undef, { limit => 1 });
is($mset->size, 1, 'one result');
my $max = max(map { $_->{docid} } @msgs);
is($lxs->smsg_for(($mset->items)[0])->{docid}, $max,
'got highest docid');
my @ibxish = $lxs->locals;
is(scalar(@ibxish), scalar(@ibx) + 1, 'got locals back');
is($lxs->search, $lxs, '->search works');
is($lxs->over, undef, '->over fails');
{
$lxs = PublicInbox::LeiXSearch->new;
my $v2ibx = PublicInbox::InboxWritable->new({
inboxdir => "$home/v2full",
name => 'v2full',
version => 2,
indexlevel => 'full',
-primary_address => 'v2full@example.com',
}, {});
my $im = $v2ibx->importer(0);
$im->add(eml_load('t/plack-qp.eml'));
$im->done;
my $v1ibx = PublicInbox::InboxWritable->new({
inboxdir => "$home/v1medium",
name => 'v1medium',
version => 1,
indexlevel => 'medium',
-primary_address => 'v1medium@example.com',
}, {});
$im = $v1ibx->importer(0);
$im->add(eml_load('t/utf8.eml'));
$im->done;
$lxs->prepare_external($v1ibx);
$lxs->prepare_external($v2ibx);
for my $loc ($lxs->locals) {
$lxs->attach_external($loc);
}
my $mset = $lxs->mset('m:testmessage@example.com');
is($mset->size, 1, 'got m: match on medium+full XSearch mix');
}
done_testing;
|