-
Notifications
You must be signed in to change notification settings - Fork 39
/
adinvreceiver_test.go
167 lines (145 loc) · 5 KB
/
adinvreceiver_test.go
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
// Copyright 2023, OpenTelemetry Authors
//
// 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 activedirectoryinvreceiver
import (
"context"
"encoding/json"
"fmt"
"testing"
"time"
"github.com/go-adsi/adsi"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
"go.opentelemetry.io/collector/component/componenttest"
"go.opentelemetry.io/collector/consumer/consumertest"
"go.opentelemetry.io/collector/pdata/plog"
"go.uber.org/zap"
)
type MockRuntime struct {
mock.Mock
}
func (mr *MockRuntime) SupportedOS() bool {
args := mr.Called()
return args.Bool(0)
}
type MockClient struct {
mock.Mock
}
func (mc *MockClient) Open(path string, resourceLogs *plog.ResourceLogs) (Container, error) {
args := mc.Called(path, resourceLogs)
return args.Get(0).(Container), args.Error(1)
}
type MockContainer struct {
mock.Mock
}
func (mc *MockContainer) ToObject() (Object, error) {
args := mc.Called()
return args.Get(0).(Object), args.Error(1)
}
func (mc *MockContainer) Close() {
mc.Called()
}
func (mc *MockContainer) Children() (ObjectIter, error) {
args := mc.Called()
return args.Get(0).(ObjectIter), args.Error(1)
}
type MockObject struct {
mock.Mock
}
func (mo *MockObject) Attrs(key string) ([]interface{}, error) {
args := mo.Called(key)
return args.Get(0).([]interface{}), args.Error(1)
}
func (mo *MockObject) ToContainer() (Container, error) {
args := mo.Called()
return args.Get(0).(Container), args.Error(1)
}
type MockObjectIter struct {
mock.Mock
}
func (mo *MockObjectIter) Next() (*adsi.Object, error) {
args := mo.Called()
return args.Get(0).(*adsi.Object), args.Error(1)
}
func (mo *MockObjectIter) Close() {
mo.Called()
}
func TestStart(t *testing.T) {
cfg := CreateDefaultConfig().(*ADConfig)
cfg.BaseDN = "CN=Guest,CN=Users,DC=exampledomain,DC=com"
sink := &consumertest.LogsSink{}
mockClient := &MockClient{}
mockRuntime := &MockRuntime{}
mockRuntime.On("SupportedOS").Return(true)
logsRcvr := newLogsReceiver(cfg, zap.NewNop(), mockClient, mockRuntime, sink)
// Start the receiver
err := logsRcvr.Start(context.Background(), componenttest.NewNopHost())
require.NoError(t, err)
// Shutdown the receiver
err = logsRcvr.Shutdown(context.Background())
require.NoError(t, err)
}
func TestStartUnsupportedOS(t *testing.T) {
cfg := CreateDefaultConfig().(*ADConfig)
sink := &consumertest.LogsSink{}
mockClient := &MockClient{}
mockRuntime := &MockRuntime{}
mockRuntime.On("SupportedOS").Return(false)
logsRcvr := newLogsReceiver(cfg, zap.NewNop(), mockClient, mockRuntime, sink)
// Start the receiver
err := logsRcvr.Start(context.Background(), componenttest.NewNopHost())
require.Error(t, err)
require.Contains(t, err.Error(), "active_directory_inv is only supported on Windows")
}
func TestLogRecord(t *testing.T) {
expectedBody := `{"name":"test","mail":"test","department":"test","manager":"test","memberOf":"test"}`
var expectedResult, actualResult map[string]interface{}
cfg := CreateDefaultConfig().(*ADConfig)
cfg.PollInterval = 1 * time.Second // Set poll interval to 1s to speed up test
sink := &consumertest.LogsSink{}
mockClient := defaultMockClient()
mockRuntime := &MockRuntime{}
mockRuntime.On("SupportedOS").Return(true)
logsRcvr := newLogsReceiver(cfg, zap.NewNop(), mockClient, mockRuntime, sink)
// Start the receiver
err := logsRcvr.Start(context.Background(), componenttest.NewNopHost())
require.NoError(t, err)
require.Eventually(t, func() bool {
return sink.LogRecordCount() > 0
}, 2*time.Second, 10*time.Millisecond)
result := sink.AllLogs()[0].ResourceLogs().At(0).ScopeLogs().At(0).LogRecords().At(0).Body().AsRaw()
err = json.Unmarshal([]byte(expectedBody), &expectedResult)
require.NoError(t, err)
err = json.Unmarshal([]byte(result.(string)), &actualResult)
require.NoError(t, err)
// Shutdown the receiver
err = logsRcvr.Shutdown(context.Background())
require.NoError(t, err)
assert.Equal(t, expectedResult, actualResult)
}
func defaultMockClient() Client {
mockClient := &MockClient{}
mockContainer := &MockContainer{}
mockObject := &MockObject{}
mockObjectIter := &MockObjectIter{}
attrs := []interface{}{"test"}
mockContainer.On("ToObject").Return(mockObject, nil)
mockContainer.On("Children").Return(mockObjectIter, fmt.Errorf("no children"))
mockContainer.On("Close").Return(nil)
mockObject.On("Attrs", mock.Anything).Return(attrs, nil)
mockObject.On("ToContainer").Return(mockContainer, nil)
mockClient.On("Open", mock.Anything, mock.Anything).Return(mockContainer, nil)
return mockClient
}