From d04b7caec026edba9e7e70cfac3256097cdd476f Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 15 Mar 2021 12:57:53 +0100 Subject: [PATCH] t/lei_xsearch: use create_inbox Less code and noticeably faster when TMPDIR is on an SSD --- t/lei_xsearch.t | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/t/lei_xsearch.t b/t/lei_xsearch.t index 5bfbcfe6..a1ab3ec8 100644 --- a/t/lei_xsearch.t +++ b/t/lei_xsearch.t @@ -3,7 +3,6 @@ # License: AGPL-3.0+ use strict; use v5.10.1; -use Test::More; use List::Util qw(shuffle max); use PublicInbox::TestCommon; use PublicInbox::Eml; @@ -16,17 +15,11 @@ my ($home, $for_destroy) = tmpdir(); my @ibx; for my $V (1..2) { for my $i (3..6) { - my $ibx = PublicInbox::InboxWritable->new({ - inboxdir => "$home/v$V-$i", - name => "test-v$V-$i", - version => $V, - indexlevel => 'medium', - -primary_address => "v$V-$i\@example.com", - }, { nproc => int(rand(8)) + 1 }); - push @ibx, $ibx; - my $im = $ibx->importer(0); - for my $j (0..9) { - my $eml = PublicInbox::Eml->new(< 'full', + version => $V, sub { + my ($im, $ibx) = @_; + for my $j (0..9) { + my $eml = PublicInbox::Eml->new(<{-primary_address} Date: Fri, 02 Oct 1993 0$V:0$i:0$j +0000 @@ -34,14 +27,14 @@ Subject: v${V}i${i}j$j Message-ID: ${V}er ${i}on j$j -EOF - $im->add($eml); - } - $im->done; +EOM + $im->add($eml) or BAIL_OUT '->add'; + } + }); # create_inbox } } -my $first = shift @ibx; is($first->{name}, 'test-v1-3', 'first plucked'); -my $last = pop @ibx; is($last->{name}, 'test-v2-6', 'last plucked'); +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); -- 2.44.0