]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/mda.t
treewide: run update-copyrights from gnulib for 2019
[public-inbox.git] / t / mda.t
diff --git a/t/mda.t b/t/mda.t
index 3e03a25ac1295345ce676513faa00b75375f11fd..3bdccb4995e27394759eab1918d1a0c82c9d623f 100644 (file)
--- a/t/mda.t
+++ b/t/mda.t
@@ -1,19 +1,14 @@
-# Copyright (C) 2014-2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2014-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
 use Test::More;
 use Email::MIME;
-use File::Temp qw/tempdir/;
 use Cwd qw(getcwd);
 use PublicInbox::MID qw(mid2path);
 use PublicInbox::Git;
-eval { require IPC::Run };
-plan skip_all => "missing IPC::Run for t/mda.t" if $@;
-
-my $mda = "blib/script/public-inbox-mda";
-my $learn = "blib/script/public-inbox-learn";
-my $tmpdir = tempdir('pi-mda-XXXXXX', TMPDIR => 1, CLEANUP => 1);
+use PublicInbox::TestCommon;
+my ($tmpdir, $for_destroy) = tmpdir();
 my $home = "$tmpdir/pi-home";
 my $pi_home = "$home/.public-inbox";
 my $pi_config = "$pi_home/config";
@@ -28,24 +23,39 @@ my $faildir = "$home/faildir/";
 my $mime;
 my $git = PublicInbox::Git->new($maindir);
 
