]> Sergey Matveev's repositories - public-inbox.git/commitdiff
remove dependency on IPC::Run
authorEric Wong <e@80x24.org>
Fri, 17 Jun 2016 02:44:59 +0000 (02:44 +0000)
committerEric Wong <e@80x24.org>
Fri, 17 Jun 2016 02:45:24 +0000 (02:45 +0000)
We no longer depend on it for the core code, and tests
are optional for users.  Hopefully this makes this
easier-to-install.

INSTALL
Makefile.PL
t/cgi.t
t/mda.t

diff --git a/INSTALL b/INSTALL
index f2c11d86f67b9afb7d77707aaa91513e07e1a7a2..e7d4b752224b1d7d206a0ca51e859553b182a63c 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -30,7 +30,6 @@ Requirements (server MDA)
   - Email::MIME                libemail-mime-perl
   - Email::MIME::ContentType   libemail-mime-contenttype-perl
   - Encode::MIME::Header       perl
-  - IPC::Run                   libipc-run-perl
 
 Optional modules:
 
index 0cba59d2ec5239bf657f3549540b7d319346db12..171712a709597e4fc826b760d87bef99c801e65f 100644 (file)
@@ -22,7 +22,6 @@ WriteMakefile(
                'Email::MIME::ContentType' => 0,
                'Email::Simple' => 0,
                'Encode::MIME::Header' => 0,
-               'IPC::Run' => 0,
                'Mail::Thread' => '2.5', # 2.5+ needed for Email::Simple compat
                'Plack' => 0,
                'URI::Escape' => 0,
diff --git a/t/cgi.t b/t/cgi.t
index 9d2d87fefff6bc508646f8debe078e4909dad4f7..720925aed57e4a4886c9a48ac58df3ca945c66f5 100644 (file)
--- a/t/cgi.t
+++ b/t/cgi.t
@@ -8,7 +8,8 @@ use Test::More;
 use Email::MIME;
 use File::Temp qw/tempdir/;
 use Cwd;
-use IPC::Run qw/run/;
+eval { require IPC::Run };
+plan skip_all => "missing IPC::Run for t/cgi.t" if $@;
 
 use constant CGI => "blib/script/public-inbox.cgi";
 my $index = "blib/script/public-inbox-index";
@@ -238,7 +239,7 @@ done_testing();
 sub run_with_env {
        my ($env, @args) = @_;
        my $init = sub { foreach my $k (keys %$env) { $ENV{$k} = $env->{$k} } };
-       run(@args, init => $init);
+       IPC::Run::run(@args, init => $init);
 }
 
 sub cgi_run {
diff --git a/t/mda.t b/t/mda.t
index 3456699a3ad04144b4fcccc8f0a9d9209e0c2b4f..f3c5164b44b3ef36e556f752fb71e780f25f61f6 100644 (file)
--- a/t/mda.t
+++ b/t/mda.t
@@ -6,8 +6,9 @@ use Test::More;
 use Email::MIME;
 use File::Temp qw/tempdir/;
 use Cwd;
-use IPC::Run qw(run);
 use PublicInbox::MID qw(mid2path);
+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";
@@ -89,7 +90,7 @@ EOF
        # ensure successful message delivery
        {
                local $ENV{PATH} = $main_path;
-               run([$mda], \$in);
+               IPC::Run::run([$mda], \$in);
                my $rev = `git --git-dir=$maindir rev-list HEAD`;
                like($rev, qr/\A[a-f0-9]{40}/, "good revision committed");
                chomp $rev;
@@ -106,7 +107,7 @@ EOF
                my @prev = <$faildir/new/*>;
                is(scalar @prev, 0 , "nothing in PI_EMERGENCY before");
                local $ENV{PATH} = $fail_path;
-               run([$mda], \$in);
+               IPC::Run::run([$mda], \$in);
                my @revs = `git --git-dir=$maindir rev-list HEAD`;
                is(scalar @revs, 1, "bad revision not committed");
                my @new = <$faildir/new/*>;
@@ -178,7 +179,7 @@ EOF
 
        {
                # deliver the spam message, first
-               run([$mda], \$in);
+               IPC::Run::run([$mda], \$in);
                my $path = mid2path($mid);
                my $msg = `git --git-dir=$maindir cat-file blob HEAD:$path`;
                like($msg, qr/\Q$mid\E/, "message delivered");
@@ -186,9 +187,9 @@ EOF
                # now train it
                local $ENV{GIT_AUTHOR_EMAIL} = 'trainer@example.com';
                local $ENV{GIT_COMMITTER_EMAIL} = 'trainer@example.com';
-               run([$learn, "spam"], \$msg);
+               IPC::Run::run([$learn, "spam"], \$msg);
                is($?, 0, "no failure from learning spam");
-               run([$learn, "spam"], \$msg);
+               IPC::Run::run([$learn, "spam"], \$msg);
                is($?, 0, "no failure from learning spam idempotently");
        }
 }
@@ -216,12 +217,12 @@ EOF
        local $ENV{GIT_AUTHOR_EMAIL} = 'trainer@example.com';
        local $ENV{GIT_COMMITTER_EMAIL} = 'trainer@example.com';
 
-       run([$learn, "ham"], \$in);
+       IPC::Run::run([$learn, "ham"], \$in);
        is($?, 0, "learned ham without failure");
        my $path = mid2path($mid);
        my $msg = `git --git-dir=$maindir cat-file blob HEAD:$path`;
        like($msg, qr/\Q$mid\E/, "ham message delivered");
-       run([$learn, "ham"], \$in);
+       IPC::Run::run([$learn, "ham"], \$in);
        is($?, 0, "learned ham idempotently ");
 
        # ensure trained email is filtered, too
@@ -256,7 +257,7 @@ EOF
 
        {
                $in = $mime->as_string;
-               run([$learn, "ham"], \$in);
+               IPC::Run::run([$learn, "ham"], \$in);
                is($?, 0, "learned ham without failure");
                my $path = mid2path($mid);
                $msg = `git --git-dir=$maindir cat-file blob HEAD:$path`;
@@ -273,7 +274,7 @@ sub fail_bad_header {
        unlink @f if @f;
        my ($out, $err) = ("", "");
        local $ENV{PATH} = $main_path;
-       run([$mda], \$in, \$out, \$err);
+       IPC::Run::run([$mda], \$in, \$out, \$err);
        my $rev = `git --git-dir=$maindir rev-list HEAD`;
        chomp $rev;
        is($rev, $good_rev, "bad revision not commited ($msg)");