diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/t/check_imap.t | 35 | ||||
-rw-r--r-- | plugins/t/check_swap.t | 29 |
2 files changed, 38 insertions, 26 deletions
diff --git a/plugins/t/check_imap.t b/plugins/t/check_imap.t index 32b4136..fa957d1 100644 --- a/plugins/t/check_imap.t +++ b/plugins/t/check_imap.t | |||
@@ -6,12 +6,9 @@ | |||
6 | # | 6 | # |
7 | 7 | ||
8 | use strict; | 8 | use strict; |
9 | use Test; | 9 | use Test::More tests => 7; |
10 | use NPTest; | 10 | use NPTest; |
11 | 11 | ||
12 | use vars qw($tests); | ||
13 | BEGIN {$tests = 7; plan tests => $tests} | ||
14 | |||
15 | my $host_tcp_smtp = getTestParameter( "host_tcp_smtp", "NP_HOST_TCP_SMTP", "mailhost", | 12 | my $host_tcp_smtp = getTestParameter( "host_tcp_smtp", "NP_HOST_TCP_SMTP", "mailhost", |
16 | "A host providing an STMP Service (a mail server)"); | 13 | "A host providing an STMP Service (a mail server)"); |
17 | 14 | ||
@@ -24,18 +21,26 @@ my $host_nonresponsive = getTestParameter( "host_nonresponsive", "NP_HOST_NONRES | |||
24 | my $hostname_invalid = getTestParameter( "hostname_invalid", "NP_HOSTNAME_INVALID", "nosuchhost", | 21 | my $hostname_invalid = getTestParameter( "hostname_invalid", "NP_HOSTNAME_INVALID", "nosuchhost", |
25 | "An invalid (not known to DNS) hostname" ); | 22 | "An invalid (not known to DNS) hostname" ); |
26 | 23 | ||
27 | my %exceptions = ( 2 => "No IMAP Server present?" ); | ||
28 | |||
29 | my $t; | 24 | my $t; |
30 | 25 | ||
31 | $t += checkCmd( "./check_imap $host_tcp_imap", 0, undef, %exceptions ); | 26 | $t = NPTest->testCmd( "./check_imap $host_tcp_imap" ); |
32 | $t += checkCmd( "./check_imap -H $host_tcp_imap -p 143 -w 9 -c 9 -t 10 -e '* OK'", 0, undef, %exceptions ); | 27 | cmp_ok( $t->return_code, '==', 0, "Contacted imap" ); |
33 | $t += checkCmd( "./check_imap $host_tcp_imap -p 143 -wt 9 -ct 9 -to 10 -e '* OK'", 0, undef, %exceptions ); | 28 | |
34 | $t += checkCmd( "./check_imap $host_nonresponsive", 2 ); | 29 | $t = NPTest->testCmd( "./check_imap -H $host_tcp_imap -p 143 -w 9 -c 9 -to 10 -e '* OK'" ); |
35 | $t += checkCmd( "./check_imap $hostname_invalid", 2 ); | 30 | cmp_ok( $t->return_code, '==', 0, "Got right response" ); |
36 | $t += checkCmd( "./check_imap -H $host_tcp_imap -e unlikely_string", 1); | 31 | |
37 | $t += checkCmd( "./check_imap -H $host_tcp_imap -e unlikely_string -M crit", 2); | 32 | $t = NPTest->testCmd( "./check_imap $host_tcp_imap -p 143 -wt 9 -ct 9 -to 10 -e '* OK'" ); |
33 | cmp_ok( $t->return_code, '==', 0, "Check old parameter options" ); | ||
34 | |||
35 | $t = NPTest->testCmd( "./check_imap $host_nonresponsive" ); | ||
36 | cmp_ok( $t->return_code, '==', 2, "Get error with non reponsive host" ); | ||
37 | |||
38 | $t = NPTest->testCmd( "./check_imap $hostname_invalid" ); | ||
39 | cmp_ok( $t->return_code, '==', 2, "Invalid hostname" ); | ||
40 | |||
41 | $t = NPTest->testCmd( "./check_imap -H $host_tcp_imap -e unlikely_string"); | ||
42 | cmp_ok( $t->return_code, '==', 1, "Got warning with bad response" ); | ||
38 | 43 | ||
44 | $t = NPTest->testCmd( "./check_imap -H $host_tcp_imap -e unlikely_string -M crit"); | ||
45 | cmp_ok( $t->return_code, '==', 2, "Got critical error with bad response" ); | ||
39 | 46 | ||
40 | exit(0) if defined($Test::Harness::VERSION); | ||
41 | exit($tests - $t); | ||
diff --git a/plugins/t/check_swap.t b/plugins/t/check_swap.t index 348010d..435730f 100644 --- a/plugins/t/check_swap.t +++ b/plugins/t/check_swap.t | |||
@@ -6,20 +6,27 @@ | |||
6 | # | 6 | # |
7 | 7 | ||
8 | use strict; | 8 | use strict; |
9 | use Test; | 9 | use Test::More tests => 8; |
10 | use NPTest; | 10 | use NPTest; |
11 | 11 | ||
12 | use vars qw($tests); | ||
13 | BEGIN {$tests = 6; plan tests => $tests} | ||
14 | |||
15 | my $t; | ||
16 | |||
17 | my $successOutput = '/^SWAP OK - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/'; | 12 | my $successOutput = '/^SWAP OK - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/'; |
18 | my $failureOutput = '/^SWAP CRITICAL - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/'; | 13 | my $failureOutput = '/^SWAP CRITICAL - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/'; |
14 | my $warnOutput = '/^SWAP WARNING - [0-9]+\% free \([0-9]+ MB out of [0-9]+ MB\)/'; | ||
15 | |||
16 | my $result; | ||
17 | |||
18 | $result = NPTest->testCmd( "./check_swap -w 1048576 -c 1048576" ); # 1 MB free | ||
19 | cmp_ok( $result->return_code, "==", 0, "At least 1MB free" ); | ||
20 | like( $result->output, $successOutput, "Right output" ); | ||
21 | |||
22 | $result = NPTest->testCmd( "./check_swap -w 1% -c 1%" ); # 1% free | ||
23 | cmp_ok( $result->return_code, "==", 0, 'At least 1% free' ); | ||
24 | like( $result->output, $successOutput, "Right output" ); | ||
19 | 25 | ||
20 | $t += checkCmd( "./check_swap -w 1048576 -c 1048576", 0, $successOutput ); # 1MB free | 26 | $result = NPTest->testCmd( "./check_swap -w 100% -c 100%" ); # 100% (always critical) |
21 | $t += checkCmd( "./check_swap -w 1\% -c 1\%", 0, $successOutput ); # 1% free | 27 | cmp_ok( $result->return_code, "==", 2, 'Get critical because not 100% free' ); |
22 | $t += checkCmd( "./check_swap -w 100\% -c 100\%", 2, $failureOutput ); # 100% free (always fails) | 28 | like( $result->output, $failureOutput, "Right output" ); |
23 | 29 | ||
24 | exit(0) if defined($Test::Harness::VERSION); | 30 | $result = NPTest->testCmd( "./check_swap -w 100% -c 1%" ); # 100% (always warn) |
25 | exit($tests - $t); | 31 | cmp_ok( $result->return_code, "==", 1, 'Get warning because not 100% free' ); |
32 | like( $result->output, $warnOutput, "Right output" ); | ||