[monitoring-plugins] check_jabber.t - fixed tests for new status ...
Jan Wagner
git at monitoring-plugins.org
Mon Jun 30 15:20:08 CEST 2014
Module: monitoring-plugins
Branch: master
Commit: 4277f47bffb65bafeb9b8e256dd7116ce747e850
Author: abrist <abrist at nagios.com>
Committer: Jan Wagner <waja at cyconet.org>
Date: Mon Mar 3 12:42:33 2014 -0500
URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=4277f47
check_jabber.t - fixed tests for new status output including hostname
---
plugins/t/check_jabber.t | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/plugins/t/check_jabber.t b/plugins/t/check_jabber.t
index 1aaf812..7a708d5 100644
--- a/plugins/t/check_jabber.t
+++ b/plugins/t/check_jabber.t
@@ -29,7 +29,7 @@ my $hostname_invalid = getTestParameter(
);
-my $jabberOK = '/JABBER OK\s-\s\d+\.\d+\ssecond response time on port 5222/';
+my $jabberOK = '/JABBER OK\s-\s\d+\.\d+\ssecond response time on '.$host_tcp_jabber.' port 5222/';
my $jabberUnresponsive = '/CRITICAL\s-\sSocket timeout after\s\d+\sseconds/';
@@ -40,7 +40,7 @@ my $r;
SKIP: {
skip "No jabber server defined", 6 unless $host_tcp_jabber;
- $r = NPTest->testCmd( "./check_jabber $host_tcp_jabber" );
+ $r = NPTest->testCmd( "./check_jabber -H $host_tcp_jabber" );
is( $r->return_code, 0, "Connected okay");
like( $r->output, $jabberOK, "Output as expected" );
@@ -48,7 +48,7 @@ SKIP: {
is( $r->return_code, 0, "Connected okay, within limits" );
like( $r->output, $jabberOK, "Output as expected" );
- $r = NPTest->testCmd( "./check_jabber $host_tcp_jabber -wt 9 -ct 9 -to 10" );
+ $r = NPTest->testCmd( "./check_jabber -H $host_tcp_jabber -wt 9 -ct 9 -to 10" );
is( $r->return_code, 0, "Old syntax okay" );
like( $r->output, $jabberOK, "Output as expected" );
More information about the Commits
mailing list