summaryrefslogtreecommitdiffstats
path: root/t/Monitoring-Plugin-Functions-03.t
blob: 9f0a62cdda1ccf34ffa97699a167637d2a2dfb0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# max_state tests

use strict;
use Test::More tests => 8;

BEGIN { use_ok("Monitoring::Plugin::Functions", ":all") }

my $new_state = max_state( OK, WARNING );

is( $new_state, WARNING, "Moved up to WARNING" );
is( max_state( $new_state, UNKNOWN ), WARNING, "Still at WARNING" );

$new_state = max_state( $new_state, CRITICAL );
is( $new_state, CRITICAL, "Now at CRITICAL" );
is( max_state( OK, OK ), OK, "This is OK" );

is( max_state( OK, UNKNOWN ), OK, "This is still OK, not UNKNOWN" );

is( max_state( OK, OK, OK, OK, OK, WARNING ), WARNING, "Use WARNING in this list" );

is( max_state(), UNKNOWN, "Return UNKNOWN if no parameters" );