diff options
author | tonvoon <ton.voon@opsview.com> | 2010-06-23 15:56:29 (GMT) |
---|---|---|
committer | tonvoon <ton.voon@opsview.com> | 2010-06-23 15:56:29 (GMT) |
commit | b8e2850c1add8031a11d951bec1459b203582299 (patch) | |
tree | 174f6b7d59a3f7156504218e3c235e6d95c9a00a /plugins/tests/check_snmp.t | |
parent | 1252195ed5cdf7b5f5fdc1fd5f2b09827a46f6ce (diff) | |
download | monitoring-plugins-b8e2850c1add8031a11d951bec1459b203582299.tar.gz |
Added option to invert search results
Diffstat (limited to 'plugins/tests/check_snmp.t')
-rwxr-xr-x | plugins/tests/check_snmp.t | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/plugins/tests/check_snmp.t b/plugins/tests/check_snmp.t index 1742079..a7a8d2c 100755 --- a/plugins/tests/check_snmp.t +++ b/plugins/tests/check_snmp.t | |||
@@ -51,7 +51,7 @@ if ($ARGV[0] && $ARGV[0] eq "-d") { | |||
51 | } | 51 | } |
52 | } | 52 | } |
53 | 53 | ||
54 | my $tests = 21; | 54 | my $tests = 29; |
55 | if (-x "./check_snmp") { | 55 | if (-x "./check_snmp") { |
56 | plan tests => $tests; | 56 | plan tests => $tests; |
57 | } else { | 57 | } else { |
@@ -141,5 +141,21 @@ is($res->return_code, 0, "OK as no thresholds" ); | |||
141 | is($res->output, "SNMP RATE OK - inoctets 333 | inoctets-rate=333 ", "Check rate decreases due to longer interval"); | 141 | is($res->output, "SNMP RATE OK - inoctets 333 | inoctets-rate=333 ", "Check rate decreases due to longer interval"); |
142 | 142 | ||
143 | 143 | ||
144 | $res = NPTest->testCmd( "./check_snmp -H 127.0.0.1 -C public -p $port_snmp -o .1.3.6.1.4.1.8072.3.2.67.11 -s '\"stringtests\"'" ); | ||
145 | is($res->return_code, 0, "OK as string matches" ); | ||
146 | is($res->output, 'SNMP OK - "stringtests" | ', "Good string match" ); | ||
147 | |||
148 | $res = NPTest->testCmd( "./check_snmp -H 127.0.0.1 -C public -p $port_snmp -o .1.3.6.1.4.1.8072.3.2.67.11 -s ring" ); | ||
149 | is($res->return_code, 2, "CRITICAL as string doesn't match (though is a substring)" ); | ||
150 | is($res->output, 'SNMP CRITICAL - *"stringtests"* | ', "Failed string match" ); | ||
151 | |||
152 | $res = NPTest->testCmd( "./check_snmp -H 127.0.0.1 -C public -p $port_snmp -o .1.3.6.1.4.1.8072.3.2.67.11 --invert-search -s '\"stringtests\"'" ); | ||
153 | is($res->return_code, 2, "CRITICAL as string matches but inverted" ); | ||
154 | is($res->output, 'SNMP CRITICAL - *"stringtests"* | ', "Inverted string match" ); | ||
155 | |||
156 | $res = NPTest->testCmd( "./check_snmp -H 127.0.0.1 -C public -p $port_snmp -o .1.3.6.1.4.1.8072.3.2.67.11 --invert-search -s ring" ); | ||
157 | is($res->return_code, 0, "OK as string doesn't match but inverted" ); | ||
158 | is($res->output, 'SNMP OK - "stringtests" | ', "OK as inverted string no match" ); | ||
159 | |||
144 | 160 | ||
145 | 161 | ||