diff options
Diffstat (limited to 'plugins/t/check_pop.t')
-rw-r--r-- | plugins/t/check_pop.t | 47 |
1 files changed, 27 insertions, 20 deletions
diff --git a/plugins/t/check_pop.t b/plugins/t/check_pop.t index 60b5a4e..e78f963 100644 --- a/plugins/t/check_pop.t +++ b/plugins/t/check_pop.t | |||
@@ -1,31 +1,38 @@ | |||
1 | #! /usr/bin/perl -w | 1 | #! /usr/bin/perl -w -I .. |
2 | # | ||
3 | # Post Office Protocol (POP) Server Tests via check_pop | ||
4 | # | ||
5 | # $Id$ | ||
6 | # | ||
2 | 7 | ||
3 | #use strict; | 8 | use strict; |
4 | use Cache; | ||
5 | use Test; | 9 | use Test; |
10 | use NPTest; | ||
11 | |||
6 | use vars qw($tests); | 12 | use vars qw($tests); |
13 | BEGIN {$tests = 5; plan tests => $tests} | ||
7 | 14 | ||
8 | BEGIN {$tests = 3; plan tests => $tests} | 15 | my $host_tcp_smtp = getTestParameter( "host_tcp_smtp", "NP_HOST_TCP_SMTP", "mailhost", |
16 | "A host providing an STMP Service (a mail server)"); | ||
9 | 17 | ||
10 | my $null = ''; | 18 | my $host_tcp_pop = getTestParameter( "host_tcp_pop", "NP_HOST_TCP_POP", $host_tcp_smtp, |
11 | my $cmd; | 19 | "A host providing an POP Service (a mail server)"); |
12 | my $str; | 20 | |
13 | my $t; | 21 | my $host_nonresponsive = getTestParameter( "host_nonresponsive", "NP_HOST_NONRESPONSIVE", "10.0.0.1", |
22 | "The hostname of system not responsive to network requests" ); | ||
14 | 23 | ||
15 | $cmd = "./check_pop $Cache::mailhost"; | 24 | my $hostname_invalid = getTestParameter( "hostname_invalid", "NP_HOSTNAME_INVALID", "nosuchhost", |
16 | $str = `$cmd`; | 25 | "An invalid (not known to DNS) hostname" ); |
17 | $t += ok $?>>8,0; | ||
18 | print "Test was: $cmd\n" if ($?); | ||
19 | 26 | ||
20 | $cmd = "./check_pop -H $Cache::mailhost -p 110 -w 9 -c 9 -t 10 -e '+OK'"; | 27 | my %exceptions = ( 2 => "No POP Server present?" ); |
21 | $str = `$cmd`; | 28 | |
22 | $t += ok $?>>8,0; | 29 | my $t; |
23 | print "Test was: $cmd\n" if ($?); | ||
24 | 30 | ||
25 | $cmd = "./check_pop $Cache::mailhost -p 110 -wt 9 -ct 9 -to 10 -e '+OK'"; | 31 | $t += checkCmd( "./check_pop $host_tcp_pop", 0, undef, %exceptions ); |
26 | $str = `$cmd`; | 32 | $t += checkCmd( "./check_pop -H $host_tcp_pop -p 110 -w 9 -c 9 -t 10 -e '+OK'", 0, undef, %exceptions ); |
27 | $t += ok $?>>8,0; | 33 | $t += checkCmd( "./check_pop $host_tcp_pop -p 110 -wt 9 -ct 9 -to 10 -e '+OK'", 0, undef, %exceptions ); |
28 | print "Test was: $cmd\n" if ($?); | 34 | $t += checkCmd( "./check_pop $host_nonresponsive", 2 ); |
35 | $t += checkCmd( "./check_pop $hostname_invalid", 2 ); | ||
29 | 36 | ||
30 | exit(0) if defined($Test::Harness::VERSION); | 37 | exit(0) if defined($Test::Harness::VERSION); |
31 | exit($tests - $t); | 38 | exit($tests - $t); |