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-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 DC31C1FD7D for ; Mon, 15 Mar 2021 11:58:32 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 29/35] t/psgi_search: use create_inbox Date: Mon, 15 Mar 2021 12:58:20 +0100 Message-Id: <20210315115826.17591-30-e@80x24.org> In-Reply-To: <20210315115826.17591-1-e@80x24.org> References: <20210315115826.17591-1-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: --- t/psgi_search.t | 37 ++++++++++++------------------------- 1 file changed, 12 insertions(+), 25 deletions(-) diff --git a/t/psgi_search.t b/t/psgi_search.t index 9facdf3d..d59e439b 100644 --- a/t/psgi_search.t +++ b/t/psgi_search.t @@ -1,15 +1,14 @@ +#!perl -w # Copyright (C) 2017-2021 all contributors # License: AGPL-3.0+ use strict; -use warnings; -use Test::More; +use v5.10.1; +use PublicInbox::TestCommon; use IO::Uncompress::Gunzip qw(gunzip); use PublicInbox::Eml; use PublicInbox::Config; use PublicInbox::Inbox; -use PublicInbox::InboxWritable; use bytes (); # only for bytes::length -use PublicInbox::TestCommon; my @mods = qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test URI::Escape Plack::Builder); require_mods(@mods); @@ -19,58 +18,46 @@ use_ok 'PublicInbox::SearchIdx'; my ($tmpdir, $for_destroy) = tmpdir(); local $ENV{TZ} = 'UTC'; -my $ibx = PublicInbox::Inbox->new({ - inboxdir => $tmpdir, - address => 'git@vger.kernel.org', - name => 'test', -}); -$ibx = PublicInbox::InboxWritable->new($ibx); -$ibx->init_inbox(1); -my $im = $ibx->importer(0); my $digits = '10010260936330'; my $ua = 'Pine.LNX.4.10'; my $mid = "$ua.$digits.2460-100000\@penguin.transmeta.com"; - -# n.b. these headers are not properly RFC2047-encoded -my $mime = PublicInbox::Eml->new(< 'full', tmpdir => "$tmpdir/1", sub { + my ($im) = @_; + # n.b. these headers are not properly RFC2047-encoded + $im->add(PublicInbox::Eml->new(< From: Ævar Arnfjörð Bjarmason To: git\@vger.kernel.org EOF -$im->add($mime); -$im->add(PublicInbox::Eml->new(<<"")); + $im->add(PublicInbox::Eml->new(<<"")) or BAIL_OUT; Message-ID: From: replier In-Reply-To: <$mid> Subject: mismatch -$mime = PublicInbox::Eml->new(<<'EOF'); + $im->add(PublicInbox::Eml->new(<<'EOF')) or BAIL_OUT; Subject: Message-ID: From: blank subject To: git@vger.kernel.org EOF -$im->add($mime); -$mime = PublicInbox::Eml->new(<<'EOF'); + $im->add(PublicInbox::Eml->new(<<'EOF')) or BAIL_OUT; Message-ID: From: no subject at all To: git@vger.kernel.org EOF -$im->add($mime); - -$im->done; -PublicInbox::SearchIdx->new($ibx, 1)->index_sync; +}; my $cfgpfx = "publicinbox.test"; my $cfg = PublicInbox::Config->new(\<{inboxdir} EOF my $www = PublicInbox::WWW->new($cfg); test_psgi(sub { $www->call(@_) }, sub {