-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpapertrail_test.go
115 lines (83 loc) · 1.85 KB
/
papertrail_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
package logrus_papertrail
import (
"fmt"
"testing"
"github.com/sirupsen/logrus"
"github.com/stvp/go-udp-testing"
)
const (
HOST = "localhost"
PORT = 16661
)
type test_connect struct {
buffer []byte
}
func (t *test_connect) Write(b []byte) (int, error) {
t.buffer = append(t.buffer, b...)
return len(b), nil
}
func TestWritingToUDP(t *testing.T) {
udp.SetAddr(fmt.Sprintf(":%d", PORT))
hook, err := NewPapertrailHook(&Hook{
Host: HOST,
Port: PORT,
Hostname: "test.local",
Appname: "test",
})
if err != nil {
t.Errorf("Unable to connect to local UDP server.")
}
log := logrus.New()
log.Hooks.Add(hook)
udp.ShouldReceive(t, "foo", func() {
log.Info("foo")
})
}
func TestWritingToTCP_FAKE(t *testing.T) {
tconn := &test_connect{}
hook, err := NewPapertrailTCPHook(&Hook{
Host: HOST,
Port: PORT,
Hostname: "test.local",
Appname: "test",
})
if err == nil {
t.Errorf("Fake connection! Must give error!")
}
// here i replace conn interface to check if everything is ok with hook
hook.conn = tconn
log := logrus.New()
log.Hooks.Add(hook)
log.Infoln("testing TCP")
if len(tconn.buffer) > 0 {
t.Logf("%s", tconn.buffer)
} else {
t.Error("Nothing was received!")
}
}
func TestLevels(t *testing.T) {
logrus.SetLevel(logrus.DebugLevel)
tconn := &test_connect{}
hook, _ := NewPapertrailTCPHook(&Hook{
Host: HOST,
Port: PORT,
Hostname: "test.local",
Appname: "test",
})
hook.conn = tconn
hook.SetLevels([]logrus.Level{
logrus.ErrorLevel,
logrus.WarnLevel,
})
logrus.AddHook(hook)
logrus.Info("hidden string1")
logrus.Debug("hidden string2")
if len(tconn.buffer) > 0 {
t.Error("Error leveling (ignored levels pass)")
}
tconn.buffer = []byte{}
logrus.Warn("non hidden string3")
if len(tconn.buffer) == 0 {
t.Error("Error leveling (specified levels did not pass)")
}
}