diff options
Diffstat (limited to 'plugins/t/check_users.t')
-rw-r--r-- | plugins/t/check_users.t | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/plugins/t/check_users.t b/plugins/t/check_users.t index 593f173..4b313d3 100644 --- a/plugins/t/check_users.t +++ b/plugins/t/check_users.t | |||
@@ -1,28 +1,25 @@ | |||
1 | #! /usr/bin/perl -w | 1 | #! /usr/bin/perl -w -I .. |
2 | # | ||
3 | # Logged in Users Tests via check_users | ||
4 | # | ||
5 | # $Id$ | ||
6 | # | ||
2 | 7 | ||
3 | use strict; | 8 | use strict; |
4 | use Cache; | ||
5 | use Test; | 9 | use Test; |
6 | use vars qw($tests); | 10 | use NPTest; |
7 | 11 | ||
12 | use vars qw($tests); | ||
8 | BEGIN {$tests = 4; plan tests => $tests} | 13 | BEGIN {$tests = 4; plan tests => $tests} |
9 | 14 | ||
10 | my $null = ''; | 15 | my $successOutput = '/^USERS OK - [0-9]+ users currently logged in/'; |
11 | my $cmd; | 16 | my $failureOutput = '/^USERS CRITICAL - [0-9]+ users currently logged in/'; |
12 | my $str; | ||
13 | my $t; | ||
14 | 17 | ||
15 | $cmd = "./check_users 1000 1000"; | 18 | my $t; |
16 | $str = `$cmd`; | ||
17 | $t += ok $?>>8,0; | ||
18 | print "Test was: $cmd\n" if ($?); | ||
19 | $t += ok $str, '/^USERS OK - +[0-9]+ users currently logged in$/'; | ||
20 | 19 | ||
21 | $cmd = "./check_users 0 0"; | 20 | $t += checkCmd( "./check_users 1000 1000", 0, $successOutput ); |
22 | $str = `$cmd`; | 21 | $t += checkCmd( "./check_users 0 0", 2, $failureOutput ); |
23 | $t += ok $?>>8,2; | ||
24 | print "Test was: $cmd\n" unless ($?); | ||
25 | $t += ok $str, '/^USERS CRITICAL - [0-9]+ +users currently logged in$/'; | ||
26 | 22 | ||
27 | exit(0) if defined($Test::Harness::VERSION); | 23 | exit(0) if defined($Test::Harness::VERSION); |
28 | exit($tests - $t); | 24 | exit($tests - $t); |
25 | |||