diff options
author | Matthias Eble <psychotrahe@users.sourceforge.net> | 2007-05-09 08:16:44 +0000 |
---|---|---|
committer | Matthias Eble <psychotrahe@users.sourceforge.net> | 2007-05-09 08:16:44 +0000 |
commit | c3c75a0980824f71351ee1efee9634551b0f0bc1 (patch) | |
tree | 45cd650cdaac165300c6a5b4835dd75923e2ddd0 | |
parent | 9a3e7f9e8778c845c8752af657364928081f5220 (diff) | |
download | monitoring-plugins-c3c75a0980824f71351ee1efee9634551b0f0bc1.tar.gz |
added testcase to verify that old positional arguments only select one path
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1707 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins/t/check_disk.t | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/t/check_disk.t b/plugins/t/check_disk.t index 2ec6cabb..5c6aa39a 100644 --- a/plugins/t/check_disk.t +++ b/plugins/t/check_disk.t @@ -24,7 +24,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 => 68; + plan tests => 69; } $result = NPTest->testCmd( @@ -114,10 +114,8 @@ like ( $result->only_output, qr/$more_free/, "Have disk name in text"); $result = NPTest->testCmd( "./check_disk -w 1 -c 1 -p $more_free -p $less_free" ); cmp_ok( $result->return_code, '==', 0, "At least 1 MB available on $more_free and $less_free"); $_ = $result->output; -print $result->output."\n"; my ($free_mb_on_mp1, $free_mb_on_mp2) = (m/(\d+) MB .* (\d+) MB /g); my $free_mb_on_all = $free_mb_on_mp1 + $free_mb_on_mp2; -print "$free_mb_on_all = $free_mb_on_mp1 + $free_mb_on_mp2\n"; @@ -255,6 +253,7 @@ cmp_ok( $result->return_code, "==", 2, "100 GB empty" ); # Checking old syntax of check_disk warn crit [fs], with warn/crit at USED% thresholds $result = NPTest->testCmd( "./check_disk 0 0 ".${mountpoint_valid} ); cmp_ok( $result->return_code, "==", 2, "Old syntax: 0% used"); +like ( $result->only_output, qr(^[^;]*;[^;]*$), "Select only one path with positional arguments"); $result = NPTest->testCmd( "./check_disk 100 100 $mountpoint_valid" ); cmp_ok( $result->return_code, '==', 0, "Old syntax: 100% used" ); |