aboutsummaryrefslogtreecommitdiff
path: root/plugins/tests
diff options
context:
space:
mode:
authorGravatar Sven Nierlein <Sven.Nierlein@consol.de> 2014-06-12 11:45:49 +0200
committerGravatar Sven Nierlein <Sven.Nierlein@consol.de> 2014-06-12 11:45:49 +0200
commit3529d7465d31234ec634939ed1a6bdc915b73ccd (patch)
treefd655ebf6e4e5bfda357a45d5bcab4e6a0ea7b2f /plugins/tests
parenta10b93eef27ece065e72a28ebffad9969ebc50d0 (diff)
downloadmonitoring-plugins-3529d7465d31234ec634939ed1a6bdc915b73ccd.tar.gz
tests: parts of the check_procs test only work when uid -2 exists
skip those tests if the uid does not exist Signed-off-by: Sven Nierlein <Sven.Nierlein@consol.de>
Diffstat (limited to 'plugins/tests')
-rwxr-xr-xplugins/tests/check_procs.t28
1 files changed, 16 insertions, 12 deletions
diff --git a/plugins/tests/check_procs.t b/plugins/tests/check_procs.t
index 1ad2c2f1..b153d5d2 100755
--- a/plugins/tests/check_procs.t
+++ b/plugins/tests/check_procs.t
@@ -48,21 +48,25 @@ SKIP: {
like( $result->output, '/^PROCS OK: 1 process with command name \'launchd\', UID = 501 (.*)$/', "Output correct" );
}
-$result = NPTest->testCmd( "$command -u -2 -w 2:2" );
-is( $result->return_code, 1, "Checking processes with userid=-2" );
-like( $result->output, '/^PROCS WARNING: 3 processes with UID = -2 \(nobody\)$/', "Output correct" );
+SKIP: {
+ skip 'user with uid -2 required', 8 unless getpwuid(-2);
+
+ $result = NPTest->testCmd( "$command -u -2 -w 2:2" );
+ is( $result->return_code, 1, "Checking processes with userid=-2" );
+ like( $result->output, '/^PROCS WARNING: 3 processes with UID = -2 \(nobody\)$/', "Output correct" );
-$result = NPTest->testCmd( "$command -u -2 -w 3:3" );
-is( $result->return_code, 0, "Checking processes with userid=-2 past threshold" );
-like( $result->output, '/^PROCS OK: 3 processes with UID = -2 \(nobody\)$/', "Output correct" );
+ $result = NPTest->testCmd( "$command -u -2 -w 3:3" );
+ is( $result->return_code, 0, "Checking processes with userid=-2 past threshold" );
+ like( $result->output, '/^PROCS OK: 3 processes with UID = -2 \(nobody\)$/', "Output correct" );
-$result = NPTest->testCmd( "$command -u -2 -a usb" );
-is( $result->return_code, 0, "Checking processes with userid=-2 and usb in arguments" );
-like( $result->output, '/^PROCS OK: 1 process with UID = -2 \(nobody\), args \'usb\'/', "Output correct" );
+ $result = NPTest->testCmd( "$command -u -2 -a usb" );
+ is( $result->return_code, 0, "Checking processes with userid=-2 and usb in arguments" );
+ like( $result->output, '/^PROCS OK: 1 process with UID = -2 \(nobody\), args \'usb\'/', "Output correct" );
-$result = NPTest->testCmd( "$command -u -2 -a UsB" );
-is( $result->return_code, 0, "Checking case sensitivity of args" );
-like( $result->output, '/^PROCS OK: 0 processes with UID = -2 \(nobody\), args \'UsB\'/', "Output correct" );
+ $result = NPTest->testCmd( "$command -u -2 -a UsB" );
+ is( $result->return_code, 0, "Checking case sensitivity of args" );
+ like( $result->output, '/^PROCS OK: 0 processes with UID = -2 \(nobody\), args \'UsB\'/', "Output correct" );
+};
$result = NPTest->testCmd( "$command --ereg-argument-array='mdworker.*501'" );
is( $result->return_code, 0, "Checking regexp search of arguments" );