]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/v1reindex.t
www: drop --subject from "git send-email" instructions
[public-inbox.git] / t / v1reindex.t
index 8cb751881ca4e93d91f26811d4f1cac74aecf4cb..f593b3239586e0a013f155451dc9e67138c9b874 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2018-2020 all contributors <meta@public-inbox.org>
+# Copyright (C) 2018-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
@@ -18,6 +18,7 @@ my $ibx_config = {
        name => 'test-v1reindex',
        -primary_address => 'test@example.com',
        indexlevel => 'full',
+       -no_fsync => 1,
 };
 my $mime = PublicInbox::Eml->new(<<'EOF');
 From: a@example.com
@@ -178,7 +179,7 @@ ok(!-d $xap, 'Xapian directories removed again');
        delete $ibx->{mm};
        is_deeply([ $ibx->mm->minmax ], $minmax, 'minmax unchanged');
        is($ibx->mm->num_highwater, 10, 'num_highwater as expected');
-       my $mset = $ibx->search->query('hello world', {mset=>1});
+       my $mset = $ibx->search->mset('hello world');
        isnt($mset->size, 0, 'got Xapian search results');
 
        my ($min, $max) = $ibx->mm->minmax;
@@ -221,10 +222,10 @@ ok(!-d $xap, 'Xapian directories removed again');
        $config{indexlevel} = 'medium';
        my $ibx = PublicInbox::Inbox->new(\%config);
        my $rw = PublicInbox::SearchIdx->new($ibx, 1);
-       eval { $rw->index_sync };
+       eval { $rw->index_sync({reindex => 1}) };
        is($@, '', 'no error from indexing');
        is_deeply(\@warn, [], 'no warnings');
-       my $mset = $ibx->search->reopen->query('hello world', {mset=>1});
+       my $mset = $ibx->search->reopen->mset('hello world');
        isnt($mset->size, 0, 'search OK after basic -> medium');
 
        is($ibx->mm->num_highwater, 10, 'num_highwater as expected');
@@ -434,7 +435,7 @@ ok(!-d $xap, 'Xapian directories removed again');
        my $ibx = PublicInbox::Inbox->new({ %$ibx_config });
        my $f = $ibx->over->{dbh}->sqlite_db_filename;
        my $over = PublicInbox::OverIdx->new($f);
-       my $dbh = $over->connect;
+       my $dbh = $over->dbh;
        my $non_ghost_tids = sub {
                $dbh->selectall_arrayref(<<'');
 SELECT tid FROM over WHERE num > 0 ORDER BY tid ASC