Code

Added testcases for check_ifoperstatus
[nagiosplug.git] / plugins-scripts / t / check_ifoperstatus.t
1 #! /usr/bin/perl -w -I ..
2 #
3 # SNMP Test via check_ifoperstatus
4 #
5 #
7 use strict;
8 use Test::More;
9 use NPTest;
11 my $tests = 15;
12 plan tests => $tests;
13 my $res;
15 my $plugin = "check_ifoperstatus";
16 SKIP: {
17         skip "$plugin is not created", $tests if ( ! -x $plugin );
19         my $host_snmp = getTestParameter( "host_snmp",          "NP_HOST_SNMP",      "localhost",
20                                            "A host providing an SNMP Service");
22         my $snmp_community = getTestParameter( "snmp_community",     "NP_SNMP_COMMUNITY", "public",
23                                            "The SNMP Community string for SNMP Testing (assumes snmp v1)" );
25         my $host_nonresponsive = getTestParameter( "host_nonresponsive", "NP_HOST_NONRESPONSIVE", "10.0.0.1",
26                                                    "The hostname of system not responsive to network requests" );
28         my $hostname_invalid   = getTestParameter( "hostname_invalid",   "NP_HOSTNAME_INVALID",   "nosuchhost",
29                                                    "An invalid (not known to DNS) hostname" );
31         $res = NPTest->testCmd( "./$plugin" );
32         is( $res->return_code, 3, "No arguments" );
33         like( $res->output, '/usage/', "Output contains usage" );
34         
35         $res = NPTest->testCmd( "./$plugin -H fakehostname" );
36         is( $res->return_code, 3, "No key/descr specified" );
37         like( $res->output, '/Either a valid snmp key/', "Output contains 'Either a valid snmp key'" );
39         $res = NPTest->testCmd( "./$plugin -H fakehost -k 1 -v 3 --seclevel rubbish --secname foobar" );
40         is( $res->return_code, 3, "invalid seclevel" );
41         like( $res->output, "/Must define a valid security level/", "Output contains 'Must define a valid security level'" );
43         SKIP: {
44                 skip "no snmp host defined", 6 if ( ! $host_snmp );
46                 $res = NPTest->testCmd( "./$plugin -H $host_snmp -C $snmp_community -k 1");
47                 cmp_ok( $res->return_code, '==', 0, "Exit OK for ifindex 1" ); 
48                 like($res->output, '/^OK.*Interface.*is up/', "String contains OK Interface is up");
50                 $res = NPTest->testCmd( "./$plugin -H $host_snmp -C $snmp_community -d lo");
51                 cmp_ok( $res->return_code, '==', 0, "Exit OK for ifdescr lo" ); 
52                 like($res->output, '/^OK.*Interface.*is up/', "String contains OK Interface is up");
54                 $res = NPTest->testCmd( "./$plugin -H $host_snmp -C $snmp_community -k 1 -n rubbish");
55                 cmp_ok( $res->return_code, '==', 3, "Exit UNKNOWN if interface name doesn't match" ); 
56                 like($res->output, '/doesn\'t match snmp value/', "String contains 'doesn't match snmp value'");
58         }
60         SKIP: {
61                 skip "no non responsive host defined", 1 if ( ! $host_nonresponsive );
62                 $res = NPTest->testCmd( "./$plugin -H $host_nonresponsive -C $snmp_community -k 1");
63                 cmp_ok( $res->return_code, '==', 1, "Exit WARNING with non responsive host" ); 
64         }
66         SKIP: {
67                 skip "no invalid host defined", 2 if ( ! $hostname_invalid );
68                 $res = NPTest->testCmd( "./$plugin -H $hostname_invalid -C $snmp_community -k 1");
69                 cmp_ok( $res->return_code, '==', 3, "Exit UNKNOWN with invalid host" ); 
70                 like($res->output, "/Unable to resolve.*$hostname_invalid/", "String matches unable to resolve.*$hostname_invalid");
71         }
73 }