summaryrefslogtreecommitdiffstats
path: root/plugins/t/check_smtp.t
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-10-12 20:36:46 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-10-12 20:36:46 (GMT)
commitd00a65f8172ea55b6b4938c65ae0568dbd03b9c0 (patch)
tree13075b59032525c5ffeb882fa115b82a565d44d9 /plugins/t/check_smtp.t
parentcaaf4be9b6812f6b99b9773e9016619caa41dff4 (diff)
downloadmonitoring-plugins-d00a65f8172ea55b6b4938c65ae0568dbd03b9c0.tar.gz
Resend EHLO after TLS negotiation as per RFC3207 (Holger Weiss - 1482832)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1493 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/t/check_smtp.t')
-rw-r--r--plugins/t/check_smtp.t55
1 files changed, 37 insertions, 18 deletions
diff --git a/plugins/t/check_smtp.t b/plugins/t/check_smtp.t
index 3bf32ec..0046a58 100644
--- a/plugins/t/check_smtp.t
+++ b/plugins/t/check_smtp.t
@@ -6,29 +6,48 @@
6# 6#
7 7
8use strict; 8use strict;
9use Test; 9use Test::More;
10use NPTest; 10use NPTest;
11 11
12use vars qw($tests); 12my $host_tcp_smtp = getTestParameter( "NP_HOST_TCP_SMTP",
13BEGIN {$tests = 5; plan tests => $tests} 13 "A host providing an SMTP Service (a mail server)", "mailhost");
14 14
15my $host_tcp_smtp = getTestParameter( "host_tcp_smtp", "NP_HOST_TCP_SMTP", "mailhost", 15my $host_nonresponsive = getTestParameter( "NP_HOST_NONRESPONSIVE",
16 "A host providing an STMP Service (a mail server)"); 16 "The hostname of system not responsive to network requests", "10.0.0.1" );
17 17
18my $host_nonresponsive = getTestParameter( "host_nonresponsive", "NP_HOST_NONRESPONSIVE", "10.0.0.1", 18my $hostname_invalid = getTestParameter( "NP_HOSTNAME_INVALID",
19 "The hostname of system not responsive to network requests" ); 19 "An invalid (not known to DNS) hostname", "nosuchhost" );
20my $res;
20 21
21my $hostname_invalid = getTestParameter( "hostname_invalid", "NP_HOSTNAME_INVALID", "nosuchhost", 22plan tests => 8;
22 "An invalid (not known to DNS) hostname" );
23my %exceptions = ( 2 => "No SMTP Server present?" );
24 23
25my $t; 24SKIP: {
25 skip "No SMTP server defined", 3 unless $host_tcp_smtp;
26 $res = NPTest->testCmd( "./check_smtp $host_tcp_smtp" );
27 is ($res->return_code, 0, "OK");
28
29 $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp -p 25 -w 9 -c 9 -t 10 -e 220" );
30 is ($res->return_code, 0, "OK, within 9 second response");
26 31
27$t += checkCmd( "./check_smtp $host_tcp_smtp", 0, undef, %exceptions ); 32 $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp -p 25 -wt 9 -ct 9 -to 10 -e 220" );
28$t += checkCmd( "./check_smtp -H $host_tcp_smtp -p 25 -t 1 -w 9 -c 9 -t 10 -e 220", 0, undef, %exceptions ); 33 is ($res->return_code, 0, "OK, old syntax");
29$t += checkCmd( "./check_smtp -H $host_tcp_smtp -p 25 -wt 9 -ct 9 -to 10 -e 220", 0, undef, %exceptions ); 34
30$t += checkCmd( "./check_smtp $host_nonresponsive", 2 ); 35 $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp -e 221" );
31$t += checkCmd( "./check_smtp $hostname_invalid", 3 ); 36 is ($res->return_code, 1, "WARNING - got correct error when expecting 221 instead of 220" );
37
38 TODO: {
39 local $TODO = "Output is over two lines";
40 like ( $res->output, qr/^SMTP WARNING/, "Correct error message" );
41 }
42
43 # SSL connection
44 $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp -p 25 -S" );
45 is ($res->return_code, 0, "OK, with STARTTLS" );
46}
47
48$res = NPTest->testCmd( "./check_smtp $host_nonresponsive" );
49is ($res->return_code, 2, "CRITICAL - host non responding" );
50
51$res = NPTest->testCmd( "./check_smtp $hostname_invalid" );
52is ($res->return_code, 3, "UNKNOWN - hostname invalid" );
32 53
33exit(0) if defined($Test::Harness::VERSION);
34exit($tests - $t);