Code

Fix bug #1632072 pointer error in plugins/netutils.c. Add changelog entry for previou...
[nagiosplug.git] / plugins / t / check_ping.t
1 #! /usr/bin/perl -w -I ..
2 #
3 # Ping Response Tests via check_ping
4 #
5 # $Id$
6 #
8 use strict;
9 use Test;
10 use NPTest;
12 use vars qw($tests);
14 BEGIN {$tests = 8; plan tests => $tests}
16 my $successOutput = '/PING (ok|OK) - Packet loss = +[0-9]{1,2}\%, +RTA = [\.0-9]+ ms/';
17 my $failureOutput = '/Packet loss = +[0-9]{1,2}\%, +RTA = [\.0-9]+ ms/';
19 my $host_responsive    = getTestParameter( "host_responsive",   "NP_HOST_RESPONSIVE",     "localhost",
20                                            "The hostname of system responsive to network requests" );
22 my $host_nonresponsive = getTestParameter( "host_nonresponsive", "NP_HOST_NONRESPONSIVE", "10.0.0.1",
23                                            "The hostname of system not responsive to network requests" );
25 my $hostname_invalid   = getTestParameter( "hostname_invalid",   "NP_HOSTNAME_INVALID",   "nosuchhost",
26                                            "An invalid (not known to DNS) hostname" );
28 my $t;
30 $t += checkCmd( "./check_ping $host_responsive    100 100 1000 1000 -p 1",       0, $successOutput );
31 $t += checkCmd( "./check_ping $host_responsive      0   0    0    0 -p 1",       2, $failureOutput );
32 $t += checkCmd( "./check_ping $host_nonresponsive   0   0    0    0 -p 1 -to 1", 2 );
33 $t += checkCmd( "./check_ping $hostname_invalid     0   0    0    0 -p 1 -to 1", 3 );
34 $t += checkCmd( "./check_ping -w 100,10% -c 200,20%"                           , 3 , "/You must specify a server address or host name.*/");
36 exit(0) if defined($Test::Harness::VERSION);
37 exit($tests - $t);