diff options
author | Peter Bray <illumino@users.sourceforge.net> | 2005-07-25 01:47:15 +0000 |
---|---|---|
committer | Peter Bray <illumino@users.sourceforge.net> | 2005-07-25 01:47:15 +0000 |
commit | cdc06cc3e2c4670d3cd46b0a03adcf7e6958eff1 (patch) | |
tree | 62b074eaca618762fb03f94708ec3def50037697 /plugins/t/check_fping.t | |
parent | 05853f47eb6e608de993cc59343c73b96b9b33e2 (diff) | |
download | monitoring-plugins-cdc06cc3e2c4670d3cd46b0a03adcf7e6958eff1.tar.gz |
[1185704] New Testing Infrastructure.
Complete rewrite of the original testing infrastructure and
all test cases (to use the new infrastructure)
See NPTest.pm and issue 1185704 for more details.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1207 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/t/check_fping.t')
-rw-r--r-- | plugins/t/check_fping.t | 48 |
1 files changed, 27 insertions, 21 deletions
diff --git a/plugins/t/check_fping.t b/plugins/t/check_fping.t index 629ee35f..c59d59e0 100644 --- a/plugins/t/check_fping.t +++ b/plugins/t/check_fping.t | |||
@@ -1,37 +1,43 @@ | |||
1 | #! /usr/bin/perl -w | 1 | #! /usr/bin/perl -w -I .. |
2 | # | ||
3 | # FPing Tests via check_fping | ||
4 | # | ||
2 | # $Id$ | 5 | # $Id$ |
6 | # | ||
3 | 7 | ||
4 | use strict; | 8 | use strict; |
5 | use Cache; | ||
6 | use Test; | 9 | use Test; |
10 | use NPTest; | ||
11 | |||
7 | use vars qw($tests); | 12 | use vars qw($tests); |
8 | 13 | ||
9 | BEGIN {$tests = 3; plan tests => $tests} | 14 | BEGIN {$tests = 4; plan tests => $tests} |
10 | 15 | ||
11 | exit(0) unless (-x "./check_fping"); | 16 | my $successOutput = '/^FPING OK - /'; |
17 | my $failureOutput = '/^FPING CRITICAL - /'; | ||
12 | 18 | ||
13 | #`fping 127.0.0.1 > /dev/null 2>&1` || exit(77); | 19 | my $host_responsive = getTestParameter( "host_responsive", "NP_HOST_RESPONSIVE", "localhost", |
20 | "The hostname of system responsive to network requests" ); | ||
14 | 21 | ||
15 | my $null = ''; | 22 | my $host_nonresponsive = getTestParameter( "host_nonresponsive", "NP_HOST_NONRESPONSIVE", "10.0.0.1", |
16 | my $cmd; | 23 | "The hostname of system not responsive to network requests" ); |
17 | my $str; | ||
18 | my $t; | ||
19 | my $stat; | ||
20 | 24 | ||
25 | my $hostname_invalid = getTestParameter( "hostname_invalid", "NP_HOSTNAME_INVALID", "nosuchhost", | ||
26 | "An invalid (not known to DNS) hostname" ); | ||
21 | 27 | ||
22 | $cmd = "./check_fping 127.0.0.1"; | ||
23 | $str = `$cmd`; | ||
24 | $t += ok $?>>8,0; | ||
25 | print "Test was: $cmd\n" if ($?); | ||
26 | $t += ok $str, '/^FPING OK - 127.0.0.1/'; | ||
27 | 28 | ||
28 | $cmd = "./check_fping $Cache::nullhost"; | 29 | my $t; |
29 | $str = `$cmd`; | 30 | |
30 | if ($?>>8 == 1 or $?>>8 == 2) { | 31 | if ( -x "./check_fping" ) |
31 | $stat = 2; | 32 | { |
33 | $t += checkCmd( "./check_fping $host_responsive", 0, $successOutput ); | ||
34 | $t += checkCmd( "./check_fping $host_nonresponsive", [ 1, 2 ] ); | ||
35 | $t += checkCmd( "./check_fping $hostname_invalid", [ 1, 2 ] ); | ||
36 | } | ||
37 | else | ||
38 | { | ||
39 | $t += skipMissingCmd( "./check_fping", $tests ); | ||
32 | } | 40 | } |
33 | $t += ok $stat,2; | ||
34 | print "Test was: $cmd\n" if (($?>>8) < 1); | ||
35 | 41 | ||
36 | exit(0) if defined($Test::Harness::VERSION); | 42 | exit(0) if defined($Test::Harness::VERSION); |
37 | exit($tests - $t); | 43 | exit($tests - $t); |