]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/convert-compact.t
No ext_urls
[public-inbox.git] / t / convert-compact.t
index 575262e8e5d3360b85825d686c39ba3835ae6e34..bad6560e9cff2344d2007a0eb2d85084ff9bd545 100644 (file)
@@ -1,32 +1,27 @@
-# Copyright (C) 2018-2020 all contributors <meta@public-inbox.org>
+#!perl -w
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
-use warnings;
-use Test::More;
+use v5.10.1;
 use PublicInbox::Eml;
-use PublicInbox::Spawn qw(which);
 use PublicInbox::TestCommon;
+use PublicInbox::Import;
 require_git(2.6);
 require_mods(qw(DBD::SQLite Search::Xapian));
-which('xapian-compact') or
-       plan skip_all => 'xapian-compact missing for '.__FILE__;
-
-use_ok 'PublicInbox::V2Writable';
-use PublicInbox::Import;
+have_xapian_compact;
 my ($tmpdir, $for_destroy) = tmpdir();
-my $ibx = {
-       inboxdir => "$tmpdir/v1",
-       name => 'test-v1',
-       -primary_address => 'test@example.com',
-};
-
-PublicInbox::Import::init_bare($ibx->{inboxdir});
-ok(umask(077), 'set restrictive umask');
-ok(PublicInbox::Import::run_die([qw(git) , "--git-dir=$ibx->{inboxdir}",
-       qw(config core.sharedRepository 0644)]), 'set sharedRepository');
-$ibx = PublicInbox::Inbox->new($ibx);
-my $im = PublicInbox::Import->new($ibx->git, undef, undef, $ibx);
-my $mime = PublicInbox::Eml->new(<<'EOF');
+my $ibx = create_inbox 'v1', indexlevel => 'medium', tmpdir => "$tmpdir/v1",
+               pre_cb => sub {
+                       my ($inboxdir) = @_;
+                       PublicInbox::Import::init_bare($inboxdir);
+                       xsys_e(qw(git) , "--git-dir=$inboxdir",
+                               qw(config core.sharedRepository 0644));
+               }, sub {
+       my ($im, $ibx) = @_;
+       $im->done;
+       umask(077) or BAIL_OUT "umask: $!";
+       $_[0] = $im = $ibx->importer(0);
+       my $eml = PublicInbox::Eml->new(<<'EOF');
 From: a@example.com
 To: b@example.com
 Subject: this is a subject
@@ -35,16 +30,11 @@ Date: Fri, 02 Oct 1993 00:00:00 +0000
 
 hello world
 EOF
-
-ok($im->add($mime), 'added one message');
-ok($im->remove($mime), 'remove message');
-ok($im->add($mime), 'added message again');
-$im->done;
-for (1..2) {
-       eval { PublicInbox::SearchIdx->new($ibx, 1)->index_sync; };
-       is($@, '', 'no errors syncing');
-}
-
+       $im->add($eml) or BAIL_OUT '->add';
+       $im->remove($eml) or BAIL_OUT '->remove';
+       $im->add($eml) or BAIL_OUT '->add';
+};
+umask(077) or BAIL_OUT "umask: $!";
 is(((stat("$ibx->{inboxdir}/public-inbox"))[2]) & 07777, 0755,
        'sharedRepository respected for v1');
 is(((stat("$ibx->{inboxdir}/public-inbox/msgmap.sqlite3"))[2]) & 07777, 0644,
@@ -110,7 +100,7 @@ foreach (@xdir) {
        is($st[2] & 07777, -f _ ? 0444 : 0755,
                'sharedRepository respected after v2 compact');
 }
-my $msgs = $ibx->recent({limit => 1000});
+my $msgs = $ibx->over->recent({limit => 1000});
 is($msgs->[0]->{mid}, 'a-mid@b', 'message exists in history');
 is(scalar @$msgs, 1, 'only one message in history');