+my $fail_bad_header = sub ($$$) {
+       my ($good_rev, $msg, $in) = @_;
+       my @f = glob("$faildir/*/*");
+       unlink @f if @f;
+       my ($out, $err) = ("", "");
+       my $opt = { 0 => \$in, 1 => \$out, 2 => \$err };
+       local $ENV{PATH} = $main_path;
+       ok(run_script(['-mda'], undef, $opt),
+               "no error on undeliverable ($msg)");
+       my $rev = $git->qx(qw(rev-list HEAD));
+       chomp $rev;
+       is($rev, $good_rev, "bad revision not commited ($msg)");
+       @f = glob("$faildir/*/*");
+       is(scalar @f, 1, "faildir written to");
+       [ $in, $out, $err ];
+};
+
 {
        ok(-x "$main_bin/spamc",
                "spamc ham mock found (run in top of source tree");
        ok(-x "$fail_bin/spamc",
                "spamc mock found (run in top of source tree");
-       ok(-x $mda, "$mda is executable");
        is(1, mkdir($home, 0755), "setup ~/ for testing");
        is(1, mkdir($pi_home, 0755), "setup ~/.public-inbox");
        is(0, system(qw(git init -q --bare), $maindir), "git init (main)");
 
-       my %cfg = (
-               "$cfgpfx.address" => $addr,
-               "$cfgpfx.inboxdir" => $maindir,
-       );
-       while (my ($k,$v) = each %cfg) {
-               is(0, system(qw(git config --file), $pi_config, $k, $v),
-                       "setup $k");
-       }
+       open my $fh, '>>', $pi_config or die;
+       print $fh <<EOF or die;
+[publicinbox "test"]
+       address = $addr
+       inboxdir = $maindir
+EOF
+       close $fh or die;
 }
 
 local $ENV{GIT_COMMITTER_NAME} = eval {
@@ -92,7 +102,7 @@ EOF
        # ensure successful message delivery
        {
                local $ENV{PATH} = $main_path;
-               IPC::Run::run([$mda], \$in);
+               ok(run_script(['-mda'], undef, { 0 => \$in }));
                my $rev = $git->qx(qw(rev-list HEAD));
                like($rev, qr/\A[a-f0-9]{40}/, "good revision committed");
                chomp $rev;
@@ -109,21 +119,21 @@ EOF
                my @prev = <$faildir/new/*>;
                is(scalar @prev, 0 , "nothing in PI_EMERGENCY before");
                local $ENV{PATH} = $fail_path;
-               IPC::Run::run([$mda], \$in);
+               ok(run_script(['-mda'], undef, { 0 => \$in }));
                my @revs = $git->qx(qw(rev-list HEAD));
                is(scalar @revs, 1, "bad revision not committed");
                my @new = <$faildir/new/*>;
                is(scalar @new, 1, "PI_EMERGENCY is written to");
        }
 
-       fail_bad_header($good_rev, "bad recipient", <<"");
+       $fail_bad_header->($good_rev, "bad recipient", <<"");
 From: Me <me\@example.com>
 To: You <you\@example.com>
 Message-Id: <bad-recipient\@example.com>
 Subject: hihi
 Date: Thu, 01 Jan 1970 00:00:00 +0000
 
-       my $fail = fail_bad_header($good_rev, "duplicate Message-ID", <<"");
+       my $fail = $fail_bad_header->($good_rev, "duplicate Message-ID", <<"");
 From: Me <me\@example.com>
 To: You <you\@example.com>
 Cc: $addr
@@ -133,26 +143,26 @@ Date: Thu, 01 Jan 1970 00:00:00 +0000
 
        like($fail->[2], qr/CONFLICT/, "duplicate Message-ID message");
 
-       fail_bad_header($good_rev, "missing From:", <<"");
+       $fail_bad_header->($good_rev, "missing From:", <<"");
 To: $addr
 Message-ID: <missing-from\@example.com>
 Subject: hihi
 Date: Thu, 01 Jan 1970 00:00:00 +0000
 
-       fail_bad_header($good_rev, "short subject:", <<"");
+       $fail_bad_header->($good_rev, "short subject:", <<"");
 To: $addr
 From: cat\@example.com
 Message-ID: <short-subject\@example.com>
 Subject: a
 Date: Thu, 01 Jan 1970 00:00:00 +0000
 
-       fail_bad_header($good_rev, "no date", <<"");
+       $fail_bad_header->($good_rev, "no date", <<"");
 To: $addr
 From: u\@example.com
 Message-ID: <no-date\@example.com>
 Subject: hihi
 
-       fail_bad_header($good_rev, "bad date", <<"");
+       $fail_bad_header->($good_rev, "bad date", <<"");
 To: $addr
 From: u\@example.com
 Message-ID: <bad-date\@example.com>
@@ -181,7 +191,7 @@ EOF
 
        {
                # deliver the spam message, first
-               IPC::Run::run([$mda], \$in);
+               ok(run_script(['-mda'], undef, { 0 => \$in }));
                my $path = mid2path($mid);
                my $msg = $git->cat_file("HEAD:$path");
                like($$msg, qr/\Q$mid\E/, "message delivered");
@@ -189,11 +199,12 @@ EOF
                # now train it
                local $ENV{GIT_AUTHOR_EMAIL} = 'trainer@example.com';
                local $ENV{GIT_COMMITTER_EMAIL} = 'trainer@example.com';
-               local $ENV{GIT_COMMITTER_NAME} = undef;
-               IPC::Run::run([$learn, "spam"], $msg);
-               is($?, 0, "no failure from learning spam");
-               IPC::Run::run([$learn, "spam"], $msg);
-               is($?, 0, "no failure from learning spam idempotently");
+               local $ENV{GIT_COMMITTER_NAME};
+               delete $ENV{GIT_COMMITTER_NAME};
+               ok(run_script(['-learn', 'spam'], undef, { 0 => $msg }),
+                       "no failure from learning spam");
+               ok(run_script(['-learn', 'spam'], undef, { 0 => $msg }),
+                       "no failure from learning spam idempotently");
        }
 }
 
@@ -220,13 +231,13 @@ EOF
        local $ENV{GIT_AUTHOR_EMAIL} = 'trainer@example.com';
        local $ENV{GIT_COMMITTER_EMAIL} = 'trainer@example.com';
 
-       IPC::Run::run([$learn, "ham"], \$in);
-       is($?, 0, "learned ham without failure");
+       ok(run_script(['-learn', 'ham'], undef, { 0 => \$in }),
+               "learned ham without failure");
        my $path = mid2path($mid);
        my $msg = $git->cat_file("HEAD:$path");
        like($$msg, qr/\Q$mid\E/, "ham message delivered");
-       IPC::Run::run([$learn, "ham"], \$in);
-       is($?, 0, "learned ham idempotently ");
+       ok(run_script(['-learn', 'ham'], undef, { 0 => \$in }),
+               "learned ham idempotently ");
 
        # ensure trained email is filtered, too
        my $html_body = "<html><body>hi</body></html>";
@@ -260,8 +271,8 @@ EOF
 
        {
                $in = $mime->as_string;
-               IPC::Run::run([$learn, "ham"], \$in);
-               is($?, 0, "learned ham without failure");
+               ok(run_script(['-learn', 'ham'], undef, { 0 => \$in }),
+                       "learned ham without failure");
                my $path = mid2path($mid);
                $msg = $git->cat_file("HEAD:$path");
                like($$msg, qr/<\Q$mid\E>/, "ham message delivered");
@@ -291,8 +302,8 @@ EOF
        system(qw(git config --file), $pi_config, "$cfgpfx.listid", $list_id);
        $? == 0 or die "failed to set listid $?";
        my $in = $simple->as_string;
-       IPC::Run::run([$mda], \$in);
-       is($?, 0, 'mda OK with List-Id match');
+       ok(run_script(['-mda'], undef, { 0 => \$in }),
+               'mda OK with List-Id match');
        my $path = mid2path($mid);
        my $msg = $git->cat_file("HEAD:$path");
        like($$msg, qr/\Q$list_id\E/, 'delivered message w/ List-ID matches');
@@ -306,8 +317,9 @@ this message would not be accepted without --no-precheck
 EOF
        $in = $simple->as_string;
        my ($out, $err) = ('', '');
-       IPC::Run::run([$mda, '--no-precheck'], \$in, \$out, \$err);
-       is($?, 0, 'mda OK with List-Id match and --no-precheck');
+       my $rdr = { 0 => \$in, 1 => \$out, 2 => \$err };
+       ok(run_script(['-mda', '--no-precheck'], undef, $rdr),
+               'mda OK with List-Id match and --no-precheck');
        my $cur = $git->qx(qw(diff HEAD~1..HEAD));
        like($cur, qr/this message would not be accepted without --no-precheck/,
                '--no-precheck delivered message anyways');
@@ -324,8 +336,8 @@ Date: Fri, 02 Oct 1993 00:00:00 +0000
 
 EOF
        ($out, $err) = ('', '');
-       IPC::Run::run([$mda], \$in, \$out, \$err);
-       is($?, 0, 'mda OK with multiple List-Id matches');
+       ok(run_script(['-mda'], undef, $rdr),
+               'mda OK with multiple List-Id matches');
        $cur = $git->qx(qw(diff HEAD~1..HEAD));
        like($cur, qr/Message-ID: <2lids\@example>/,
                'multi List-ID match delivered');
@@ -333,18 +345,3 @@ EOF
 }
 
 done_testing();
-
-sub fail_bad_header {
-       my ($good_rev, $msg, $in) = @_;
-       my @f = glob("$faildir/*/*");
-       unlink @f if @f;
-       my ($out, $err) = ("", "");
-       local $ENV{PATH} = $main_path;
-       IPC::Run::run([$mda], \$in, \$out, \$err);
-       my $rev = $git->qx(qw(rev-list HEAD));
-       chomp $rev;
-       is($rev, $good_rev, "bad revision not commited ($msg)");
-       @f = glob("$faildir/*/*");
-       is(scalar @f, 1, "faildir written to");
-       [ $in, $out, $err ];
-}