-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyslog_test.go
57 lines (45 loc) · 1.14 KB
/
syslog_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
package syslogrus
import (
"log/syslog"
"testing"
"github.com/sirupsen/logrus"
)
func TestLocalhostAddAndPrint(t *testing.T) {
log := logrus.New()
hook, err := NewSyslogHook(
SyslogHookConfig{
Network: "udp",
Raddr: "localhost:514",
Priority: syslog.LOG_INFO,
})
if err != nil {
t.Errorf("Unable to connect to local syslog.")
}
log.Hooks.Add(hook)
for _, level := range hook.Levels() {
if len(log.Hooks[level]) != 1 {
t.Errorf("SyslogHook was not added. The length of log.Hooks[%v]: %v", level, len(log.Hooks[level]))
}
}
log.Info("Congratulations!")
}
func TestLocalhostAddAndPrintWithFormatter(t *testing.T) {
log := logrus.New()
hook, err := NewSyslogHook(
SyslogHookConfig{
Network: "udp",
Raddr: "localhost:514",
Priority: syslog.LOG_INFO,
Formatter: &logrus.JSONFormatter{},
})
if err != nil {
t.Errorf("Unable to connect to local syslog.")
}
log.Hooks.Add(hook)
for _, level := range hook.Levels() {
if len(log.Hooks[level]) != 1 {
t.Errorf("SyslogHook was not added. The length of log.Hooks[%v]: %v", level, len(log.Hooks[level]))
}
}
log.Info("Congratulations!")
}