]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/xcpdb-reshard.t
tests: move t/common.perl to PublicInbox::TestCommon
[public-inbox.git] / t / xcpdb-reshard.t
index 88e6c3dc3494db9c8d86421d235b154ac1ddf49f..0d78d2b200b3e58136a9d5e997f4de788c114f42 100644 (file)
@@ -8,9 +8,8 @@ foreach my $mod (@mods) {
        eval "require $mod";
        plan skip_all => "missing $mod for $0" if $@;
 };
-require './t/common.perl';
+use PublicInbox::TestCommon;
 require_git('2.6');
-use File::Temp qw/tempdir/;
 use PublicInbox::MIME;
 use PublicInbox::InboxWritable;
 
@@ -25,7 +24,8 @@ my $mime = PublicInbox::MIME->create(
 );
 
 my ($this) = (split('/', $0))[-1];
-my $tmpdir = tempdir($this.'-XXXXXX', TMPDIR => 1, CLEANUP => 1);
+my ($tmpdir, $for_destroy) = tmpdir();
+local $ENV{PI_CONFIG} = "$tmpdir/config";
 my $ibx = PublicInbox::Inbox->new({
        inboxdir => "$tmpdir/testbox",
        name => $this,
@@ -50,7 +50,9 @@ my %nums = map {; "$_->{num}" => 1 } @$orig;
 # ensure we can go up or down in shards, or stay the same:
 for my $R (qw(2 4 1 3 3)) {
        delete $ibx->{search}; # release old handles
-       ok(run_script([@xcpdb, "-R$R", $ibx->{inboxdir}]), "xcpdb -R$R");
+       my $cmd = [@xcpdb, "-R$R", $ibx->{inboxdir}];
+       push @$cmd, '--compact' if $R == 1;
+       ok(run_script($cmd), "xcpdb -R$R");
        my @new_shards = grep(m!/\d+\z!, glob("$ibx->{inboxdir}/xap*/*"));
        is(scalar(@new_shards), $R, 'resharded to two shards');
        my $msgs = $ibx->search->query('s:this');