-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathriff_test.go
279 lines (256 loc) · 6.94 KB
/
riff_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
270
271
272
273
274
275
276
277
278
279
package riff_test
import (
"context"
"errors"
"io"
"os"
"strings"
"testing"
"time"
"github.com/localhots/riff"
"github.com/localhots/riff/ctx/log"
)
func TestLogger(t *testing.T) {
cfg := riff.DefaultConfig()
cfg.Level = riff.LevelTrace
log.Setup(cfg)
ctx := context.Background()
err := errors.New("task already exists")
log.Trace(ctx, "Parsing message")
log.Debug(ctx, "Callback received",
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
log.Str("status", "success"),
log.Str("template_name", "index.tpl"),
)
log.Info(ctx, "Starting task",
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
)
log.Info(ctx, "Extremely long message, sorry about that; it is meant to prove that buffer can grow"+strings.Repeat(" @@@", 300),
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
)
log.Warn(ctx, "Duplicate task, but also this message exceeds 40 characters",
log.Int("task_id", 123456),
)
log.Warn(ctx, "Duplicate task but exactly 40 characters",
log.Int("task_id", 123456),
)
log.Warn(riff.WithContext(ctx, log.Str("foo", "bar")), "Duplicate task is exactly 39 characters",
log.Int("task_id", 123456),
)
log.Error(ctx, "Failed to process task", log.Cause(err),
log.Int("task_id", 123456),
)
log.Fatal(ctx, "Failed to start service", log.Cause(err),
log.Str("service", "api"),
)
}
func TestBare(t *testing.T) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: os.Stderr,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
log.Info(ctx, "Starting task",
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
log.Str("status", "success"),
log.Str("template_name", "index.tpl"),
)
}
func TestOptimized(t *testing.T) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: os.Stderr,
Time: true,
TimeFormat: riff.TimeFormat,
TimePrecision: 1 * time.Millisecond,
Color: false,
MinMessageWidth: 0,
SortFields: false,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
log.Info(ctx, "Starting task",
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
log.Str("status", "success"),
log.Str("template_name", "index.tpl"),
)
}
func TestPretty(t *testing.T) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: os.Stderr,
Time: true,
TimeFormat: riff.TimeFormat,
TimePrecision: 1 * time.Millisecond,
Color: true,
MinMessageWidth: 40,
SortFields: false,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
log.Info(ctx, "Starting task",
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
log.Str("status", "success"),
log.Str("template_name", "index.tpl"),
)
}
func TestPrettySorted(t *testing.T) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: os.Stderr,
Time: true,
TimeFormat: riff.TimeFormat,
TimePrecision: 1 * time.Millisecond,
Color: true,
MinMessageWidth: 40,
SortFields: true,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
log.Info(ctx, "Starting task",
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
log.Str("status", "success"),
log.Str("template_name", "index.tpl"),
)
}
func TestPrettySortedContext(t *testing.T) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: os.Stderr,
Time: true,
TimeFormat: riff.TimeFormat,
TimePrecision: 1 * time.Millisecond,
Color: true,
MinMessageWidth: 40,
SortFields: true,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
ctx = log.WithContext(ctx, log.Str("foo", "bar"))
ctx = log.WithContext(ctx, log.Str("zone", "two"))
log.Info(ctx, "Starting task",
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
log.Str("status", "success"),
log.Str("template_name", "index.tpl"),
)
}
func BenchmarkBare(b *testing.B) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: io.Discard,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
b.ResetTimer()
for range b.N {
log.Info(ctx, "Starting task",
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
log.Str("status", "success"),
log.Str("template_name", "index.tpl"),
)
}
}
func BenchmarkOptimized(b *testing.B) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: io.Discard,
Time: true,
TimeFormat: riff.TimeFormat,
TimePrecision: 1 * time.Millisecond,
Color: false,
MinMessageWidth: 0,
SortFields: false,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
b.ResetTimer()
for range b.N {
log.Info(ctx, "Starting task",
log.Str("device_unique_id", "G4000E-1000-F"),
log.Int("task_id", 123456),
log.Str("status", "success"),
log.Str("template_name", "index.tpl"),
)
}
}
func BenchmarkPretty(b *testing.B) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: io.Discard,
Time: true,
TimeFormat: riff.TimeFormat,
TimePrecision: 1 * time.Millisecond,
Color: true,
MinMessageWidth: 40,
SortFields: false,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
b.ResetTimer()
for range b.N {
log.Info(ctx, "Starting task",
log.Any("device_unique_id", "G4000E-1000-F"),
log.Any("task_id", 123456),
log.Any("status", "success"),
log.Any("template_name", "index.tpl"),
)
}
}
func BenchmarkPrettySorted(b *testing.B) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: io.Discard,
Time: true,
TimeFormat: riff.TimeFormat,
TimePrecision: 1 * time.Millisecond,
Color: true,
MinMessageWidth: 40,
SortFields: true,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
b.ResetTimer()
for range b.N {
log.Info(ctx, "Starting task",
log.Any("device_unique_id", "G4000E-1000-F"),
log.Any("task_id", 123456),
log.Any("status", "success"),
log.Any("template_name", "index.tpl"),
)
}
}
func BenchmarkPrettySortedContext(b *testing.B) {
log.Setup(riff.Config{
Level: riff.LevelDebug,
Output: io.Discard,
Time: true,
TimeFormat: riff.TimeFormat,
TimePrecision: 1 * time.Millisecond,
Color: true,
MinMessageWidth: 40,
SortFields: true,
StackTraceLevel: riff.LevelError,
})
ctx := context.Background()
ctx = log.WithContext(ctx, log.Any("foo", "bar"))
ctx = log.WithContext(ctx, log.Any("one", "two"))
b.ResetTimer()
for range b.N {
log.Info(ctx, "Starting task",
log.Any("device_unique_id", "G4000E-1000-F"),
log.Any("task_id", 123456),
log.Any("status", "success"),
log.Any("template_name", "index.tpl"),
)
}
}