X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Faltid.t;h=670a39633755149c3260bb5c3b7470e1fabfeb3e;hb=0283273a14e1871955f6a9132f4f3f7884ec8a3f;hp=0f3b86c12fee11f6780e5f0f378a15405450b909;hpb=4048e3c000ee6659a5754dea697a1b77a8022bbd;p=public-inbox.git diff --git a/t/altid.t b/t/altid.t index 0f3b86c1..670a3963 100644 --- a/t/altid.t +++ b/t/altid.t @@ -1,22 +1,20 @@ -# Copyright (C) 2016-2018 all contributors +# Copyright (C) 2016-2020 all contributors # License: AGPL-3.0+ use strict; use warnings; use Test::More; -use File::Temp qw/tempdir/; -foreach my $mod (qw(DBD::SQLite Search::Xapian)) { - eval "require $mod"; - plan skip_all => "$mod missing for altid.t" if $@; -} - +use PublicInbox::TestCommon; +use PublicInbox::Eml; +require_mods(qw(DBD::SQLite Search::Xapian)); use_ok 'PublicInbox::Msgmap'; use_ok 'PublicInbox::SearchIdx'; use_ok 'PublicInbox::Import'; use_ok 'PublicInbox::Inbox'; -my $tmpdir = tempdir('pi-altid-XXXXXX', TMPDIR => 1, CLEANUP => 1); +my ($tmpdir, $for_destroy) = tmpdir(); my $git_dir = "$tmpdir/a.git"; my $alt_file = "$tmpdir/another-nntp.sqlite3"; my $altid = [ "serial:gmane:file=$alt_file" ]; +my $ibx; { my $mm = PublicInbox::Msgmap->new_file($alt_file, 1); @@ -26,36 +24,33 @@ my $altid = [ "serial:gmane:file=$alt_file" ]; } { - is(system(qw(git init -q --bare), $git_dir), 0, 'git init ok'); my $git = PublicInbox::Git->new($git_dir); my $im = PublicInbox::Import->new($git, 'testbox', 'test@example'); - $im->add(Email::MIME->create( - header => [ - From => 'a@example.com', - To => 'b@example.com', - 'Content-Type' => 'text/plain', - Subject => 'boo!', - 'Message-ID' => '', - ], - body => "hello world gmane:666\n", - )); + $im->init_bare; + $im->add(PublicInbox::Eml->new(<<'EOF')); +From: a@example.com +To: b@example.com +Subject: boo! +Message-ID: + +hello world gmane:666 +EOF $im->done; } { - my $inbox = PublicInbox::Inbox->new({mainrepo=>$git_dir}); - $inbox->{altid} = $altid; - my $rw = PublicInbox::SearchIdx->new($inbox, 1); + $ibx = PublicInbox::Inbox->new({inboxdir => $git_dir}); + $ibx->{altid} = $altid; + my $rw = PublicInbox::SearchIdx->new($ibx, 1); $rw->index_sync; } { - my $ro = PublicInbox::Search->new($git_dir, $altid); - my $res = $ro->query("gmane:1234"); - is($res->{total}, 1, 'got one match'); - is($res->{msgs}->[0]->mid, 'a@example.com'); + my $ro = PublicInbox::Search->new($ibx); + my $msgs = $ro->query("gmane:1234"); + is_deeply([map { $_->mid } @$msgs], ['a@example.com'], 'got one match'); - $res = $ro->query("gmane:666"); - is($res->{total}, 0, 'body did NOT match'); + $msgs = $ro->query("gmane:666"); + is_deeply([], $msgs, 'body did NOT match'); }; {