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 01B5C1FB0E for ; Mon, 15 Mar 2021 11:58:28 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 05/35] t/www_altid: use create_inbox Date: Mon, 15 Mar 2021 12:57:56 +0100 Message-Id: <20210315115826.17591-6-e@80x24.org> In-Reply-To: <20210315115826.17591-1-e@80x24.org> References: <20210315115826.17591-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This barely saves any time due to sqlite3(1) fsync, but does save some lines of code. --- t/www_altid.t | 47 +++++++++++++++++++---------------------------- 1 file changed, 19 insertions(+), 28 deletions(-) diff --git a/t/www_altid.t b/t/www_altid.t index 784acc8b..7c2b6b21 100644 --- a/t/www_altid.t +++ b/t/www_altid.t @@ -1,10 +1,9 @@ +#!perl -w # Copyright (C) 2020-2021 all contributors # License: AGPL-3.0+ use strict; -use Test::More; +use v5.10.1; use PublicInbox::TestCommon; -use PublicInbox::Inbox; -use PublicInbox::InboxWritable; use PublicInbox::Config; use PublicInbox::Spawn qw(which spawn); which('sqlite3') or plan skip_all => 'sqlite3 binary missing'; @@ -14,43 +13,35 @@ use_ok($_) for qw(Plack::Test HTTP::Request::Common); require_ok 'PublicInbox::Msgmap'; require_ok 'PublicInbox::AltId'; require_ok 'PublicInbox::WWW'; -my ($inboxdir, $for_destroy) = tmpdir(); +my ($tmpdir, $for_destroy) = tmpdir(); my $aid = 'xyz'; -my $spec = "serial:$aid:file=blah.sqlite3"; -if ('setup') { - my $opts = { - inboxdir => $inboxdir, - name => 'test', - -primary_address => 'test@example.com', - }; - my $ibx = PublicInbox::Inbox->new($opts); - $ibx = PublicInbox::InboxWritable->new($ibx, 1); - my $im = $ibx->importer(0); - my $mime = PublicInbox::Eml->new(<<'EOF'); +my $cfgpath; +my $ibx = create_inbox 'test', indexlevel => 'basic', sub { + my ($im, $ibx) = @_; + $im->add(PublicInbox::Eml->new(<<'EOF')) or BAIL_OUT; From: a@example.com Message-Id: EOF - $im->add($mime); - $im->done; - mkdir "$inboxdir/public-inbox" or die; + # $im->done; + my $spec = "serial:$aid:file=blah.sqlite3"; my $altid = PublicInbox::AltId->new($ibx, $spec, 1); $altid->mm_alt->mid_set(1, 'a@example.com'); -} - -my $cfgpath = "$inboxdir/cfg"; -open my $fh, '>', $cfgpath or die; -print $fh <', $cfgpath or BAIL_OUT "open $cfgpath: $!"; + print $fh <{inboxdir} + address = $ibx->{-primary_address} altid = $spec url = http://example.com/test EOF -close $fh or die; + close $fh or BAIL_OUT $!; +}; +$cfgpath //= "$ibx->{inboxdir}/cfg"; my $cfg = PublicInbox::Config->new($cfgpath); my $www = PublicInbox::WWW->new($cfg); -my $cmpfile = "$inboxdir/cmp.sqlite3"; +my $cmpfile = "$tmpdir/cmp.sqlite3"; my $client = sub { my ($cb) = @_; my $res = $cb->(POST("/test/$aid.sql.gz")); @@ -73,7 +64,7 @@ SKIP: { require_mods(qw(Plack::Test::ExternalServer), 4); my $env = { PI_CONFIG => $cfgpath }; my $sock = tcp_server() or die; - my ($out, $err) = map { "$inboxdir/std$_.log" } qw(out err); + my ($out, $err) = map { "$tmpdir/std$_.log" } qw(out err); my $cmd = [ qw(-httpd -W0), "--stdout=$out", "--stderr=$err" ]; my $td = start_script($cmd, $env, { 3 => $sock }); my ($h, $p) = tcp_host_port($sock);