Code

Fixing some test failures
[nagiosplug.git] / plugins / t / check_http.t
1 #! /usr/bin/perl -w -I ..
2 #
3 # HyperText Transfer Protocol (HTTP) Test via check_http
4 #
5 # $Id$
6 #
8 use strict;
9 use Test;
10 use NPTest;
12 use vars qw($tests);
13 BEGIN {$tests = 4; plan tests => $tests}
15 my $host_tcp_http      = getTestParameter( "host_tcp_http",      "NP_HOST_TCP_HTTP",      "localhost",
16                                            "A host providing the HTTP Service (a web server)" );
18 my $host_nonresponsive = getTestParameter( "host_nonresponsive", "NP_HOST_NONRESPONSIVE", "10.0.0.1",
19                                            "The hostname of system not responsive to network requests" );
21 my $hostname_invalid   = getTestParameter( "hostname_invalid",   "NP_HOSTNAME_INVALID",   "nosuchhost",
22                                            "An invalid (not known to DNS) hostname" );
24 my $successOutput = '/OK.*HTTP.*second/';
26 my %exceptions = ( 2 => "No Web Server present?" );
28 my $t;
30 $t += checkCmd( "./check_http $host_tcp_http      -wt 300 -ct 600", { 0 => 'continue',  2 => 'skip' }, $successOutput, %exceptions );
31 $t += checkCmd( "./check_http $host_nonresponsive -wt   1 -ct   2", 2 );
32 $t += checkCmd( "./check_http $hostname_invalid   -wt   1 -ct   2", 2 );
34 exit(0) if defined($Test::Harness::VERSION);
35 exit($tests - $t);