func TestMessageProcessingV1(t *testing.T) { snmp, _ := snmpclient2.NewSNMP("udp", "127.0.0.1", snmpclient2.Arguments{ Version: snmpclient2.V2c, Community: "public", }) mp := snmpclient2.NewMessageProcessing(snmpclient2.V2c) pdu := snmpclient2.NewPdu(snmpclient2.V2c, snmpclient2.GetRequest) msg, err := mp.PrepareOutgoingMessage(snmp, pdu) if err != nil { t.Errorf("PrepareOutgoingMessage() - has error %v", err) } if len(msg.PduBytes()) == 0 { t.Error("PrepareOutgoingMessage() - pdu bytes") } if pdu.RequestId() == 0 { t.Error("PrepareOutgoingMessage() - request id") } requestId := pdu.RequestId() _, err = mp.PrepareDataElements(snmp, msg, []byte{0x00, 0x00}) if err == nil { t.Error("PrepareDataElements() - message unmarshal error") } b, _ := msg.Marshal() _, err = mp.PrepareDataElements(snmp, msg, b) if err == nil { t.Error("PrepareDataElements() - pdu type check") } pdu = snmpclient2.NewPdu(snmpclient2.V2c, snmpclient2.GetResponse) rmsg := snmpclient2.NewMessage(snmpclient2.V2c, pdu).(*snmpclient2.MessageV1) b, _ = rmsg.Marshal() _, err = mp.PrepareDataElements(snmp, msg, b) if err == nil { t.Error("PrepareDataElements() - version check") } pdu.SetRequestId(requestId) pduBytes, _ := pdu.Marshal() rmsg = snmpclient2.NewMessage(snmpclient2.V2c, pdu).(*snmpclient2.MessageV1) rmsg.Community = []byte("public") rmsg.SetPduBytes(pduBytes) b, _ = rmsg.Marshal() _, err = mp.PrepareDataElements(snmp, msg, b) if err != nil { t.Errorf("PrepareDataElements() - has error %v", err) } }
func TestMessageProcessingV3(t *testing.T) { snmp, _ := snmpclient2.NewSNMP("udp", "127.0.0.1", snmpclient2.Arguments{ Version: snmpclient2.V3, UserName: "******", SecurityLevel: snmpclient2.AuthPriv, AuthPassword: "******", AuthProtocol: snmpclient2.Md5, PrivPassword: "******", PrivProtocol: snmpclient2.Des, }) var mss snmpclient2.Message = &snmpclient2.MessageV1{} t.Log(mss.String()) mp := snmpclient2.NewMessageProcessing(snmpclient2.V3) //usm := mp.Security().(*snmpclient2.USM) //usm.AuthKey = []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} //usm.PrivKey = []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} pdu := snmpclient2.NewPdu(snmpclient2.V3, snmpclient2.GetRequest) msg, err := mp.PrepareOutgoingMessage(snmp, pdu) if err != nil { t.Errorf("PrepareOutgoingMessage() - has error %v", err) } if len(msg.PduBytes()) == 0 { t.Error("PrepareOutgoingMessage() - pdu bytes") } if pdu.RequestId() == 0 { t.Error("PrepareOutgoingMessage() - request id") } msgv3 := msg.(*snmpclient2.MessageV3) if msgv3.MessageId == 0 { t.Error("PrepareOutgoingMessage() - message id") } if !msgv3.Reportable() || !msgv3.Authentication() || !msgv3.Privacy() { t.Error("PrepareOutgoingMessage() - security flag") } msgv3.SetAuthentication(false) msgv3.SetPrivacy(false) msgv3.AuthEngineId = []byte{0, 0, 0, 0, 0} requestId := pdu.RequestId() messageId := msgv3.MessageId _, err = mp.PrepareDataElements(snmp, msg, []byte{0x00, 0x00}) if err == nil { t.Error("PrepareDataElements() - message unmarshal error") } b, _ := msg.Marshal() _, err = mp.PrepareDataElements(snmp, msg, b) if err == nil { t.Error("PrepareDataElements() - pdu type check") } pdu = snmpclient2.NewPdu(snmpclient2.V3, snmpclient2.GetResponse) rmsg := snmpclient2.NewMessage(snmpclient2.V3, pdu).(*snmpclient2.MessageV3) b, _ = rmsg.Marshal() _, err = mp.PrepareDataElements(snmp, msg, b) if err == nil { t.Error("PrepareDataElements() - message id check") } rmsg = snmpclient2.NewMessage(snmpclient2.V3, pdu).(*snmpclient2.MessageV3) rmsg.AuthEngineId = []byte{0, 0, 0, 0, 0} rmsg.MessageId = messageId b, _ = rmsg.Marshal() _, err = mp.PrepareDataElements(snmp, msg, b) if err == nil { t.Error("PrepareDataElements() - security model check") } pdu.(*snmpclient2.ScopedPdu).ContextEngineId = rmsg.AuthEngineId pduBytes, _ := pdu.Marshal() rmsg.SetPduBytes(pduBytes) rmsg.SecurityModel = 3 b, _ = rmsg.Marshal() _, err = mp.PrepareDataElements(snmp, msg, b) if err == nil { t.Error("PrepareDataElements() - request id check") } pdu.SetRequestId(requestId) pduBytes, _ = pdu.Marshal() rmsg.SetPduBytes(pduBytes) rmsg.UserName = []byte(snmpclient2.GetArgs(snmp).UserName) b, _ = rmsg.Marshal() _, err = mp.PrepareDataElements(snmp, msg, b) if err != nil { t.Errorf("PrepareDataElements() - has error %v", err) } }