diff options
author | Sven Nierlein <sven@nierlein.de> | 2016-11-08 00:29:42 +0100 |
---|---|---|
committer | Sven Nierlein <sven@nierlein.de> | 2016-11-08 00:29:42 +0100 |
commit | 1d4874240a05c2a847e6ec74ff31acb3d3ed1449 (patch) | |
tree | a10f0158ccecb9df1fca5815a8fdd8b525844150 /plugins/t | |
parent | d9999194e6a801f9b8fecc7f5faa109f59b10648 (diff) | |
download | monitoring-plugins-1d4874240a05c2a847e6ec74ff31acb3d3ed1449.tar.gz |
check_snmp: add testcase for no datatype
Signed-off-by: Sven Nierlein <sven@nierlein.de>
Diffstat (limited to 'plugins/t')
-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 aefd872a..6f870d43 100644 --- a/plugins/t/check_snmp.t +++ b/plugins/t/check_snmp.t @@ -10,7 +10,7 @@ use NPTest; BEGIN { plan skip_all => 'check_snmp is not compiled' unless -x "./check_snmp"; - plan tests => 61; + plan tests => 63; } my $res; @@ -153,6 +153,10 @@ SKIP: { $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0"); cmp_ok( $res->return_code, '==', 0, "Timetick used as a string"); like($res->output, '/^SNMP OK - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s.*$/', "Timetick used as a string, result printed rather than parsed"); + + $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o HOST-RESOURCES-MIB::hrSWRunParameters.1"); + cmp_ok( $res->return_code, '==', 0, "Timetick used as a string"); + is( $res->output, 'SNMP OK - "" | ', "snmp response without datatype" ); } SKIP: { |