1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
# Monitoring::Plugin test set 2, testing MP::Functions wrapping
use strict;
use Test::More tests => 103;
BEGIN { use_ok("Monitoring::Plugin") }
require Monitoring::Plugin::Functions;
Monitoring::Plugin::Functions::_fake_exit(1);
# Hardcoded checks of constants
my %ERRORS = %Monitoring::Plugin::Functions::ERRORS;
is(OK, $ERRORS{OK}, "OK => $ERRORS{OK}");
is(WARNING, $ERRORS{WARNING}, "WARNING => $ERRORS{WARNING}");
is(CRITICAL, $ERRORS{CRITICAL}, "CRITICAL => $ERRORS{CRITICAL}");
is(UNKNOWN, $ERRORS{UNKNOWN}, "UNKNOWN => $ERRORS{UNKNOWN}");
is(DEPENDENT, $ERRORS{DEPENDENT}, "DEPENDENT => $ERRORS{DEPENDENT}");
my $plugin = 'TEST_PLUGIN';
my $np = Monitoring::Plugin->new( shortname => $plugin );
is($np->shortname, $plugin, "shortname() is $plugin");
# Test plugin_exit( CONSTANT, $msg ), plugin_exit( $string, $msg )
my $r;
my @ok = (
[ OK, "OK", 'test the first', ],
[ WARNING, "WARNING", 'test the second', ],
[ CRITICAL, "CRITICAL", 'test the third', ],
[ UNKNOWN, "UNKNOWN", 'test the fourth', ],
[ DEPENDENT, "DEPENDENT", 'test the fifth', ],
);
for (@ok) {
# CONSTANT
$r = $np->plugin_exit($_->[0], $_->[2]);
is($r->return_code, $_->[0],
sprintf('plugin_exit(%s, $msg) returned %s', $_->[1], $_->[0]));
like($r->message, qr/$plugin\b.*$_->[1]\b.*\b$_->[2]$/,
sprintf('plugin_exit(%s, $msg) output matched "%s"', $_->[1],
$plugin . ' ' . $_->[1] . '.*' . $_->[2]));
# $string
$r = $np->plugin_exit($_->[1], $_->[2]);
is($r->return_code, $_->[0],
sprintf('plugin_exit("%s", $msg) returned %s', $_->[1], $_->[0]));
like($r->message, qr/$plugin\b.*$_->[1]\b.*\b$_->[2]$/,
sprintf('plugin_exit("%s", $msg) output matched "%s"', $_->[1],
$plugin . ' ' . $_->[1] . '.*' . $_->[2]));
like($r, qr/$plugin\b.*$_->[1]\b.*\b$_->[2]$/,
sprintf('plugin_exit("%s", $msg) stringified matched "%s"', $_->[1],
$plugin . ' ' . $_->[1] . '.*' . $_->[2]));
}
# plugin_exit code corner cases
my @ugly1 = (
[ -1, 'testing code -1' ],
[ 7, 'testing code 7' ],
[ undef, 'testing code undef' ],
[ '', qq(testing code '') ],
[ 'string', qq(testing code 'string') ],
);
for (@ugly1) {
$r = $np->plugin_exit($_->[0], $_->[1]);
my $display = defined $_->[0] ? "'$_->[0]'" : 'undef';
is($r->return_code, UNKNOWN, "plugin_exit($display, \$msg) returned ". UNKNOWN);
like($r->message, qr/UNKNOWN\b.*\b$_->[1]$/,
sprintf('plugin_exit(%s, $msg) output matched "%s"',
$display, 'UNKNOWN.*' . $_->[1]));
}
# plugin_exit message corner cases
my @ugly2 = (
[ '' ],
[ undef ],
[ UNKNOWN ],
);
for (@ugly2) {
$r = $np->plugin_exit(CRITICAL, $_->[0]);
my $display1 = defined $_->[0] ? "'$_->[0]'" : "undef";
my $display2 = defined $_->[0] ? $_->[0] : '';
like($r->message, qr/CRITICAL\b.*\b$display2$/,
sprintf('plugin_exit(%s, $msg) output matched "%s"',
$display1, "CRITICAL.*$display2"));
}
# Test plugin_die( $msg )
my @msg = (
[ 'die you dog' ],
[ '' ],
[ undef ],
);
for (@msg) {
$r = $np->plugin_die($_->[0]);
my $display1 = defined $_->[0] ? "'$_->[0]'" : "undef";
my $display2 = defined $_->[0] ? $_->[0] : '';
is($r->return_code, UNKNOWN,
sprintf('plugin_die(%s) returned UNKNOWN', $display1));
like($r->message, qr/UNKNOWN\b.*\b$display2$/,
sprintf('plugin_die(%s) output matched "%s"', $display1,
"UNKNOWN.*$display2"));
}
# Test plugin_die( CONSTANT, $msg ), plugin_die( $msg, CONSTANT ),
# plugin_die( $string, $msg ), and plugin_die( $msg, $string )
@ok = (
[ OK, "OK", 'test the first', ],
[ WARNING, "WARNING", 'test the second', ],
[ CRITICAL, "CRITICAL", 'test the third', ],
[ UNKNOWN, "UNKNOWN", 'test the fourth', ],
[ DEPENDENT, "DEPENDENT", 'test the fifth', ],
);
for (@ok) {
# CONSTANT, $msg
$r = $np->plugin_die($_->[0], $_->[2]);
is($r->return_code, $_->[0],
sprintf('plugin_die(%s, $msg) returned %s', $_->[1], $_->[0]));
like($r->message, qr/$_->[1]\b.*\b$_->[2]$/,
sprintf('plugin_die(%s, $msg) output matched "%s"',
$_->[1], $_->[1] . '.*' . $_->[2]));
# $msg, CONSTANT
$r = $np->plugin_die($_->[2], $_->[0]);
is($r->return_code, $_->[0],
sprintf('plugin_die($msg, %s) returned %s', $_->[1], $_->[0]));
like($r->message, qr/$_->[1]\b.*\b$_->[2]$/,
sprintf('plugin_die($msg, %s) output matched "%s"',
$_->[1], $_->[1] . '.*' . $_->[2]));
# $string, $msg
$r = $np->plugin_die($_->[1], $_->[2]);
is($r->return_code, $_->[0],
sprintf('plugin_die("%s", $msg) returned %s', $_->[1], $_->[0]));
like($r->message, qr/$_->[1]\b.*\b$_->[2]$/,
sprintf('plugin_die("%s", $msg) output matched "%s"', $_->[1],
$_->[1] . '.*' . $_->[2]));
like($r, qr/$_->[1]\b.*\b$_->[2]$/,
sprintf('plugin_die("%s", $msg) stringified matched "%s"', $_->[1],
$_->[1] . '.*' . $_->[2]));
# $string, $msg
$r = $np->plugin_die($_->[2], $_->[1]);
is($r->return_code, $_->[0],
sprintf('plugin_die($msg, "%s") returned %s', $_->[1], $_->[0]));
like($r->message, qr/$_->[1]\b.*\b$_->[2]$/,
sprintf('plugin_die($msg, "%s") output matched "%s"', $_->[1],
$_->[1] . '.*' . $_->[2]));
like($r, qr/$_->[1]\b.*\b$_->[2]$/,
sprintf('plugin_die($msg, "%s") stringified matched "%s"', $_->[1],
$_->[1] . '.*' . $_->[2]));
}
# shortname testing
SKIP: {
skip "requires File::Basename", 2 unless eval { require File::Basename };
$np = Monitoring::Plugin->new( version => "1");
$plugin = uc File::Basename::basename($0);
$plugin =~ s/\..*$//;
is($np->shortname, $plugin, "shortname() is '$plugin'");
$r = $np->plugin_exit(OK, "foobar");
like($r->message, qr/^$plugin OK/, "message begins with '$plugin OK'");
}
|