2013-11-26 22:54:42 +00:00
|
|
|
#! /usr/bin/perl -w -I ..
|
|
|
|
#
|
|
|
|
# negate checks
|
|
|
|
# Need check_dummy to work for testing
|
|
|
|
#
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use Test::More;
|
2014-10-15 12:48:52 +00:00
|
|
|
use Cwd;
|
2013-11-26 22:54:42 +00:00
|
|
|
use NPTest;
|
|
|
|
|
2013-11-26 22:56:50 +00:00
|
|
|
# 15 tests in the first part, 9 in timeout tests and 2 * 32 in the last loops
|
|
|
|
plan tests => 88;
|
2013-11-26 22:54:42 +00:00
|
|
|
|
|
|
|
my $res;
|
|
|
|
|
2014-10-15 12:48:52 +00:00
|
|
|
my $PWD = getcwd();
|
2013-11-26 22:54:42 +00:00
|
|
|
|
|
|
|
$res = NPTest->testCmd( "./negate" );
|
|
|
|
is( $res->return_code, 3, "Not enough parameters");
|
|
|
|
like( $res->output, "/Could not parse arguments/", "Could not parse arguments");
|
|
|
|
|
|
|
|
$res = NPTest->testCmd( "./negate bobthebuilder" );
|
|
|
|
is( $res->return_code, 3, "Require full path" );
|
|
|
|
like( $res->output, "/Require path to command/", "Appropriate error message");
|
|
|
|
|
|
|
|
$res = NPTest->testCmd( "./negate $PWD/check_dummy 0 'a dummy okay'" );
|
|
|
|
is( $res->return_code, 2, "OK changed to CRITICAL" );
|
|
|
|
is( $res->output, "OK: a dummy okay", "Output as expected" );
|
|
|
|
|
|
|
|
$res = NPTest->testCmd( "./negate '$PWD/check_dummy 0 redsweaterblog'");
|
|
|
|
is( $res->return_code, 2, "OK => CRIT with a single quote for command to run" );
|
|
|
|
is( $res->output, "OK: redsweaterblog", "Output as expected" );
|
|
|
|
|
|
|
|
$res = NPTest->testCmd( "./negate $PWD/check_dummy 1 'a warn a day keeps the managers at bay'" );
|
|
|
|
is( $res->return_code, 1, "WARN stays same" );
|
|
|
|
|
|
|
|
$res = NPTest->testCmd( "./negate $PWD/check_dummy 3 mysterious");
|
|
|
|
is( $res->return_code, 3, "UNKNOWN stays same" );
|
|
|
|
|
|
|
|
$res = NPTest->testCmd( "./negate \"$PWD/check_dummy 0 'a dummy okay'\"" );
|
|
|
|
is( $res->output, "OK: a dummy okay", "Checking slashed quotes - the single quotes are re-evaluated at shell" );
|
|
|
|
|
|
|
|
# Output is "OK: a" because check_dummy only returns the first arg
|
|
|
|
$res = NPTest->testCmd( "./negate $PWD/check_dummy 0 a dummy okay" );
|
|
|
|
is( $res->output, "OK: a", "Multiple args passed as arrays" );
|
|
|
|
|
|
|
|
$res = NPTest->testCmd( "./negate $PWD/check_dummy 0 'a dummy okay'" );
|
|
|
|
is( $res->output, "OK: a dummy okay", "The quoted string is passed through to subcommand correctly" );
|
|
|
|
|
|
|
|
$res = NPTest->testCmd( "./negate '$PWD/check_dummy 0' 'a dummy okay'" );
|
|
|
|
is( $res->output, "No data returned from command", "Bad command, as expected (trying to execute './check_dummy 0')");
|
|
|
|
|
2014-10-15 12:48:52 +00:00
|
|
|
$res = NPTest->testCmd( './negate '.$PWD.'/check_dummy 0 \'$$ a dummy okay\'' );
|
2013-11-26 22:54:42 +00:00
|
|
|
is( $res->output, 'OK: $$ a dummy okay', 'Proves that $$ is not being expanded again' );
|
|
|
|
|
|
|
|
my %state = (
|
|
|
|
ok => 0,
|
|
|
|
warning => 1,
|
|
|
|
critical => 2,
|
|
|
|
unknown => 3,
|
|
|
|
);
|
2013-11-26 22:56:50 +00:00
|
|
|
|
|
|
|
# Timeout tests
|
|
|
|
$res = NPTest->testCmd( "./negate -t 2 /bin/sh -c 'sleep 5'" );
|
|
|
|
is( $res->output, 'CRITICAL - Plugin timed out after 2 seconds' );
|
|
|
|
|
|
|
|
foreach my $state (keys(%state)) {
|
|
|
|
$res = NPTest->testCmd( "./negate -t 2 -T $state /bin/sh -c 'sleep 5'" );
|
|
|
|
is( $res->return_code, $state{$state}, "Got timeout state $state" );
|
|
|
|
is( $res->output, uc($state)." - Plugin timed out after 2 seconds", "Timeout state $state output");
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $current_state (keys(%state)) {
|
|
|
|
foreach my $new_state (keys(%state)) {
|
2013-11-26 22:54:42 +00:00
|
|
|
$res = NPTest->testCmd( "./negate --$current_state=$new_state ./check_dummy ".$state{$current_state}." 'Fake $new_state'" );
|
|
|
|
is( $res->return_code, $state{$new_state}, "Got fake $new_state" );
|
2013-11-26 22:56:50 +00:00
|
|
|
is( $res->output, uc($current_state).": Fake $new_state", "Fake $new_state output");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 19:01:00 +00:00
|
|
|
# Same as above with substitute
|
2013-11-26 22:56:50 +00:00
|
|
|
foreach my $current_state (keys(%state)) {
|
|
|
|
foreach my $new_state (keys(%state)) {
|
|
|
|
$res = NPTest->testCmd( "./negate -s --$current_state=$new_state ./check_dummy ".$state{$current_state}." 'Fake $new_state'" );
|
|
|
|
is( $res->return_code, $state{$new_state}, "Got fake $new_state (with substitute)" );
|
|
|
|
is( $res->output, uc($new_state).": Fake $new_state", "Substitued fake $new_state output");
|
2013-11-26 22:54:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|