diff options
author | Peter Bray <illumino@users.sourceforge.net> | 2005-07-25 01:47:15 (GMT) |
---|---|---|
committer | Peter Bray <illumino@users.sourceforge.net> | 2005-07-25 01:47:15 (GMT) |
commit | cdc06cc3e2c4670d3cd46b0a03adcf7e6958eff1 (patch) | |
tree | 62b074eaca618762fb03f94708ec3def50037697 /plugins/t/check_load.t | |
parent | 05853f47eb6e608de993cc59343c73b96b9b33e2 (diff) | |
download | monitoring-plugins-cdc06cc3e2c4670d3cd46b0a03adcf7e6958eff1.tar.gz |
[1185704] New Testing Infrastructure.
Complete rewrite of the original testing infrastructure and
all test cases (to use the new infrastructure)
See NPTest.pm and issue 1185704 for more details.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1207 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/t/check_load.t')
-rw-r--r-- | plugins/t/check_load.t | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/plugins/t/check_load.t b/plugins/t/check_load.t index 414e09d..8f954dc 100644 --- a/plugins/t/check_load.t +++ b/plugins/t/check_load.t | |||
@@ -1,27 +1,25 @@ | |||
1 | #! /usr/bin/perl -w | 1 | #! /usr/bin/perl -w -I .. |
2 | # | ||
3 | # Load Average Tests via check_load | ||
4 | # | ||
5 | # $Id$ | ||
6 | # | ||
2 | 7 | ||
3 | use strict; | 8 | use strict; |
4 | use Test; | 9 | use Test; |
5 | use vars qw($tests); | 10 | use NPTest; |
6 | 11 | ||
12 | use vars qw($tests); | ||
7 | BEGIN {$tests = 4; plan tests => $tests} | 13 | BEGIN {$tests = 4; plan tests => $tests} |
8 | 14 | ||
9 | my $null = ''; | 15 | my $successOutput = '/^OK - load average: [0-9]\.?[0-9]+, [0-9]\.?[0-9]+, [0-9]\.?[0-9]+/'; |
10 | my $cmd; | 16 | my $failureOutput = '/^CRITICAL - load average: [0-9]\.?[0-9]+, [0-9]\.?[0-9]+, [0-9]\.?[0-9]+/'; |
11 | my $str; | ||
12 | my $t; | ||
13 | 17 | ||
14 | $cmd = "./check_load -w 100,100,100 -c 100,100,100"; | 18 | my $t; |
15 | $str = `$cmd`; | ||
16 | $t += ok $?>>8,0; | ||
17 | print "Test was: $cmd\n" if ($?); | ||
18 | $t += ok $str, '/^OK - load average: [0-9]\.?[0-9]+, [0-9]\.?[0-9]+, [0-9]\.?[0-9]+/'; | ||
19 | 19 | ||
20 | $cmd = "./check_load -w 0,0,0 -c 0,0,0"; | 20 | $t += checkCmd( "./check_load -w 100,100,100 -c 100,100,100", 0, $successOutput ); |
21 | $str = `$cmd`; | 21 | $t += checkCmd( "./check_load -w 0,0,0 -c 0,0,0", 2, $failureOutput ); |
22 | $t += ok $?>>8,2; | ||
23 | print "Test was: $cmd\n" unless ($?); | ||
24 | $t += ok $str, '/^CRITICAL - load average: [0-9]\.?[0-9]+, [0-9]\.?[0-9]+, [0-9]\.?[0-9]+/'; | ||
25 | 22 | ||
26 | exit(0) if defined($Test::Harness::VERSION); | 23 | exit(0) if defined($Test::Harness::VERSION); |
27 | exit($tests - $t); | 24 | exit($tests - $t); |
25 | |||