diff options
Diffstat (limited to 'plugins/t/check_smtp.t')
-rw-r--r-- | plugins/t/check_smtp.t | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/t/check_smtp.t b/plugins/t/check_smtp.t new file mode 100644 index 0000000..2a82b87 --- /dev/null +++ b/plugins/t/check_smtp.t | |||
@@ -0,0 +1,31 @@ | |||
1 | #! /usr/bin/perl -w | ||
2 | |||
3 | #use strict; | ||
4 | use Cache; | ||
5 | use Test; | ||
6 | use vars qw($tests); | ||
7 | |||
8 | BEGIN {$tests = 3; plan tests => $tests} | ||
9 | |||
10 | my $null = ''; | ||
11 | my $cmd; | ||
12 | my $str; | ||
13 | my $t; | ||
14 | |||
15 | $cmd = "./check_smtp $Cache::mailhost"; | ||
16 | $str = `$cmd`; | ||
17 | $t += ok $?>>8,0; | ||
18 | print "Test was: $cmd\n" if ($?); | ||
19 | |||
20 | $cmd = "./check_smtp -H $Cache::mailhost -p 25 -t 1 -w 9 -c 9 -t 10 -e 220"; | ||
21 | $str = `$cmd`; | ||
22 | $t += ok $?>>8,0; | ||
23 | print "Test was: $cmd\n" if ($?); | ||
24 | |||
25 | $cmd = "./check_smtp -H $Cache::mailhost -p 25 -wt 9 -ct 9 -to 10 -e 220"; | ||
26 | $str = `$cmd`; | ||
27 | $t += ok $?>>8,0; | ||
28 | print "Test was: $cmd\n" if ($?); | ||
29 | |||
30 | exit(0) if defined($Test::Harness::VERSION); | ||
31 | exit($tests - $t); | ||