Code

Updated Nagios::Plugin library
[nagiosplug.git] / plugins / t / check_fping.t
1 #! /usr/bin/perl -w -I ..
2 #
3 # FPing Tests via check_fping
4 #
5 #
7 use strict;
8 use Test;
9 use NPTest;
11 use vars qw($tests);
13 BEGIN {$tests = 4; plan tests => $tests}
15 my $successOutput = '/^FPING OK - /';
16 my $failureOutput = '/^FPING CRITICAL - /';
18 my $host_responsive    = getTestParameter( "host_responsive",    "NP_HOST_RESPONSIVE",    "localhost",
19                                            "The hostname of system responsive to network requests" );
21 my $host_nonresponsive = getTestParameter( "host_nonresponsive", "NP_HOST_NONRESPONSIVE", "10.0.0.1",
22                                            "The hostname of system not responsive to network requests" );
24 my $hostname_invalid   = getTestParameter( "hostname_invalid",   "NP_HOSTNAME_INVALID",   "nosuchhost",
25                                            "An invalid (not known to DNS) hostname" );
28 my $t;
30 if ( -x "./check_fping" )
31 {
32   $t += checkCmd( "./check_fping $host_responsive",    0,       $successOutput );
33   $t += checkCmd( "./check_fping $host_nonresponsive", [ 1, 2 ] );
34   $t += checkCmd( "./check_fping $hostname_invalid",   [ 1, 2 ] );
35 }
36 else
37 {
38   $t += skipMissingCmd( "./check_fping", $tests );
39 }
41 exit(0) if defined($Test::Harness::VERSION);
42 exit($tests - $t);