-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathSystemdJournal2Gelf_test.go
172 lines (130 loc) · 4.74 KB
/
SystemdJournal2Gelf_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
package main
import (
"encoding/json"
"testing"
)
func TestUnmarshalEntry(t *testing.T) {
entry := SystemdJournalEntry{}
err := json.Unmarshal([]byte(`{
"MESSAGE" : "Linux version 4.20.6-arch1-1-ARCH (builduser@heftig-32156) (gcc version 8.2.1 20181127 (GCC)) #1 SMP PREEMPT Thu Jan 31 08:22:01 UTC 2019",
"PRIORITY" : "5",
"__REALTIME_TIMESTAMP" : "1549067421724300",
"_TRANSPORT" : "kernel",
"SYSLOG_FACILITY" : "0",
"SYSLOG_IDENTIFIER" : "kernel",
"_HOSTNAME" : "machine.nl",
"_BOOT_ID" : "61c0e40c739f4f009c785cef13b46e17",
"_UID" : "99",
"_PID" : "1234"
}`), &entry)
AssertNotError(t, err)
gelf := entry.toGelf()
AssertEquals(t, "machine.nl", gelf.Host)
AssertEquals(t, "Linux version 4.20.6-arch1-1-ARCH (builduser@heftig-32156) (gcc version 8.2.1 20181127 (GCC)) #1 SMP PREEMPT Thu Jan 31 08:22:01 UTC 2019", gelf.Short)
AssertEquals(t, "", gelf.Full)
AssertEquals(t, float64(1549067421.7243001), gelf.TimeUnix)
AssertEquals(t, int32(5), gelf.Level)
AssertEquals(t, "kernel", gelf.Facility)
AssertEquals(t, 4, len(gelf.Extra))
AssertEquals(t, "61c0e40c739f4f009c785cef13b46e17", gelf.Extra["Boot_id"])
AssertEquals(t, "99", gelf.Extra["Uid"])
AssertEquals(t, "1234", gelf.Extra["Pid"])
}
func TestJsonMessageOverridesNormalProperties(t *testing.T) {
entry := SystemdJournalEntry{}
err := json.Unmarshal([]byte(`{
"_HOSTNAME" : "machine.nl",
"MESSAGE" : "{\"Message\":\"actually something else\",\"FullMessage\":\"additional data\"}",
"SYSLOG_IDENTIFIER" : "kernel"
}`), &entry)
AssertNotError(t, err)
gelf := entry.toGelf()
AssertEquals(t, "machine.nl", gelf.Host)
AssertEquals(t, "actually something else", gelf.Short)
AssertEquals(t, "additional data", gelf.Full)
AssertEquals(t, "kernel", gelf.Facility)
AssertEquals(t, 4, len(gelf.Extra))
}
func TestJsonMessageIncludeDataInExtra(t *testing.T) {
entry := SystemdJournalEntry{}
err := json.Unmarshal([]byte(`{
"_HOSTNAME" : "machine.nl",
"MESSAGE" : "{\"Message\":\"actually something else\",\"stuff\":\"things and stuff and more like that\"}",
"SYSLOG_IDENTIFIER" : "kernel"
}`), &entry)
AssertNotError(t, err)
gelf := entry.toGelf()
AssertEquals(t, "machine.nl", gelf.Host)
AssertEquals(t, "actually something else", gelf.Short)
AssertEquals(t, "kernel", gelf.Facility)
AssertEquals(t, 5, len(gelf.Extra))
AssertEquals(t, "things and stuff and more like that", gelf.Extra["stuff"])
}
func TestUnmarshalUnprintableEntry(t *testing.T) {
entry := SystemdJournalEntry{}
err := json.Unmarshal([]byte(`{
"_HOSTNAME" : "machine.nl",
"MESSAGE" : [ 116, 104, 105, 115, 32, 105, 115, 32, 97, 32, 98, 105, 110, 97, 114, 121, 32, 118, 97, 108, 117, 101, 32, 7 ],
"SYSLOG_IDENTIFIER" : "kernel"
}`), &entry)
AssertNotError(t, err)
gelf := entry.toGelf()
AssertEquals(t, "this is a binary value \a", gelf.Short)
AssertEquals(t, "kernel", gelf.Facility)
AssertEquals(t, "machine.nl", gelf.Host)
}
func TestDateStrippedFromMessage(t *testing.T) {
entry := SystemdJournalEntry{}
err := json.Unmarshal([]byte(`{
"_HOSTNAME" : "machine.nl",
"MESSAGE" : "2019-04-04 13:20:27 15024 [Warning] Aborted connection",
"SYSLOG_IDENTIFIER" : "mysqld"
}`), &entry)
AssertNotError(t, err)
gelf := entry.toGelf()
AssertEquals(t, "machine.nl", gelf.Host)
AssertEquals(t, "15024 [Warning] Aborted connection", gelf.Short)
AssertEquals(t, "", gelf.Full)
AssertEquals(t, "mysqld", gelf.Facility)
AssertEquals(t, 4, len(gelf.Extra))
}
func TestShortLinesDontTriggerPanic(t *testing.T) {
entry := SystemdJournalEntry{}
err := json.Unmarshal([]byte(`{
"MESSAGE" : ""
}`), &entry)
AssertNotError(t, err)
gelf := entry.toGelf()
AssertEquals(t, "", gelf.Short)
}
// asserts
func AssertEquals(t *testing.T, expected, actual interface{}) {
if expected != actual {
t.Errorf("AssertEquals: %[1]T(%#[1]v) does not match %[2]T(%#[2]v))", actual, expected)
}
}
func AssertNotEquals(t *testing.T, expected, actual interface{}) {
if expected == actual {
t.Errorf("AssertNotEquals: %[1]T(%#[1]v) unexpectedly matches %[2]T(%#[2]v)", actual, expected)
}
}
func AssertError(t *testing.T, err interface{}) {
_, ok := err.(error)
if !ok {
t.Errorf("AssertError: %[1]T(%#[1]v) is not an error", err)
}
}
func AssertSpecificError(t *testing.T, err interface{}, specific error) {
_, ok := err.(error)
if !ok {
t.Errorf("AssertError: %[1]T(%#[1]v) is not an error", err)
} else if specific != nil && err != specific {
t.Errorf("AssertError: %[1]T(%#[1]v) is not an %[1]T(%#[1]v)", err, specific)
}
}
func AssertNotError(t *testing.T, err interface{}) {
_, ok := err.(error)
if ok {
t.Errorf("AssertNotError: %#[1]v is unexpectedly an error", err)
}
}