-
Notifications
You must be signed in to change notification settings - Fork 7
/
log_test.go
269 lines (220 loc) · 6.7 KB
/
log_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
package log
import (
"bytes"
"fmt"
"strings"
"testing"
)
func TestInterface(t *testing.T) {
buf := &bytes.Buffer{}
lgr := newTestLogger(buf)
Current = lgr
Trace("test trace")
if !strings.Contains(buf.String(), `level=trace msg="test trace"`) {
t.Error("current trace not logging correctly")
}
buf.Reset()
Tracef("Hello %s", "World")
if !strings.Contains(buf.String(), `level=trace msg="Hello World"`) {
t.Error("current trace not logging correctly")
}
buf.Reset()
Tracew("foo bar", Fields{"baz": "qux"})
if !strings.Contains(buf.String(), `level=trace msg="foo bar" baz=qux`) {
t.Log(buf.String())
t.Error("current trace not logging correctly")
}
buf.Reset()
Debug("test debug")
if !strings.Contains(buf.String(), `level=debug msg="test debug"`) {
t.Error("current debug not logging correctly")
}
buf.Reset()
Debugf("Hello %s", "World")
if !strings.Contains(buf.String(), `level=debug msg="Hello World"`) {
t.Error("current debug not logging correctly")
}
buf.Reset()
Debugw("foo bar", Fields{"baz": "qux"})
if !strings.Contains(buf.String(), `level=debug msg="foo bar" baz=qux`) {
t.Log(buf.String())
t.Error("current info not logging correctly")
}
buf.Reset()
Info("test info")
if !strings.Contains(buf.String(), `level=info msg="test info"`) {
t.Error("current info not logging correctly")
}
buf.Reset()
Infof("Hello %s", "World")
if !strings.Contains(buf.String(), `level=info msg="Hello World"`) {
t.Error("current info not logging correctly")
}
buf.Reset()
Infow("foo bar", Fields{"baz": "qux"})
if !strings.Contains(buf.String(), `level=info msg="foo bar" baz=qux`) {
t.Log(buf.String())
t.Error("current info not logging correctly")
}
buf.Reset()
Warn("test warn")
if !strings.Contains(buf.String(), `level=warning msg="test warn"`) {
t.Log(buf.String())
t.Error("current warn not logging correctly")
}
buf.Reset()
Warnf("Hello %s", "World")
if !strings.Contains(buf.String(), `level=warning msg="Hello World"`) {
t.Log(buf.String())
t.Error("current warn not logging correctly")
}
buf.Reset()
Warnw("foo bar", Fields{"baz": "qux"})
if !strings.Contains(buf.String(), `level=warning msg="foo bar" baz=qux`) {
t.Log(buf.String())
t.Error("current warn not logging correctly")
}
buf.Reset()
Error("test error")
if !strings.Contains(buf.String(), `level=error msg="test error"`) {
t.Log(buf.String())
t.Error("current error not logging correctly")
}
buf.Reset()
Errorf("Hello %s", "World")
if !strings.Contains(buf.String(), `level=error msg="Hello World"`) {
t.Log(buf.String())
t.Error("current error not logging correctly")
}
buf.Reset()
Errorw("foo bar", Fields{"baz": "qux"})
if !strings.Contains(buf.String(), `level=error msg="foo bar" baz=qux`) {
t.Log(buf.String())
t.Error("current error not logging correctly")
}
buf.Reset()
Panic("test panic")
if !strings.Contains(buf.String(), `level=panic msg="test panic"`) {
t.Log(buf.String())
t.Error("current panic not logging correctly")
}
buf.Reset()
Panicf("Hello %s", "World")
if !strings.Contains(buf.String(), `level=panic msg="Hello World"`) {
t.Log(buf.String())
t.Error("current panic not logging correctly")
}
buf.Reset()
Panicw("foo bar", Fields{"baz": "qux"})
if !strings.Contains(buf.String(), `level=panic msg="foo bar" baz=qux`) {
t.Log(buf.String())
t.Error("current panic not logging correctly")
}
buf.Reset()
Fatal("test fatal")
if !strings.Contains(buf.String(), `level=fatal msg="test fatal"`) {
t.Log(buf.String())
t.Error("current error not logging correctly")
}
buf.Reset()
Fatalf("Hello %s", "World")
if !strings.Contains(buf.String(), `level=fatal msg="Hello World"`) {
t.Log(buf.String())
t.Error("current error not logging correctly")
}
buf.Reset()
Fatalw("foo bar", Fields{"baz": "qux"})
if !strings.Contains(buf.String(), `level=fatal msg="foo bar" baz=qux`) {
t.Log(buf.String())
t.Error("current error not logging correctly")
}
buf.Reset()
}
type testLogger struct {
logger *bytes.Buffer
}
func newTestLogger(lgr *bytes.Buffer) *testLogger {
return &testLogger{
logger: lgr,
}
}
func (l testLogger) Trace(msg ...interface{}) {
dummy(l.logger, "trace", msg...)
}
func (l testLogger) Tracef(template string, args ...interface{}) {
dummyf(l.logger, "trace", template, args...)
}
func (l testLogger) Tracew(msg string, fields Fields) {
dummyw(l.logger, "trace", msg, fields)
}
func (l testLogger) Debug(msg ...interface{}) {
dummy(l.logger, "debug", msg...)
}
func (l testLogger) Debugf(template string, args ...interface{}) {
dummyf(l.logger, "debug", template, args...)
}
func (l testLogger) Debugw(msg string, fields Fields) {
dummyw(l.logger, "debug", msg, fields)
}
func (l testLogger) Info(msg ...interface{}) {
dummy(l.logger, "info", msg...)
}
func (l testLogger) Infof(template string, args ...interface{}) {
dummyf(l.logger, "info", template, args...)
}
func (l testLogger) Infow(msg string, fields Fields) {
dummyw(l.logger, "info", msg, fields)
}
func (l testLogger) Warn(msg ...interface{}) {
dummy(l.logger, "warning", msg...)
}
func (l testLogger) Warnf(template string, args ...interface{}) {
dummyf(l.logger, "warning", template, args...)
}
func (l testLogger) Warnw(msg string, fields Fields) {
dummyw(l.logger, "warning", msg, fields)
}
func (l testLogger) Error(msg ...interface{}) {
dummy(l.logger, "error", msg...)
}
func (l testLogger) Errorf(template string, args ...interface{}) {
dummyf(l.logger, "error", template, args...)
}
func (l testLogger) Errorw(msg string, fields Fields) {
dummyw(l.logger, "error", msg, fields)
}
func (l testLogger) Panic(msg ...interface{}) {
dummy(l.logger, "panic", msg...)
}
func (l testLogger) Panicf(template string, args ...interface{}) {
dummyf(l.logger, "panic", template, args...)
}
func (l testLogger) Panicw(msg string, fields Fields) {
dummyw(l.logger, "panic", msg, fields)
}
func (l testLogger) Fatal(msg ...interface{}) {
dummy(l.logger, "fatal", msg...)
}
func (l testLogger) Fatalf(template string, args ...interface{}) {
dummyf(l.logger, "fatal", template, args...)
}
func (l testLogger) Fatalw(msg string, fields Fields) {
dummyw(l.logger, "fatal", msg, fields)
}
func dummy(buf *bytes.Buffer, level string, msg ...interface{}) {
str := fmt.Sprintf(`level=%s msg="%s"`, level, fmt.Sprint(msg...))
buf.WriteString(str)
}
func dummyf(buf *bytes.Buffer, level, template string, args ...interface{}) {
str := fmt.Sprintf(template, args...)
str = fmt.Sprintf(`level=%s msg="%s"`, level, str)
buf.WriteString(str)
}
func dummyw(buf *bytes.Buffer, level string, msg interface{}, fields Fields) {
var flds string
for k, v := range fields {
flds += fmt.Sprintf("%s=%s ", k, v)
}
str := fmt.Sprintf(`level=%s msg="%s" %s`, level, msg, flds)
buf.WriteString(str)
}