forked from sohlich/elogrus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hook_test.go
130 lines (106 loc) · 2.82 KB
/
hook_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
package elogrus
import (
"context"
"fmt"
"io/ioutil"
"log"
"net/http"
"reflect"
"testing"
"time"
"github.com/olivere/elastic/v7"
"github.com/sirupsen/logrus"
)
type NewHookFunc func(client *elastic.Client, host string, level logrus.Level, index string) (*ElasticHook, error)
func TestSyncHook(t *testing.T) {
hookTest(NewElasticHook, "sync-log", t)
}
func TestAsyncHook(t *testing.T) {
hookTest(NewAsyncElasticHook, "async-log", t)
}
func TestBulkProcessorHook(t *testing.T) {
hookTest(NewBulkProcessorElasticHook, "bulk-log", t)
}
func hookTest(hookfunc NewHookFunc, indexName string, t *testing.T) {
if r, err := http.Get("http://127.0.0.1:7777"); err != nil {
log.Fatal("Elastic not reachable")
} else {
buf, _ := ioutil.ReadAll(r.Body)
r.Body.Close()
fmt.Println(string(buf))
}
client, err := elastic.NewClient(
elastic.SetURL("http://127.0.0.1:7777"),
elastic.SetHealthcheck(false),
elastic.SetSniff(false))
if err != nil {
log.Panic(err)
}
client.
DeleteIndex(indexName).
Do(context.TODO())
hook, err := hookfunc(client, "localhost", logrus.DebugLevel, indexName)
if err != nil {
log.Panic(err)
}
logrus.AddHook(hook)
samples := 100
for index := 0; index < samples; index++ {
logrus.Infof("Hustej msg %d", time.Now().Unix())
}
// Allow time for data to be processed.
time.Sleep(2 * time.Second)
termQuery := elastic.NewTermQuery("Host", "localhost")
searchResult, err := client.Search().
Index(indexName).
Query(termQuery).
Do(context.TODO())
if err != nil {
t.Errorf("Search error: %v", err)
t.FailNow()
}
if searchResult.TotalHits() != int64(samples) {
t.Errorf("Not all logs pushed to elastic: expected %d got %d", samples, searchResult.TotalHits())
t.FailNow()
}
}
func TestError(t *testing.T) {
client, err := elastic.NewClient(
elastic.SetURL("http://localhost:7777"),
elastic.SetHealthcheck(false),
elastic.SetSniff(false))
if err != nil {
log.Panic(err)
}
client.
DeleteIndex("errorlog").
Do(context.TODO())
hook, err := NewElasticHook(client, "localhost", logrus.DebugLevel, "errorlog")
if err != nil {
log.Panic(err)
t.FailNow()
}
logrus.AddHook(hook)
logrus.WithError(fmt.Errorf("this is error")).
Error("Failed to handle invalid api response")
// Allow time for data to be processed.
time.Sleep(1 * time.Second)
termQuery := elastic.NewTermQuery("Host", "localhost")
searchResult, err := client.Search().
Index("errorlog").
Query(termQuery).
Do(context.TODO())
if !(searchResult.TotalHits() >= int64(1)) {
t.Error("No log created")
t.FailNow()
}
data := searchResult.Each(reflect.TypeOf(logrus.Entry{}))
for _, d := range data {
if l, ok := d.(logrus.Entry); ok {
if errData, ok := l.Data[logrus.ErrorKey]; !ok && errData != "this is error" {
t.Error("Error not serialized properly")
t.FailNow()
}
}
}
}