File: mib.t

package info (click to toggle)
net-snmp 5.9.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 38,720 kB
  • sloc: ansic: 282,878; perl: 17,704; sh: 12,151; makefile: 2,711; python: 734; xml: 663; pascal: 62; sql: 47
file content (223 lines) | stat: -rw-r--r-- 7,594 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
#!./perl

# Written by John Stoffel (jfs@fluent.com) - 10/13/1997

use strict;
use warnings;

BEGIN {
    eval "use Cwd qw(abs_path)";
    $ENV{'MIBS'} = 'ALL';
}

# to print the description...
$SNMP::save_descriptions = 1;

use Test;
BEGIN {plan tests => 38}
use SNMP;
use Data::Dumper;

$SNMP::verbose = 0;
$SNMP::best_guess = 2;

require "t/startagent.pl";
use vars qw($bad_name $bad_oid $name $name_long $name_module $name_module2
            $name_module_long $name_module_long2 $oid);
require "t/startagent.pl";

my $DEBUG;

#############################  1  ######################################
#check if
my $res = $SNMP::MIB{sysDescr}{label};
print STDERR ("Test 1: label is $res\n") if ($DEBUG);
ok("sysDescr" eq $res);
print STDERR ("\n") if ($DEBUG);
#############################  2  ######################################
$res =  $SNMP::MIB{sysDescr}{objectID};
print STDERR ("Test 2: OID is $res\n") if ($DEBUG);
ok(defined($res));
print STDERR ("\n") if ($DEBUG);
#############################  3  ######################################
$res =  $SNMP::MIB{sysDescr}{access};
print STDERR ("Test 3: access is $res\n") if ($DEBUG);
ok($res eq 'ReadOnly');
print STDERR ("\n") if ($DEBUG);
##############################  4  ###################################
$res =  $SNMP::MIB{sysLocation}{access};
#$res =  $SNMP::MIB{sysORIndex}{access};
ok($res eq 'ReadWrite');
##############################  5  ###################################
$res =  $SNMP::MIB{sysLocation}{type};
ok($res eq 'OCTETSTR');
#############################  6  ####################################
$res =  $SNMP::MIB{sysLocation}{status};
print STDERR ("Test 6: status is $res\n") if ($DEBUG);
ok($res eq 'Current');
print STDERR ("\n") if ($DEBUG);
#############################  7  #################################
$res =  $SNMP::MIB{sysORTable}{access};
print STDERR ("Test 7: access is $res\n") if ($DEBUG);
ok($res eq 'NoAccess');
print STDERR ("\n") if ($DEBUG);
#############################  8  ###############################
$res = $SNMP::MIB{sysLocation}{subID};
print STDERR ("Test 8: subID is $res\n") if ($DEBUG);
ok(defined($res));
print STDERR ("\n") if ($DEBUG);
############################  9  ##############################
$res = $SNMP::MIB{sysLocation}{syntax};
print STDERR ("Test 9: syntax is $res\n") if ($DEBUG);
ok($res eq 'DisplayString');
print STDERR ("\n") if ($DEBUG);
############################  10  ###########################
$res = $SNMP::MIB{ipAdEntAddr}{syntax};
print STDERR ("Test 10: syntax is $res\n") if ($DEBUG);
ok($res eq 'IPADDR');
print STDERR ("\n") if ($DEBUG);
##########################  11  ##########################
$res = $SNMP::MIB{atNetAddress}{syntax};
print STDERR ("Test 11: syntax is $res\n") if ($DEBUG);
ok($res eq 'NETADDR');
print STDERR ("\n") if ($DEBUG);
########################   12  ###############################
$res = $SNMP::MIB{ipReasmOKs}{syntax};
print STDERR ("Test 12: syntax is $res\n") if ($DEBUG);
ok($res eq 'COUNTER');
print STDERR ("\n") if ($DEBUG);
######################   13  ##############################
$res = $SNMP::MIB{sysDescr}{moduleID};
print STDERR ("Test 13: module ID is $res\n") if ($DEBUG);
ok(defined($res));
print STDERR ("\n") if ($DEBUG);
######################  14   #########################
my $des = $SNMP::MIB{atNetAddress}{description};
print STDERR ("Test 14: des is $des\n") if ($DEBUG);
ok(defined($des));
print STDERR ("\n") if ($DEBUG);

######################  15   #########################
$res = $SNMP::MIB{atNetAddress}{nextNode};
print STDERR ("Test 15: res is $res\n") if ($DEBUG);
ok(ref($res) eq "HASH");
print STDERR ("\n") if ($DEBUG);

