From a7187edabd3335d23a390410466bf6146b48b1a9 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 15 Mar 2021 12:58:19 +0100 Subject: [PATCH] t/multi-mid: use create_inbox --- t/multi-mid.t | 34 ++++++++++++---------------------- 1 file changed, 12 insertions(+), 22 deletions(-) diff --git a/t/multi-mid.t b/t/multi-mid.t index e9c3dd8c..4a5b8c32 100644 --- a/t/multi-mid.t +++ b/t/multi-mid.t @@ -4,11 +4,10 @@ use strict; use Test::More; use PublicInbox::Eml; use PublicInbox::TestCommon; -use PublicInbox::InboxWritable; require_git(2.6); require_mods(qw(DBD::SQLite)); require PublicInbox::SearchIdx; -my $delay = $ENV{TEST_DELAY_CONVERT}; +my $delay = $ENV{TEST_DELAY_CONVERT} // ''; my $addr = 'test@example.com'; my $bad = PublicInbox::Eml->new(<new({ - inboxdir => "$tmpdir/v1", - name => 'test-v1', - indexlevel => 'basic', - -primary_address => $addr, - }, my $creat_opt = {}); - my @old; - if ('setup v1 inbox') { - my $im = $ibx->importer(0); - for (@$order) { - ok($im->add($_), 'added '.$_->header('Subject')); + my $ibx = create_inbox "test$delay.$nr", indexlevel => 'basic', sub { + my ($im) = @_; + for my $eml (@$order) { + $im->add($eml) or BAIL_OUT; sleep($delay) if $delay; } - $im->done; - my $s = PublicInbox::SearchIdx->new($ibx, 1); - $s->index_sync; - $before = [ $ibx->mm->minmax ]; - @old = ($ibx->over->get_art(1), $ibx->over->get_art(2)); - $ibx->cleanup; - } + }; + ++$nr; + my $before = [ $ibx->mm->minmax ]; + my @old = ($ibx->over->get_art(1), $ibx->over->get_art(2)); + $ibx->cleanup; my $rdr = { 1 => \(my $out = ''), 2 => \(my $err = '') }; my $cmd = [ '-convert', $ibx->{inboxdir}, "$tmpdir/v2" ]; my $env = { PI_DIR => "$tmpdir/.public-inbox" }; ok(run_script($cmd, $env, $rdr), 'convert to v2'); - $err =~ s!\AW: $tmpdir/v1 not configured[^\n]+\n!!s; + $err =~ s!\AW: \Q$ibx->{inboxdir}\E not configured[^\n]+\n!!s; is($err, '', 'no errors or warnings from -convert'); $ibx->{version} = 2; $ibx->{inboxdir} = "$tmpdir/v2"; -- 2.48.1