diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/t/check_fping.t | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/plugins/t/check_fping.t b/plugins/t/check_fping.t index 342b0a7..03a6110 100644 --- a/plugins/t/check_fping.t +++ b/plugins/t/check_fping.t | |||
@@ -12,9 +12,6 @@ use vars qw($tests); | |||
12 | 12 | ||
13 | BEGIN {$tests = 4; plan tests => $tests} | 13 | BEGIN {$tests = 4; plan tests => $tests} |
14 | 14 | ||
15 | my $successOutput = '/^FPING OK - /'; | ||
16 | my $failureOutput = '/^FPING CRITICAL - /'; | ||
17 | |||
18 | my $host_responsive = getTestParameter("NP_HOST_RESPONSIVE", "The hostname of system responsive to network requests", "localhost"); | 15 | my $host_responsive = getTestParameter("NP_HOST_RESPONSIVE", "The hostname of system responsive to network requests", "localhost"); |
19 | my $host_nonresponsive = getTestParameter("NP_HOST_NONRESPONSIVE", "The hostname of system not responsive to network requests", "10.0.0.1"); | 16 | my $host_nonresponsive = getTestParameter("NP_HOST_NONRESPONSIVE", "The hostname of system not responsive to network requests", "10.0.0.1"); |
20 | my $hostname_invalid = getTestParameter("NP_HOSTNAME_INVALID", "An invalid (not known to DNS) hostname", "nosuchhost"); | 17 | my $hostname_invalid = getTestParameter("NP_HOSTNAME_INVALID", "An invalid (not known to DNS) hostname", "nosuchhost"); |
@@ -29,9 +26,9 @@ if( ! -x "./check_fping") { | |||
29 | elsif ( $> != 0 && (!$fping || ! -u $fping)) { | 26 | elsif ( $> != 0 && (!$fping || ! -u $fping)) { |
30 | $t += skipMsg( "./check_fping", $tests ); | 27 | $t += skipMsg( "./check_fping", $tests ); |
31 | } else { | 28 | } else { |
32 | $t += checkCmd( "./check_fping $host_responsive", 0, $successOutput ); | 29 | $t += checkCmd( "./check_fping $host_responsive", 0, '/^FPING OK - /' ); |
33 | $t += checkCmd( "./check_fping $host_nonresponsive", [ 1, 2 ] ); | 30 | $t += checkCmd( "./check_fping $host_nonresponsive", 2, '/^FPING CRITICAL - /' ); |
34 | $t += checkCmd( "./check_fping $hostname_invalid", [ 1, 2 ] ); | 31 | $t += checkCmd( "./check_fping $hostname_invalid", 3, '/^FPING UNKNOWN - /' ); |
35 | } | 32 | } |
36 | 33 | ||
37 | exit(0) if defined($Test::Harness::VERSION); | 34 | exit(0) if defined($Test::Harness::VERSION); |