Code

markup for translation
[nagiosplug.git] / plugins / t / check_load.t
1 #! /usr/bin/perl -w
3 use strict;
4 use Test;
5 use vars qw($tests);
7 BEGIN {$tests = 4; plan tests => $tests}
9 my $null = '';
10 my $cmd;
11 my $str;
12 my $t;
14 $cmd = "./check_load -w 100,100,100 -c 100,100,100";
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]+$/';
20 $cmd = "./check_load -w 0,0,0 -c 0,0,0";
21 $str = `$cmd`;
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]+$/';
26 exit(0) if defined($Test::Harness::VERSION);
27 exit($tests - $t);