diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-03-23 12:01:21 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-03-23 12:01:21 +0000 |
commit | 61cd9f525aa236250b6768e6db2977c836c57d96 (patch) | |
tree | 107e0b4fcd7bb3c42fcc1b7c51c4e7d83c726f38 | |
parent | 3ebbe5c55bfbe0316652abc5e8466e78bc89eb7a (diff) | |
download | monitoring-plugins-61cd9f525aa236250b6768e6db2977c836c57d96.tar.gz |
Incorrect output when checking non-existent disk (John Rouillard - 1326050)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1349 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | NPTest.pm | 7 | ||||
-rw-r--r-- | plugins/check_disk.c | 4 | ||||
-rw-r--r-- | plugins/t/check_disk.t | 18 |
3 files changed, 25 insertions, 4 deletions
@@ -596,6 +596,13 @@ sub output { } } +sub perf_output { + my $self = shift; + $_ = $self->{output}; + s/[^|]*\|//; + return $_; +} + sub testCmd { my $class = shift; my $command = shift or die "No command passed to testCmd"; diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 0ee6dc87..fa913ac7 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c @@ -275,8 +275,6 @@ main (int argc, char **argv) } - asprintf (&output, "%s|%s", output, perf); - if (verbose > 2) asprintf (&output, "%s%s", output, details); @@ -290,7 +288,7 @@ main (int argc, char **argv) temp_list = temp_list->name_next; } - printf ("DISK %s%s\n", state_text (result), output); + printf ("DISK %s%s|%s\n", state_text (result), output, perf); return result; } diff --git a/plugins/t/check_disk.t b/plugins/t/check_disk.t index 385865fe..90ccc26a 100644 --- a/plugins/t/check_disk.t +++ b/plugins/t/check_disk.t @@ -22,7 +22,7 @@ my $mountpoint2_valid = getTestParameter( "NP_MOUNTPOINT2_VALID", "Path to anoth if ($mountpoint_valid eq "" or $mountpoint2_valid eq "") { plan skip_all => "Need 2 mountpoints to test"; } else { - plan tests => 26; + plan tests => 31; } $result = NPTest->testCmd( @@ -157,3 +157,19 @@ TODO: { $result = NPTest->testCmd( "./check_disk 200 0 $mountpoint_valid" ); cmp_ok( $result->return_code, '==', 3, "Old syntax: Error with values outside percent range" ); +TODO: { + local $TODO = "Check existence of each filesystem as a directory"; + $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p /bob" ); + cmp_ok( $result->return_code, '==', 2, "Checking /bob - return error because /bob does not exist" ); +} + +$result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p /" ); +my $root_output = $result->output; + +$result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p /etc" ); +cmp_ok( $result->return_code, '==', 0, "Checking /etc - should return info for /" ); +cmp_ok( $result->output, 'eq', $root_output, "check_disk /etc gives same as check_disk /"); + +$result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p / -p /bob" ); +cmp_ok( $result->return_code, '==', 2, "Checking / and /bob gives critical"); +unlike( $result->perf_output, 'm#/bob#', "perf data does not have /bob in it"); |