summaryrefslogtreecommitdiffstats
path: root/plugins/t/check_swap.t
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2005-11-09 16:40:12 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2005-11-09 16:40:12 (GMT)
commit6224ec31587dc70b21b487a57d59cb863c2cd3a8 (patch)
tree29329797f7e4b4211f119d267ff446bf93a95b57 /plugins/t/check_swap.t
parent38873559580dab20ad4a450136b980849874ed57 (diff)
downloadmonitoring-plugins-6224ec31587dc70b21b487a57d59cb863c2cd3a8.tar.gz
Added new NPTest->testCmd which returns objects back for testing
at the test script level. Updated check_swap and check_imap to this new format git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1279 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/t/check_swap.t')
-rw-r--r--plugins/t/check_swap.t29
1 files changed, 18 insertions, 11 deletions
diff --git a/plugins/t/check_swap.t b/plugins/t/check_swap.t
index 348010d..435730f 100644
--- a/plugins/t/check_swap.t
+++ b/plugins/t/check_swap.t
@@ -6,20 +6,27 @@
6# 6#
7 7
8use strict; 8use strict;
9use Test; 9use Test::More tests => 8;
10use NPTest; 10use NPTest;
11 11
12use vars qw($tests);
13BEGIN {$tests = 6; plan tests => $tests}
14
15my $t;
16
17my $successOutput = '/^SWAP OK - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/'; 12my $successOutput = '/^SWAP OK - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/';
18my $failureOutput = '/^SWAP CRITICAL - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/'; 13my $failureOutput = '/^SWAP CRITICAL - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/';
14my $warnOutput = '/^SWAP WARNING - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/';
15
16my $result;
17
18$result = NPTest->testCmd( "./check_swap -w 1048576 -c 1048576" ); # 1 MB free
19cmp_ok( $result->return_code, "==", 0, "At least 1MB free" );
20like( $result->output, $successOutput, "Right output" );
21
22$result = NPTest->testCmd( "./check_swap -w 1% -c 1%" ); # 1% free
23cmp_ok( $result->return_code, "==", 0, 'At least 1% free' );
24like( $result->output, $successOutput, "Right output" );
19 25
20$t += checkCmd( "./check_swap -w 1048576 -c 1048576", 0, $successOutput ); # 1MB free 26$result = NPTest->testCmd( "./check_swap -w 100% -c 100%" ); # 100% (always critical)
21$t += checkCmd( "./check_swap -w 1\% -c 1\%", 0, $successOutput ); # 1% free 27cmp_ok( $result->return_code, "==", 2, 'Get critical because not 100% free' );
22$t += checkCmd( "./check_swap -w 100\% -c 100\%", 2, $failureOutput ); # 100% free (always fails) 28like( $result->output, $failureOutput, "Right output" );
23 29
24exit(0) if defined($Test::Harness::VERSION); 30$result = NPTest->testCmd( "./check_swap -w 100% -c 1%" ); # 100% (always warn)
25exit($tests - $t); 31cmp_ok( $result->return_code, "==", 1, 'Get warning because not 100% free' );
32like( $result->output, $warnOutput, "Right output" );