forked from vmware/go-ipfix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvements in integration tests (vmware#325)
* Use more meaningful byte counts in test records (count and reverseCount have no reason to be the same). * Generate test data packets automatically using a function, instead of having to generate packet data manually. * Add integration build tag for linters Signed-off-by: Antonin Bas <abas@vmware.com>
- Loading branch information
1 parent
e89e737
commit 06f6636
Showing
12 changed files
with
188 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// Copyright 2023 VMware, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package exporter | ||
|
||
import ( | ||
"fmt" | ||
"time" | ||
|
||
"github.com/vmware/go-ipfix/pkg/entities" | ||
) | ||
|
||
func CreateIPFIXMsg(set entities.Set, obsDomainID uint32, seqNumber uint32, exportTime time.Time) ([]byte, error) { | ||
// Create a new message and use it to send the set. | ||
msg := entities.NewMessage(false) | ||
|
||
// Check if message is exceeding the limit after adding the set. Include message | ||
// header length too. | ||
msgLen := entities.MsgHeaderLength + set.GetSetLength() | ||
if msgLen > entities.MaxSocketMsgSize { | ||
// This is applicable for both TCP and UDP sockets. | ||
return nil, fmt.Errorf("message size exceeds max socket buffer size") | ||
} | ||
|
||
// Set the fields in the message header. | ||
// IPFIX version number is 10. | ||
// https://www.iana.org/assignments/ipfix/ipfix.xhtml#ipfix-version-numbers | ||
msg.SetVersion(10) | ||
msg.SetObsDomainID(obsDomainID) | ||
msg.SetMessageLen(uint16(msgLen)) | ||
msg.SetExportTime(uint32(exportTime.Unix())) | ||
msg.SetSequenceNum(seqNumber) | ||
|
||
bytesSlice := make([]byte, msgLen) | ||
copy(bytesSlice[:entities.MsgHeaderLength], msg.GetMsgHeader()) | ||
copy(bytesSlice[entities.MsgHeaderLength:entities.MsgHeaderLength+entities.SetHeaderLen], set.GetHeaderBuffer()) | ||
index := entities.MsgHeaderLength + entities.SetHeaderLen | ||
for _, record := range set.GetRecords() { | ||
len := record.GetRecordLength() | ||
copy(bytesSlice[index:index+len], record.GetBuffer()) | ||
index += len | ||
} | ||
|
||
return bytesSlice, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.