From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 360A51F46D for ; Sun, 24 Nov 2019 00:22:39 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 04/17] t/xcpdb-reshard: test xcpdb --compact Date: Sun, 24 Nov 2019 00:22:24 +0000 Message-Id: <20191124002237.15713-5-e@80x24.org> In-Reply-To: <20191124002237.15713-1-e@80x24.org> References: <20191124002237.15713-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We did not have a test for this, and need to guard against regressions when changing Xapcmd to use File::Temp->newdir in future commits. --- t/xcpdb-reshard.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/xcpdb-reshard.t b/t/xcpdb-reshard.t index 88e6c3dc..9335843d 100644 --- a/t/xcpdb-reshard.t +++ b/t/xcpdb-reshard.t @@ -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');