mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-09 00:32:05 -04:00
Add check_jabber test. Will ask for a jabber host (default should be OK)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1600 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
e0a4206cdd
commit
1f7821a657
1 changed files with 55 additions and 0 deletions
55
plugins/t/check_jabber.t
Normal file
55
plugins/t/check_jabber.t
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
#! /usr/bin/perl -w -I ..
|
||||
#
|
||||
# Jabber Server Tests via check_jabber
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
use strict;
|
||||
use Test;
|
||||
use NPTest;
|
||||
|
||||
use vars qw($tests);
|
||||
BEGIN {$tests = 10; plan tests => $tests}
|
||||
|
||||
my $host_tcp_jabber = getTestParameter(
|
||||
"NP_HOST_TCP_JABBER",
|
||||
"A host providing the Jabber Service",
|
||||
"jabber.org"
|
||||
);
|
||||
|
||||
my $host_nonresponsive = getTestParameter(
|
||||
"NP_HOST_NONRESPONSIVE",
|
||||
"The hostname of system not responsive to network requests",
|
||||
"10.0.0.1",
|
||||
);
|
||||
|
||||
my $hostname_invalid = getTestParameter(
|
||||
"NP_HOSTNAME_INVALID",
|
||||
"An invalid (not known to DNS) hostname",
|
||||
"nosuchhost",
|
||||
);
|
||||
|
||||
my %exceptions = ( 2 => "No Jabber Server present?" );
|
||||
|
||||
my $jabberOK = '/JABBER OK\s-\s\d+\.\d+\ssecond response time on port 5222/';
|
||||
|
||||
my $jabberUnresponsive = '/CRITICAL\s-\sSocket timeout after\s\d+\sseconds/';
|
||||
|
||||
my $jabberInvalid = '/check_JABBER: Invalid hostname, address or socket\s-\s.+/';
|
||||
|
||||
my $t;
|
||||
|
||||
$t += checkCmd( "./check_jabber $host_tcp_jabber", 0, $jabberOK );
|
||||
|
||||
$t += checkCmd( "./check_jabber -H $host_tcp_jabber -w 9 -c 9 -t 10", 0, $jabberOK );
|
||||
|
||||
$t += checkCmd( "./check_jabber $host_tcp_jabber -wt 9 -ct 9 -to 10", 0, $jabberOK );
|
||||
|
||||
$t += checkCmd( "./check_jabber $host_nonresponsive", 2, $jabberUnresponsive );
|
||||
|
||||
$t += checkCmd( "./check_jabber $hostname_invalid", 2, $jabberInvalid );
|
||||
|
||||
exit(0) if defined($Test::Harness::VERSION);
|
||||
exit($tests - $t);
|
||||
|
||||
Loading…
Reference in a new issue