?? mib.t
字號:
#!./perl# Written by John Stoffel (jfs@fluent.com) - 10/13/1997BEGIN { unless(grep /blib/, @INC) { chdir 't' if -d 't'; @INC = '../lib' if -d '../lib'; }}# to print the description...$SNMP::save_descriptions = 1;use Test;BEGIN {plan tests => 33}use SNMP;SNMP::initMib();$SNMP::verbose = 0;use vars qw($bad_oid);require "t/startagent.pl";my $mib_file = 't/mib.txt';my $bad_mib_file = 'mib.txt';############################# 1 #######################################check ifmy $res = $SNMP::MIB{sysDescr}{label};#print("Label is:$res\n");ok("sysDescr" eq $res);#print("\n");############################# 2 ######################################$res = $SNMP::MIB{sysDescr}{objectID};#print("OID is: $res\n");ok(defined($res));#print("\n");############################# 3 ######################################$res = $SNMP::MIB{sysDescr}{access};#print("access is: $res\n");ok($res eq 'ReadOnly');#print("\n");############################## 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("status is: $res\n");ok($res eq 'Current');#print("\n");############################# 7 #################################$res = $SNMP::MIB{sysORTable}{access};#print("access is: $res\n");ok($res eq 'NoAccess');#print("\n");############################# 8 ###############################$res = $SNMP::MIB{sysLocation}{subID};#print("subID is: $res\n");ok(defined($res));#print("\n");############################ 9 ##############################$res = $SNMP::MIB{sysLocation}{syntax};#print("syntax is: $res\n");ok($res eq 'DisplayString');#print("\n");############################ 10 ###########################$res = $SNMP::MIB{ipAdEntAddr}{syntax};ok($res eq 'IPADDR');#print("\n");########################## 11 ##########################$res = $SNMP::MIB{atNetAddress}{syntax};#print("syntax is: $res\n");ok($res eq 'IPADDR');#print("\n");######################## 12 ###############################$res = $SNMP::MIB{ipReasmOKs}{syntax};#print("syntax is: $res\n");ok($res eq 'COUNTER');#print("\n");###################### 13 ##############################$res = $SNMP::MIB{sysDescr}{moduleID};#print("Module ID is: $res\n");ok(defined($res));#print("\n");###################### 14 #########################$des = $SNMP::MIB{atNetAddress}{description};#print("des is --> $des\n");ok(defined($des));#print("\n");###################### 15 #########################$res = $SNMP::MIB{atNetAddress}{nextNode};#print("res is --> $res\n");ok(ref($res) eq "HASH");#print("\n");######################## 16 #########################$res = $SNMP::MIB{sysDescr}{children};#print("res is --> $res\n");ok(ref($res) eq "ARRAY");#print("\n");#################### 17 #########################$res = $SNMP::MIB{sysDescr}{badField};ok(!defined($res));###################### 18 #########################$res = $SNMP::MIB{sysDescr}{hint};#print("res is --> $res\n");ok($res =~ /^255a/);#print("\n");###################### 19 #########################$res = $SNMP::MIB{ifPhysAddress}{hint};#print("res is --> $res\n");ok($res =~ /^1x:/);#print("\n");###################### 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 nowmy $type2 = SNMP::getType($oid);ok($type2 =~ /OCTETSTR/);####################################################################### This tests that sysDescr returns a valid type.my $type3 = SNMP::getType($name);ok(defined($type3));####################################################################### Translation tests from Name -> oid -> Name####################################################################### name -> OID$oid_tag = SNMP::translateObj($name);ok($oid eq $oid_tag);####################################################################### bad name returns 'undef'$oid_tag = '';$oid_tag = SNMP::translateObj($bad_name);ok(!defined($oid_tag));####################################################################### OID -> name$name_tag = SNMP::translateObj($oid);ok($name 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$node = $SNMP::MIB{snmpTargetAddrMMS};ok($node);$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();
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -