-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test cases for EventData/UserData in windowsEventLogRecord
- Loading branch information
1 parent
3d40e16
commit 04da18c
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
plugins/inputs/windows_event_log/wineventlog/wineventlogrecord_test.go
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,67 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
//go:build windows | ||
// +build windows | ||
|
||
package wineventlog | ||
|
||
import ( | ||
"encoding/xml" | ||
"github.com/stretchr/testify/assert" | ||
"testing" | ||
) | ||
|
||
func TestUnmarshalWinEvtRecord(t *testing.T) { | ||
tests := []struct { | ||
xml string | ||
wEvtRecord windowsEventLogRecord | ||
}{ | ||
{ | ||
xml: ` | ||
<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'> | ||
<EventData> | ||
<Data Name='param1'>2022-10-28T22:33:25Z</Data> | ||
<Data Name='param2'>RulesEngine</Data> | ||
<Data Name='param3'>2</Data> | ||
</EventData> | ||
</Event> | ||
`, | ||
wEvtRecord: windowsEventLogRecord{ | ||
EventData: EventData{ | ||
Data: []Datum{ | ||
{"2022-10-28T22:33:25Z"}, | ||
{"RulesEngine"}, | ||
{"2"}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
xml: ` | ||
<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'> | ||
<UserData> | ||
<RmSessionEvent xmlns='http://www.microsoft.com/2005/08/Windows/Reliability/RestartManager/'> | ||
<RmSessionId>0</RmSessionId> | ||
<UTCStartTime>2022-10-26T20:24:13.4253261Z</UTCStartTime> | ||
</RmSessionEvent> | ||
</UserData> | ||
</Event> | ||
`, | ||
wEvtRecord: windowsEventLogRecord{ | ||
UserData: UserData{ | ||
Data: []Datum{ | ||
{"0"}, | ||
{"2022-10-26T20:24:13.4253261Z"}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
for _, test := range tests { | ||
record := new(windowsEventLogRecord) | ||
xml.Unmarshal([]byte(test.xml), record) | ||
assert.Equal(t, test.wEvtRecord, record) | ||
} | ||
} |