########################  16   #########################
$res = $SNMP::MIB{sysDescr}{children};
print STDERR ("Test 16: res is " . Dumper($res) . "\n") if ($DEBUG);
ok(ref($res) eq "ARRAY");
print STDERR ("\n") if ($DEBUG);
####################  17   #########################

$res = $SNMP::MIB{sysDescr}{badField};
ok(!defined($res));


######################  18   #########################
$res = $SNMP::MIB{sysDescr}{hint};
print STDERR ("Test 18: res is " . Dumper($res) . "\n") if ($DEBUG);
ok(defined($res) && $res =~ /^255a/);
print STDERR ("\n") if ($DEBUG);
######################  19   #########################

$res = $SNMP::MIB{ifPhysAddress}{hint};
print STDERR ("Test 19: res is " . Dumper($res) . "\n") if ($DEBUG);
ok(defined($res) && $res =~ /^1x:/);
print STDERR ("\n") if ($DEBUG);


######################  some translate tests  #######

#####################  20  #########################
# Garbage names return Undef.

my $type1 = SNMP::getType($bad_name);
ok(!defined($type1));
#printf "%s %d\n", (!defined($type1)) ? "ok" :"not ok", $n++;

######################################################################
# getType() supports numeric OIDs now

my $type2 = SNMP::getType($oid);
ok(defined($type2) && $type2 =~ /OCTETSTR/);

######################################################################
# This tests that sysDescr returns a valid type.

my $type3 = SNMP::getType($name);
ok(defined($type3));

######################################################################
# Translation tests from Name -> OID
# sysDescr to .1.3.6.1.2.1.1.1
my $oid_tag = SNMP::translateObj($name);
ok($oid eq $oid_tag);

######################################################################
# Translation tests from Name -> OID
# RFC1213-MIB::sysDescr to .1.3.6.1.2.1.1.1
$oid_tag = SNMP::translateObj($name_module);
ok($oid eq $oid_tag);

######################################################################
# Translation tests from Name -> OID
# .iso.org.dod.internet.mgmt.mib-2.system.sysDescr to .1.3.6.1.2.1.1.1
$oid_tag = SNMP::translateObj($name_long);
ok($oid eq $oid_tag);

######################################################################
# bad name returns 'undef'
$oid_tag = '';
$oid_tag = SNMP::translateObj($bad_name);
ok(!defined($oid_tag));


######################################################################
# OID -> name
# .1.3.6.1.2.1.1.1 to sysDescr
my $name_tag = SNMP::translateObj($oid);
ok($name eq $name_tag);

######################################################################
# OID -> name
# .1.3.6.1.2.1.1.1 to RFC1213-MIB::sysDescr or
# .1.3.6.1.2.1.1.1 to SNMPv2-MIB::sysDescr
$name_tag = SNMP::translateObj($oid,0,1);
ok(($name_module eq $name_tag) || ($name_module2 eq $name_tag));

######################################################################
# OID -> name
# .1.3.6.1.2.1.1.1 to .iso.org.dod.internet.mgmt.mib-2.system.sysDescr
$name_tag = SNMP::translateObj($oid,1);
ok($name_long eq $name_tag);

######################################################################
# OID -> name
# .1.3.6.1.2.1.1.1 to RFC1213-MIB::.iso.org.dod.internet.mgmt.mib-2.system.sysDescr or
# .1.3.6.1.2.1.1.1 to SNMPv2-MIB::.iso.org.dod.internet.mgmt.mib-2.system.sysDescr
$name_tag = SNMP::translateObj($oid,1,1);
ok(($name_module_long eq $name_tag) || ($name_module_long2 eq $name_tag));

######################################################################
# bad OID -> Name

$name_tag = SNMP::translateObj($bad_oid);
ok($name ne $name_tag);
#printf "%s %d\n", ($name ne $name_tag) ? "ok" :"not ok", $n++;


######################################################################
# ranges

my $node = $SNMP::MIB{snmpTargetAddrMMS};
ok($node);
my $ranges = $node->{ranges};
ok($ranges and ref $ranges eq 'ARRAY');
ok(@$ranges == 2);
ok($$ranges[0]{low} == 0);
ok($$ranges[0]{high} == 0);
ok($$ranges[1]{low} == 484);
ok($$ranges[1]{high} == 2147483647);

snmptest_cleanup();