diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-03-18 03:51:16 -0400 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-03-18 03:51:16 -0400 |
commit | ead340235ef352674a0033633dc913be5efc292b (patch) | |
tree | 3573e015758fa20ab0549386ee701b57569b376c | |
parent | e9f5442bb3ad6f6070c12f48ec5e3c0f43e26d9a (diff) | |
download | monitoring-plugins-ead340235ef352674a0033633dc913be5efc292b.tar.gz |
Add suggested multi-oid test (John A. Barbuto)
-rw-r--r-- | plugins/t/check_snmp.t | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/t/check_snmp.t b/plugins/t/check_snmp.t index 6d3dcb4a..646cfa43 100644 --- a/plugins/t/check_snmp.t +++ b/plugins/t/check_snmp.t @@ -8,7 +8,7 @@ use strict; use Test::More; use NPTest; -my $tests = 32; +my $tests = 34; plan tests => $tests; my $res; @@ -81,6 +81,10 @@ SKIP: { like($res->output, "/^SNMP CRITICAL - 2 *1*/", "Got two values back" ); like( $res->perf_output, "/ifIndex.2=2/", "Got 1st perf data" ); like( $res->perf_output, "/ifIndex.1=1/", "Got 2nd perf data" ); + + $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w 1:,1: -c 1:,1:"); + cmp_ok( $res->return_code, '==', 0, "Exit OK when querying hrMemorySize and hrSystemProcesses"); + like($res->output, '/^SNMP OK - \d+ \d+/', "String contains hrMemorySize and hrSystemProcesses"); } SKIP: { |