Code

Added testcases for check_dig
authorMatthias Eble <psychotrahe@users.sourceforge.net>
Mon, 9 Jun 2008 19:47:36 +0000 (19:47 +0000)
committerMatthias Eble <psychotrahe@users.sourceforge.net>
Mon, 9 Jun 2008 19:47:36 +0000 (19:47 +0000)
check_dig's -l option is mandatory now (#1986306)

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2011 f882894a-f735-0410-b71e-b25c423dba1c

NEWS
plugins/check_dig.c
plugins/t/check_dig.t [new file with mode: 0644]

diff --git a/NEWS b/NEWS
index 439a85029a22c0a3264b1bacbbb278b1f6abddae..8185b55bc8dc9f7180e5283e43e0ff70009d46ae 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,8 @@ This file documents the major additions and syntax changes between releases.
        Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen)
        Optimised pst3 for systems with large number of processes (Duncan Ferguson)
        Updated Nagios::Plugin to 0.27
+       Fix Debian bug #479013: check_dig's -l is mandatory now (sf.net #1986306)
+       check_dig now returns CRITICAL instead of WARNING when no answer section is found
 
 1.4.12 27th May 2008
        Added ./check_nt -v INSTANCES to count number of instances (Alessandro Ren)
index e3f7adbd394218cebbdc49761275bab391b7e7dc..34197ecc44836d7b200cd69f17e7c89f94e4c6ba 100644 (file)
@@ -143,8 +143,10 @@ main (int argc, char **argv)
     }
   }
 
-  if (result == STATE_UNKNOWN)
+  if (result == STATE_UNKNOWN) {
     msg = (char *)_("No ANSWER SECTION found");
+    result = STATE_CRITICAL;
+  }
 
   /* If we get anything on STDERR, at least set warning */
   if(chld_err.buflen > 0) {
@@ -295,7 +297,10 @@ process_arguments (int argc, char **argv)
 int
 validate_arguments (void)
 {
-  return OK;
+  if (query_address != NULL)
+    return OK;
+  else
+    return ERROR;
 }
 
 
@@ -357,7 +362,7 @@ void
 print_usage (void)
 {
   printf (_("Usage:"));
-  printf ("%s -H <host> -l <query_address> [-p <server port>]\n", progname);
+  printf ("%s -l <query_address> [-H <host>] [-p <server port>]\n", progname);
   printf (" [-T <query type>] [-w <warning interval>] [-c <critical interval>]\n");
   printf (" [-t <timeout>] [-a <expected answer address>] [-v]\n");
 }
diff --git a/plugins/t/check_dig.t b/plugins/t/check_dig.t
new file mode 100644 (file)
index 0000000..937eec3
--- /dev/null
@@ -0,0 +1,85 @@
+#! /usr/bin/perl -w -I ..
+#
+# Domain Name Server (DNS) Tests via check_dig
+#
+# $Id$
+#
+
+use strict;
+use Test::More;
+use NPTest;
+
+plan skip_all => "check_dig not compiled" unless (-x "check_dig");
+
+plan tests => 12;
+
+my $successOutput = '/DNS OK - [\.0-9]+ seconds? response time/';
+
+my $hostname_valid = getTestParameter( 
+                       "NP_HOSTNAME_VALID",
+                       "A valid (known to DNS) hostname",
+                       "nagios.com"
+                       );
+
+my $hostname_valid_ip = getTestParameter(
+                       "NP_HOSTNAME_VALID_IP",
+                       "The IP address of the valid hostname $hostname_valid",
+                       "66.118.156.50",
+                       );
+
+my $hostname_valid_reverse = getTestParameter(
+                       "NP_HOSTNAME_VALID_REVERSE",
+                       "The hostname of $hostname_valid_ip",
+                       "66-118-156-50.static.sagonet.net.",
+                       );
+
+my $hostname_invalid = getTestParameter( 
+                       "NP_HOSTNAME_INVALID", 
+                       "An invalid (not known to DNS) hostname",
+                       "nosuchhost.altinity.com",
+                       );
+
+my $dns_server       = getTestParameter(
+                       "NP_DNS_SERVER",
+                       "A non default (remote) DNS server",
+                       );
+
+my $res;
+
+SKIP: {
+        skip "check_dig.t: not enough parameters given",
+       12 unless ($hostname_valid && $hostname_valid_ip && $hostname_valid_reverse && $hostname_invalid && $dns_server);
+
+       $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_valid -t 5");
+       cmp_ok( $res->return_code, '==', 0, "Found $hostname_valid");
+       like  ( $res->output, $successOutput, "Output OK" );
+
+       $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_valid -t 5 -w 0.000001 -c 0.00001");
+       cmp_ok( $res->return_code, '==', 2, "Critical threshold passed");
+
+       $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_valid -t 5 -w 0.000001 -c 5");
+       cmp_ok( $res->return_code, '==', 1, "Warning threshold passed");
+
+       $res = NPTest->testCmd("./check_dig -H $dns_server -t 1");
+       cmp_ok( $res->return_code, '==', 3, "Invalid command line -l missing");
+
+       $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_invalid -t 1");
+       cmp_ok( $res->return_code, '==', 2, "Invalid $hostname_invalid");
+
+       $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_valid  -t 5");
+       cmp_ok( $res->return_code, '==', 0, "Found $hostname_valid on $dns_server");
+       like  ( $res->output, $successOutput, "Output OK" );
+
+       $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_valid -a $hostname_valid_ip -t 5");
+       cmp_ok( $res->return_code, '==', 0, "Got expected address");
+
+       $res = NPTest->testCmd("./check_dig -H $dns_server -l $hostname_valid -a 10.10.10.10 -t 5");
+       cmp_ok( $res->return_code, '==', 1, "Got wrong address");
+
+       my $ip_reverse = $hostname_valid_ip;
+       $ip_reverse =~ s/(\d+)\.(\d+)\.(\d+)\.(\d+)/$4.$3.$2.$1.in-addr.arpa/;
+       $res = NPTest->testCmd("./check_dig -H $dns_server -l $ip_reverse -a $hostname_valid_reverse -T PTR -t 5");
+       cmp_ok( $res->return_code, '==', 0, "Got expected fqdn");
+       like  ( $res->output, $successOutput, "Output OK");
+
+}