Code

Attempt at fixing check_snmp multiline output:
[nagiosplug.git] / plugins / t / check_procs.t
1 #! /usr/bin/perl -w -I ..
2 #
3 # Process Tests via check_procs
4 #
5 #
7 use strict;
8 use Test::More;
9 use NPTest;
11 my $t;
13 if (`uname -s` eq "SunOS\n" && ! -x "/usr/local/nagios/libexec/pst3") {
14         plan skip_all => "Ignoring tests on solaris because of pst3";
15 } else {
16         plan tests => 12;
17 }
19 my $result;
21 $result = NPTest->testCmd( "./check_procs -w 100000 -c 100000" );
22 is( $result->return_code, 0, "Checking less than 10000 processes" );
23 like( $result->output, '/^PROCS OK: [0-9]+ process(es)?$/', "Output correct" );
25 $result = NPTest->testCmd( "./check_procs -w 100000 -c 100000 -s Z" );
26 is( $result->return_code, 0, "Checking less than 100000 zombie processes" );
27 like( $result->output, '/^PROCS OK: [0-9]+ process(es)? with /', "Output correct" );
29 $result = NPTest->testCmd( "./check_procs -w 0 -c 100000" );
30 is( $result->return_code, 1, "Checking warning if processes > 0" );
31 like( $result->output, '/^PROCS WARNING: [0-9]+ process(es)?$/', "Output correct" );
33 $result = NPTest->testCmd( "./check_procs -w 0 -c 0" );
34 is( $result->return_code, 2, "Checking critical if processes > 0" );
35 like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)?$/', "Output correct" );
37 $result = NPTest->testCmd( "./check_procs -w 0 -c 0 -s S" );
38 is( $result->return_code, 2, "Checking critical if sleeping processes" );
39 like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? with /', "Output correct" );
41 $result = NPTest->testCmd( "./check_procs -w 0 -c 100000 -p 1" );
42 is( $result->return_code, 1, "Checking warning for processes by parentid = 1" );
43 like( $result->output, '/^PROCS WARNING: [0-9]+ process(es)? with PPID = 1/', "Output correct" );