-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathelasticsearch_test.go
221 lines (189 loc) · 5.63 KB
/
elasticsearch_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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package workers
import (
"bufio"
"encoding/json"
"io"
"net"
"net/http"
"net/http/httptest"
"strings"
"testing"
"time"
"github.com/dmachard/go-dnscollector/dnsutils"
"github.com/dmachard/go-dnscollector/pkgconfig"
"github.com/dmachard/go-logger"
"github.com/stretchr/testify/assert"
)
func Test_ElasticSearchClient_BulkSize_Exceeded(t *testing.T) {
testcases := []struct {
mode string
bulkSize int
inputSize int
}{
{
mode: pkgconfig.ModeFlatJSON,
bulkSize: 1024,
inputSize: 15,
},
}
fakeRcvr, err := net.Listen("tcp", "127.0.0.1:59200")
if err != nil {
t.Fatal(err)
}
defer fakeRcvr.Close()
for _, tc := range testcases {
t.Run(tc.mode, func(t *testing.T) {
conf := pkgconfig.GetDefaultConfig()
conf.Loggers.ElasticSearchClient.Index = "indexname"
conf.Loggers.ElasticSearchClient.Server = "http://127.0.0.1:59200/"
conf.Loggers.ElasticSearchClient.BulkSize = tc.bulkSize
conf.Loggers.ElasticSearchClient.BulkChannelSize = 50
g := NewElasticSearchClient(conf, logger.New(false), "test")
go g.StartCollect()
dm := dnsutils.GetFakeDNSMessage()
for i := 0; i < tc.inputSize; i++ {
g.GetInputChannel() <- dm
}
totalDm := 0
for i := 0; i < tc.inputSize; i++ {
// accept conn
conn, err := fakeRcvr.Accept()
if err != nil {
t.Fatal(err)
}
defer conn.Close()
// read and parse http request on server side
connReader := bufio.NewReader(conn)
connReaderT := bufio.NewReaderSize(connReader, tc.bulkSize*2)
request, err := http.ReadRequest(connReaderT)
if err != nil {
t.Fatal(err)
}
conn.Write([]byte(pkgconfig.HTTPOK))
// read payload from request body
payload, err := io.ReadAll(request.Body)
if err != nil {
t.Fatal(err)
}
scanner := bufio.NewScanner(strings.NewReader(string(payload)))
cnt := 0
for scanner.Scan() {
if cnt%2 == 0 {
var res map[string]interface{}
json.Unmarshal(scanner.Bytes(), &res)
assert.Equal(t, map[string]interface{}{}, res["create"])
} else {
var bulkDm dnsutils.DNSMessage
err := json.Unmarshal(scanner.Bytes(), &bulkDm)
assert.NoError(t, err)
totalDm += 1
}
cnt++
}
}
assert.Equal(t, tc.inputSize, totalDm)
})
}
}
func Test_ElasticSearchClient_FlushInterval_Exceeded(t *testing.T) {
testcases := []struct {
mode string
bulkSize int
inputSize int
flushInterval int
}{
{
mode: pkgconfig.ModeFlatJSON,
bulkSize: 1048576,
inputSize: 50,
flushInterval: 5,
},
}
fakeRcvr, err := net.Listen("tcp", "127.0.0.1:59200")
if err != nil {
t.Fatal(err)
}
defer fakeRcvr.Close()
for _, tc := range testcases {
totalDm := 0
t.Run(tc.mode, func(t *testing.T) {
conf := pkgconfig.GetDefaultConfig()
conf.Loggers.ElasticSearchClient.Index = "indexname"
conf.Loggers.ElasticSearchClient.Server = "http://127.0.0.1:59200/"
conf.Loggers.ElasticSearchClient.BulkSize = tc.bulkSize
conf.Loggers.ElasticSearchClient.FlushInterval = tc.flushInterval
g := NewElasticSearchClient(conf, logger.New(true), "test")
// run logger
go g.StartCollect()
time.Sleep(1 * time.Second)
// send DNSmessage
dm := dnsutils.GetFakeDNSMessage()
for i := 0; i < tc.inputSize; i++ {
g.GetInputChannel() <- dm
}
time.Sleep(6 * time.Second)
// accept the new connection from logger
// the connection should contains all packets
conn, err := fakeRcvr.Accept()
if err != nil {
t.Fatal(err)
}
defer conn.Close()
connReader := bufio.NewReader(conn)
connReaderT := bufio.NewReaderSize(connReader, tc.bulkSize*2)
request, err := http.ReadRequest(connReaderT)
if err != nil {
t.Fatal(err)
}
conn.Write([]byte(pkgconfig.HTTPOK))
// read payload from request body
payload, err := io.ReadAll(request.Body)
if err != nil {
t.Fatal("no body in request:", err)
}
scanner := bufio.NewScanner(strings.NewReader(string(payload)))
cnt := 0
for scanner.Scan() {
if cnt%2 == 0 {
var res map[string]interface{}
json.Unmarshal(scanner.Bytes(), &res)
assert.Equal(t, map[string]interface{}{}, res["create"])
} else {
var bulkDm dnsutils.DNSMessage
err := json.Unmarshal(scanner.Bytes(), &bulkDm)
assert.NoError(t, err)
totalDm += 1
}
cnt++
}
g.Stop()
})
assert.Equal(t, tc.inputSize, totalDm)
}
}
func TestElasticSearchClient_sendBulk_WithBasicAuth(t *testing.T) {
// Create a test HTTP server to simulate Elasticsearch
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// Verify that the Authorization header is present
username, password, ok := r.BasicAuth()
assert.True(t, ok, "Basic Auth header is missing in the request")
assert.Equal(t, "testuser", username, "Incorrect username")
assert.Equal(t, "testpass", password, "Incorrect password")
if username != "testuser" || password != "testpass" {
w.WriteHeader(http.StatusUnauthorized)
return
}
w.WriteHeader(http.StatusOK)
}))
defer server.Close()
// Initialize the configuration using GetDefaultConfig() for consistency
config := pkgconfig.GetDefaultConfig()
config.Loggers.ElasticSearchClient.Server = server.URL
config.Loggers.ElasticSearchClient.BasicAuthEnabled = true
config.Loggers.ElasticSearchClient.BasicAuthLogin = "testuser"
config.Loggers.ElasticSearchClient.BasicAuthPwd = "testpass"
client := NewElasticSearchClient(config, logger.New(false), "test-client")
// Send a request with a test payload
err := client.sendBulk([]byte("test payload"))
assert.NoError(t, err, "Unexpected error when sending request with Basic Auth")
}