-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathlogger_test.go
465 lines (413 loc) · 15.3 KB
/
logger_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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
package main
import (
"bytes"
"compress/gzip"
"context"
"io/ioutil"
"math"
"net/http"
"os"
"testing"
"time"
"github.com/containerd/fifo"
"github.com/docker/docker/api/types/plugins/logdriver"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"golang.org/x/sys/unix"
)
type mockHttpClient struct {
requestCount int
statusCode int
requestReceivedSignal chan bool
}
func (m *mockHttpClient) Do(req *http.Request) (*http.Response, error) {
m.requestCount += 1
m.requestReceivedSignal <- true
return &http.Response{
Body: ioutil.NopCloser(bytes.NewBuffer([]byte("ERROR EXPECTED, mock response for testing"))),
StatusCode: m.statusCode,
}, nil
}
func (m *mockHttpClient) Reset() {
m.requestCount = 0
m.requestReceivedSignal = make(chan bool, defaultQueueSizeItems)
}
func NewMockHttpClient(statusCode int) *mockHttpClient {
return &mockHttpClient{
requestCount: 0,
statusCode: statusCode,
requestReceivedSignal: make(chan bool, defaultQueueSizeItems),
}
}
func TestConsumeLogsFromFile(t *testing.T) {
testLogMessage := &logdriver.LogEntry{
Source: testSource,
TimeNano: testTime,
Line: testLine,
Partial: testIsPartial,
}
inputFile, err := fifo.OpenFifo(context.Background(), filePath, unix.O_RDWR|unix.O_CREAT|unix.O_NONBLOCK, fileMode)
defer os.Remove(filePath)
assert.Nil(t, err)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
inputFile: inputFile,
logQueue: make(chan *sumoLog, 10 * defaultQueueSizeItems),
sendingInterval: time.Second,
}
go testSumoLogger.consumeLogsFromFile()
enc := logdriver.NewLogEntryEncoder(inputFile)
t.Run("testLogCount=1", func(t *testing.T) {
enc.Encode(testLogMessage)
consumedLog := <-testSumoLogger.logQueue
assert.Equal(t, testSource, consumedLog.source, "should read the correct log source")
assert.Equal(t, testLine, consumedLog.line, "should read the correct log line")
assert.Equal(t, testIsPartial, consumedLog.isPartial, "should read the correct log partial")
})
t.Run("testLogCount=1000", func(t *testing.T) {
testLogsCount := 1000
go func() {
for i := 0; i < testLogsCount; i++ {
enc.Encode(testLogMessage)
}
}()
for i := 0; i < testLogsCount; i++ {
consumedLog := <-testSumoLogger.logQueue
assert.Equal(t, testSource, consumedLog.source, "should read the correct log source")
assert.Equal(t, testLine, consumedLog.line, "should read the correct log line")
assert.Equal(t, testIsPartial, consumedLog.isPartial, "should read the correct log partial")
}
})
}
func TestBatchLogs(t *testing.T) {
logrus.SetOutput(ioutil.Discard)
testSumoLog := &sumoLog{
source: testSource,
line: testLine,
isPartial: testIsPartial,
}
t.Run("batchSize=1 byte", func(t *testing.T) {
testLogQueue := make(chan *sumoLog, 10 * defaultQueueSizeItems)
testLogBatchQueue := make(chan *sumoLogBatch, defaultQueueSizeItems)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
logQueue: testLogQueue,
logBatchQueue: testLogBatchQueue,
sendingInterval: 400 * time.Millisecond,
batchSize: 1,
}
go testSumoLogger.batchLogs()
testLogQueue <- testSumoLog
time.Sleep(500 * time.Millisecond)
assert.Equal(t, 0, len(testLogBatchQueue), "should have dropped the log for being too large")
})
t.Run("batchSize=200 bytes, testLogCount=1", func(t *testing.T) {
testBatchSize := 200
testLogQueue := make(chan *sumoLog, 100 * defaultQueueSizeItems)
testLogBatchQueue := make(chan *sumoLogBatch, 10 * defaultQueueSizeItems)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
logQueue: testLogQueue,
logBatchQueue: testLogBatchQueue,
sendingInterval: time.Second,
batchSize: testBatchSize,
}
go testSumoLogger.batchLogs()
testLogQueue <- testSumoLog
testLogBatch := <-testLogBatchQueue
assert.Equal(t, 1, len(testLogBatch.logs), "should have received only one log in the batch")
assert.Equal(t, testLine, testLogBatch.logs[0].line, "should have received the correct log")
assert.Equal(t, 0, len(testLogBatchQueue), "should have emptied out the batch queue")
})
t.Run("batchSize=200 bytes, testLogCount=100000", func(t *testing.T) {
testBatchSize := 200
testLogQueue := make(chan *sumoLog, 1000 * defaultQueueSizeItems)
testLogBatchQueue := make(chan *sumoLogBatch, 100 * defaultQueueSizeItems)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
logQueue: testLogQueue,
logBatchQueue: testLogBatchQueue,
sendingInterval: time.Hour,
batchSize: testBatchSize,
}
go testSumoLogger.batchLogs()
testLogCount := 100000
go func() {
for i := 0; i < testLogCount; i++ {
testLogQueue <- testSumoLog
}
}()
for i := 0; i < testLogCount / (testBatchSize / len(testLine)); i++ {
testLogBatch := <-testLogBatchQueue
assert.Equal(t, testBatchSize / len(testLine), len(testLogBatch.logs),
"should have correct number of logs in a batch")
assert.Equal(t, testLine, testLogBatch.logs[0].line, "should have received the correct log")
}
assert.Equal(t, 0, len(testLogBatchQueue), "should have emptied out the batch queue")
})
t.Run("batchSize=2000000 bytes, testLogCount=1", func(t *testing.T) {
testBatchSize := 2000000
testLogQueue := make(chan *sumoLog, 100 * defaultQueueSizeItems)
testLogBatchQueue := make(chan *sumoLogBatch, 10 * defaultQueueSizeItems)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
logQueue: testLogQueue,
logBatchQueue: testLogBatchQueue,
sendingInterval: time.Second,
batchSize: testBatchSize,
}
go testSumoLogger.batchLogs()
testLogQueue <- testSumoLog
testLogBatch := <-testLogBatchQueue
assert.Equal(t, 1, len(testLogBatch.logs), "should have received only one log in the batch")
assert.Equal(t, testLine, testLogBatch.logs[0].line, "should have received the correct log")
assert.Equal(t, 0, len(testLogBatchQueue), "should have emptied out the batch queue")
})
t.Run("batchSize=2000000 bytes, testLogCount=1000000", func(t *testing.T) {
testBatchSize := 2000000
testLogQueue := make(chan *sumoLog, 100 * defaultQueueSizeItems)
testLogBatchQueue := make(chan *sumoLogBatch, 10 * defaultQueueSizeItems)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
logQueue: testLogQueue,
logBatchQueue: testLogBatchQueue,
sendingInterval: time.Hour,
batchSize: testBatchSize,
}
go testSumoLogger.batchLogs()
testLogCount := 1000000
go func() {
for i := 0; i < testLogCount; i++ {
testLogQueue <- testSumoLog
}
}()
for i := 0; i < testLogCount / (testBatchSize / len(testLine)); i++ {
testLogBatch := <-testLogBatchQueue
assert.Equal(t, testBatchSize / len(testLine), len(testLogBatch.logs),
"should have correct number of logs in a batch")
assert.Equal(t, testLine, testLogBatch.logs[0].line, "should have received the correct log")
}
assert.Equal(t, 0, len(testLogBatchQueue), "should have emptied out the batch queue")
})
}
func TestHandleBatchedLogs(t *testing.T) {
logrus.SetOutput(ioutil.Discard)
testSumoLog := &sumoLog{
source: testSource,
line: testLine,
isPartial: testIsPartial,
}
testLogBatch := &sumoLogBatch{
logs: []*sumoLog{testSumoLog},
sizeBytes: len(testLine),
}
t.Run("status=OK, logBatchCount=1", func (t *testing.T) {
testLogBatchQueue := make(chan *sumoLogBatch, defaultQueueSizeItems)
defer close(testLogBatchQueue)
testClient := NewMockHttpClient(http.StatusOK)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
httpClient: testClient,
logBatchQueue: testLogBatchQueue,
}
go testSumoLogger.handleBatchedLogs()
testLogBatchQueue <- testLogBatch
<-testClient.requestReceivedSignal
assert.Equal(t, 0, len(testLogBatchQueue),
"should have emptied out the batch queue while handling")
assert.Equal(t, 1, testClient.requestCount,
"should have made only one HTTP request for the batch")
})
t.Run("status=OK, logBatchCount=1000", func (t *testing.T) {
testLogBatchQueue := make(chan *sumoLogBatch, defaultQueueSizeItems)
defer close(testLogBatchQueue)
testClient := NewMockHttpClient(http.StatusOK)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
httpClient: testClient,
logBatchQueue: testLogBatchQueue,
}
go testSumoLogger.handleBatchedLogs()
testLogBatchCount := 1000
go func() {
for i := 0; i < testLogBatchCount; i++ {
testLogBatchQueue <- testLogBatch
}
}()
for i := 0; i < testLogBatchCount; i++ {
<-testClient.requestReceivedSignal
}
assert.Equal(t, 0, len(testLogBatchQueue),
"should have emptied out the batch queue while handling")
assert.Equal(t, testLogBatchCount, testClient.requestCount,
"should have made one HTTP request per batch")
})
t.Run("status=BadRequest", func (t *testing.T) {
testLogBatchQueue := make(chan *sumoLogBatch, defaultQueueSizeItems)
defer close(testLogBatchQueue)
testClient := NewMockHttpClient(http.StatusBadRequest)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
httpClient: testClient,
logBatchQueue: testLogBatchQueue,
}
go testSumoLogger.handleBatchedLogs()
testLogBatchQueue <- testLogBatch
testRetryCount := 3
testElapsedTime := initialRetryInterval * time.Duration(math.Pow(retryMultiplier, float64(testRetryCount)))
time.Sleep(testElapsedTime)
for i := 0; i < testRetryCount + 1; i++ {
<-testClient.requestReceivedSignal
}
assert.Equal(t, 0, len(testLogBatchQueue),
"should have emptied out the batch queue while handling")
assert.Equal(t, testRetryCount + 1, testClient.requestCount,
"should have made one HTTP request to start, plus one request per retry")
})
}
func TestSendLogs(t *testing.T) {
testLogBatchQueue := make(chan *sumoLogBatch, defaultQueueSizeItems)
t.Run("testLogCount=1, status=OK", func(t *testing.T) {
var testLogs []*sumoLog
testLog := &sumoLog{
source: testSource,
line: testLine,
isPartial: testIsPartial,
}
testLogs = append(testLogs, testLog)
testClient := NewMockHttpClient(http.StatusOK)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
httpClient: testClient,
logBatchQueue: testLogBatchQueue,
sendingInterval: defaultSendingInterval,
batchSize: defaultBatchSizeBytes,
}
err := testSumoLogger.sendLogs(testLogs)
assert.Nil(t, err, "should be no errors sending logs")
assert.Equal(t, 1, testClient.requestCount, "should have received one request")
})
t.Run("testLogCount=100000, status=OK", func(t *testing.T) {
testLogCount := 100000
var testLogs []*sumoLog
testLog := &sumoLog{
source: testSource,
line: testLine,
isPartial: testIsPartial,
}
for i := 0; i < testLogCount; i++ {
testLogs = append(testLogs, testLog)
}
testClient := NewMockHttpClient(http.StatusOK)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
httpClient: testClient,
logBatchQueue: testLogBatchQueue,
sendingInterval: defaultSendingInterval,
batchSize: defaultBatchSizeBytes,
}
err := testSumoLogger.sendLogs(testLogs)
assert.Nil(t, err, "should be no errors sending logs")
assert.Equal(t, 1, testClient.requestCount,
"should have received one request, logs are batched")
})
t.Run("testLogCount=1, status=BadRequest", func(t *testing.T) {
var testLogs []*sumoLog
testLog := &sumoLog{
source: testSource,
line: testLine,
isPartial: testIsPartial,
}
testLogs = append(testLogs, testLog)
testClient := NewMockHttpClient(http.StatusBadRequest)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
httpClient: testClient,
logBatchQueue: testLogBatchQueue,
sendingInterval: defaultSendingInterval,
batchSize: defaultBatchSizeBytes,
}
err := testSumoLogger.sendLogs(testLogs)
assert.NotNil(t, err, "should be an error sending logs")
assert.Equal(t, 1, testClient.requestCount,
"should have received one request, logs are batched")
})
t.Run("testLogCount=100000, status=BadRequest", func(t *testing.T) {
testLogCount := 100000
var testLogs []*sumoLog
testLog := &sumoLog{
source: testSource,
line: testLine,
isPartial: testIsPartial,
}
for i := 0; i < testLogCount; i++ {
testLogs = append(testLogs, testLog)
}
testClient := NewMockHttpClient(http.StatusBadRequest)
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
httpClient: testClient,
logBatchQueue: testLogBatchQueue,
sendingInterval: defaultSendingInterval,
batchSize: defaultBatchSizeBytes,
}
err := testSumoLogger.sendLogs(testLogs)
assert.NotNil(t, err, "should be an error sending logs")
assert.Equal(t, 1, testClient.requestCount,
"should have received one request, logs are batched")
})
}
func TestWriteMessage(t *testing.T) {
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
}
var testLogs []*sumoLog
testLog := &sumoLog{
source: testSource,
line: testLine,
isPartial: testIsPartial,
}
var testLogsBatch bytes.Buffer
err := testSumoLogger.writeMessage(&testLogsBatch, testLogs)
assert.Nil(t, err, "should be no error when writing no logs")
assert.Equal(t, 0, testLogsBatch.Len(), "nothing should be written to the writer")
testLogCount := 100000
for i := 0; i < testLogCount; i++ {
testLogs = append(testLogs, testLog)
}
err = testSumoLogger.writeMessage(&testLogsBatch, testLogs)
assert.Nil(t, err, "should be no error when writing logs")
assert.Equal(t, testLogCount * (len(testLog.line) + len([]byte("\n"))), testLogsBatch.Len(),
"all logs should be written to the writer")
}
func TestWriteMessageGzipCompression(t *testing.T) {
testSumoLogger := &sumoLogger{
httpSourceUrl: testHttpSourceUrl,
gzipCompression: true,
gzipCompressionLevel: defaultGzipCompressionLevel,
}
var testLogs []*sumoLog
testLog := &sumoLog{
source: testSource,
line: testLine,
isPartial: testIsPartial,
}
var testLogsBatch bytes.Buffer
err := testSumoLogger.writeMessageGzipCompression(&testLogsBatch, testLogs)
assert.Nil(t, err, "should be no error when writing no logs")
verifyGzipReader, _ := gzip.NewReader(&testLogsBatch)
testDecompressedLogs, _ := ioutil.ReadAll(verifyGzipReader)
assert.Equal(t, 0, len(testDecompressedLogs), "nothing should be written to the writer")
verifyGzipReader.Close()
testLogCount := 100000
for i := 0; i < testLogCount; i++ {
testLogs = append(testLogs, testLog)
}
err = testSumoLogger.writeMessageGzipCompression(&testLogsBatch, testLogs)
assert.Nil(t, err, "should be no error when writing logs")
verifyGzipReader, _ = gzip.NewReader(&testLogsBatch)
testDecompressedLogs, _ = ioutil.ReadAll(verifyGzipReader)
assert.Equal(t, testLogCount * (len(testLog.line) + len([]byte("\n"))), len(testDecompressedLogs),
"all logs should be written to the writer")
verifyGzipReader.Close()
}