1 #! /usr/bin/perl -w -I ..
3 # Process Tests via check_procs
13 if (`uname -s` eq "SunOS\n" && ! -x
"/usr/local/nagios/libexec/pst3") {
14 plan skip_all
=> "Ignoring tests on solaris because of pst3";
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)? | procs=[0-9]+;100000;100000;0;$/', "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 if(fork() == 0) { exec("sleep 7"); } else { sleep(1) } # fork a test process in child and give child time to fork in parent
30 $result = NPTest
->testCmd( "./check_procs -a 'sleep 7'" );
31 is
( $result->return_code, 0, "Parent process is ignored" );
32 like
( $result->output, '/^PROCS OK: 1 process?/', "Output correct" );
34 $result = NPTest
->testCmd( "./check_procs -w 0 -c 100000" );
35 is
( $result->return_code, 1, "Checking warning if processes > 0" );
36 like
( $result->output, '/^PROCS WARNING: [0-9]+ process(es)? | procs=[0-9]+;0;100000;0;$/', "Output correct" );
38 $result = NPTest
->testCmd( "./check_procs -w 0 -c 0" );
39 is
( $result->return_code, 2, "Checking critical if processes > 0" );
40 like
( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? | procs=[0-9]+;0;0;0;$/', "Output correct" );
42 $result = NPTest
->testCmd( "./check_procs -w 0 -c 0 -s Ss" );
43 is
( $result->return_code, 2, "Checking critical if sleeping processes" );
44 like
( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? with /', "Output correct" );
46 $result = NPTest
->testCmd( "./check_procs -w 0 -c 100000 -p 1" );
47 is
( $result->return_code, 1, "Checking warning for processes by parentid = 1" );
48 like
( $result->output, '/^PROCS WARNING: [0-9]+ process(es)? with PPID = 1/', "Output correct" );