aboutsummaryrefslogtreecommitdiffstats
path: root/t/samplerun.t
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2017-11-10 13:47:01 -0500
committerBrian Cully <bjc@kublai.com>2017-11-12 11:48:56 -0500
commit2bb7eb2dec219d05edb53002e10811fa214325b8 (patch)
treef593bef77ba64339622d720ac51901e4626848ab /t/samplerun.t
parent3f8f46c8b10d060ec4ba7f3be91ff3cb6e903e01 (diff)
downloadxmpt-2bb7eb2dec219d05edb53002e10811fa214325b8.tar.gz
xmpt-2bb7eb2dec219d05edb53002e10811fa214325b8.zip
Add tests.
* Add simple INSTALL document. * Add Makefile.PL for make support. * Moved sample files to t/fixtures. * Add version to xmpt executable.xmpt * Add tests for sample CLI run.
Diffstat (limited to 't/samplerun.t')
-rw-r--r--t/samplerun.t39
1 files changed, 39 insertions, 0 deletions
diff --git a/t/samplerun.t b/t/samplerun.t
new file mode 100644
index 0000000..c3930ed
--- /dev/null
+++ b/t/samplerun.t
@@ -0,0 +1,39 @@
+# -*- mode: perl -*-
+
+use Test::More tests => 3;
+
+use strict;
+use warnings;
+
+my $config = 't/fixtures/localhost.conf';
+my $testplan = 't/fixtures/testplan';
+my $input = 't/fixtures/input';
+
+subtest 'standard input', sub {
+ my $cmd = "./xmpt -c $config -p $testplan";
+ my $xmptfh = new IO::File("|$cmd") or BAIL_OUT "Can't run '$cmd': $!.\n";
+ my $inputfh = new IO::File($input) or
+ BAIL_OUT "Couldn't open $input for reading: $!.\n";
+ while (<$inputfh>) {
+ print $xmptfh $_;
+ }
+ $inputfh->close;
+ $xmptfh->close;
+ ok($? == 0, 'Standard input redirect');
+};
+
+subtest 'timeout', sub {
+ my $cmd = "./xmpt -t 1 -c $config -p $testplan cat 2>/dev/null";
+ local $SIG{ALRM} = sub { fail("Timed out running $cmd.") };
+ alarm 5;
+ system $cmd;
+ ok(($? >> 8) != 0, 'Timeout test');
+};
+
+subtest 'I/O redirected to cat', sub {
+ my $cmd = "./xmpt -c $config -p $testplan cat $input 2>/dev/null";
+ local $SIG{ALRM} = sub { fail("Timed out running $cmd.") };
+ alarm 10;
+ ok((system($cmd) >> 8) == 0, 'I/O redirected to cat');
+ alarm 0;
+};