diff options
author | Peter Bray <illumino@users.sourceforge.net> | 2005-07-25 01:47:15 (GMT) |
---|---|---|
committer | Peter Bray <illumino@users.sourceforge.net> | 2005-07-25 01:47:15 (GMT) |
commit | cdc06cc3e2c4670d3cd46b0a03adcf7e6958eff1 (patch) | |
tree | 62b074eaca618762fb03f94708ec3def50037697 /plugins/t/check_imap.t | |
parent | 05853f47eb6e608de993cc59343c73b96b9b33e2 (diff) | |
download | monitoring-plugins-cdc06cc3e2c4670d3cd46b0a03adcf7e6958eff1.tar.gz |
[1185704] New Testing Infrastructure.
Complete rewrite of the original testing infrastructure and
all test cases (to use the new infrastructure)
See NPTest.pm and issue 1185704 for more details.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1207 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/t/check_imap.t')
-rw-r--r-- | plugins/t/check_imap.t | 51 |
1 files changed, 28 insertions, 23 deletions
diff --git a/plugins/t/check_imap.t b/plugins/t/check_imap.t index 47494e5..f86faa4 100644 --- a/plugins/t/check_imap.t +++ b/plugins/t/check_imap.t | |||
@@ -1,34 +1,39 @@ | |||
1 | #! /usr/bin/perl -w | 1 | #! /usr/bin/perl -w -I .. |
2 | 2 | # | |
3 | #use strict; | 3 | # Internet Mail Access Protocol (IMAP) Server Tests via check_imap |
4 | use Cache; | 4 | # |
5 | # $Id$ | ||
6 | # | ||
7 | |||
8 | use strict; | ||
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_imap = getTestParameter( "host_tcp_imap", "NP_HOST_TCP_IMAP", $host_tcp_smtp, |
11 | my $cmd; | 19 | "A host providing an IMAP Service (a mail server)"); |
12 | my $str; | ||
13 | my $t; | ||
14 | 20 | ||
15 | $cmd = "./check_imap $Cache::mailhost"; | 21 | my $host_nonresponsive = getTestParameter( "host_nonresponsive", "NP_HOST_NONRESPONSIVE", "10.0.0.1", |
16 | $str = `$cmd`; | 22 | "The hostname of system not responsive to network requests" ); |
17 | $t += ok $?>>8,0; | ||
18 | print "Test was: $cmd\n" if ($?); | ||
19 | 23 | ||
20 | $cmd = "./check_imap -H $Cache::mailhost -p 143 -w 9 -c 9 -t 10 -e '* OK'"; | 24 | my $hostname_invalid = getTestParameter( "hostname_invalid", "NP_HOSTNAME_INVALID", "nosuchhost", |
21 | $str = `$cmd`; | 25 | "An invalid (not known to DNS) hostname" ); |
22 | $t += ok $?>>8,0; | ||
23 | print "Test was: $cmd\n" if ($?); | ||
24 | 26 | ||
27 | my %exceptions = ( 2 => "No IMAP Server present?" ); | ||
28 | |||
29 | my $t; | ||
30 | |||
31 | $t += checkCmd( "./check_imap $host_tcp_imap", 0, undef, %exceptions ); | ||
32 | $t += checkCmd( "./check_imap -H $host_tcp_imap -p 143 -w 9 -c 9 -t 10 -e '* OK'", 0, undef, %exceptions ); | ||
33 | $t += checkCmd( "./check_imap $host_tcp_imap -p 143 -wt 9 -ct 9 -to 10 -e '* OK'", 0, undef, %exceptions ); | ||
34 | $t += checkCmd( "./check_imap $host_nonresponsive", 2 ); | ||
35 | $t += checkCmd( "./check_imap $hostname_invalid", 2 ); | ||
25 | 36 | ||
26 | # Reverse compatibility | ||
27 | $cmd = "./check_imap $Cache::mailhost -p 143 -wt 9 -ct 9 -to 10 -e '* OK'"; | ||
28 | $str = `$cmd`; | ||
29 | $t += ok $?>>8,0; | ||
30 | print "Test was: $cmd\n" if ($?); | ||
31 | 37 | ||
32 | exit(0) if defined($Test::Harness::VERSION); | 38 | exit(0) if defined($Test::Harness::VERSION); |
33 | exit($tests - $t); | 39 | exit($tests - $t); |
34 | |||