X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fmulti-mid.t;h=4a5b8c328507241672b16843baec13f3351756d0;hb=2f8d15b1170b137a0512a4f3163b236a5dcbf0b8;hp=5afb96933209d3e5f7e306f073a4764e9ba26f4a;hpb=4bebfa0c80ad7f4596a7dca98b39121470a42af0;p=public-inbox.git diff --git a/t/multi-mid.t b/t/multi-mid.t index 5afb9693..4a5b8c32 100644 --- a/t/multi-mid.t +++ b/t/multi-mid.t @@ -1,17 +1,16 @@ -# Copyright (C) 2020 all contributors +# Copyright (C) 2020-2021 all contributors # License: AGPL-3.0+ use strict; use Test::More; -use PublicInbox::MIME; +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::MIME->new(<new(< Message-ID: From: a\@example.com @@ -20,7 +19,7 @@ Subject: bad EOF -my $good = PublicInbox::MIME->new(<new(< From: b\@example.com To: $addr @@ -28,34 +27,25 @@ Subject: good EOF +my $nr = 0; for my $order ([$bad, $good], [$good, $bad]) { - my $before; my ($tmpdir, $for_destroy) = tmpdir(); - my $ibx = PublicInbox::InboxWritable->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"; @@ -70,7 +60,7 @@ for my $order ([$bad, $good], [$good, $bad]) { $cmd = [ '-init', '-Lbasic', '-V2', 'v2c', "$tmpdir/v2-clone", 'http://example.com/v2c', 'v2c@example.com' ]; ok(run_script($cmd, $env), 'init clone'); - $cmd = [ '-index', "$tmpdir/v2-clone" ]; + $cmd = [ qw(-index -j0), "$tmpdir/v2-clone" ]; sleep($delay) if $delay; ok(run_script($cmd, $env), 'index the clone'); $ibx->cleanup;