-
Notifications
You must be signed in to change notification settings - Fork 8
/
logs_test.go
268 lines (253 loc) · 6.49 KB
/
logs_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
package logs
import (
"context"
"errors"
"fmt"
"io"
"os"
"runtime"
"sync/atomic"
"testing"
"time"
)
func TestInst(t *testing.T) {
SetCaller(true)
SetLevel(LDEBUG)
SetJSON()
SetSep("/")
SetSkip(1)
SetOutput(io.Discard)
SetMaxAge(1)
SetMaxSize(1024)
Debug("Debug")
Debugf("%s", "Debugf")
Info("Info")
Infof("%s", "Infof")
Warn("Warn")
Warnf("%s", "Warnf")
Error("Error")
Errorf("%s", "Errorf")
Ctx(context.TODO()).Info()
}
func TestBase(t *testing.T) {
l := New(os.Stdout)
l.SetCaller(true)
l.SetLevel(LDEBUG)
l.Debug("Debug")
l.Debugf("%s", "Debugf")
l.Info("Info")
l.Infof("%s", "Infof")
l.Warn("Warn")
l.Warnf("%s", "Warnf")
l.Error("Error")
l.Errorf("%s", "Errorf")
}
func TestWithBase(t *testing.T) {
l := New(os.Stdout)
l.SetCaller(true)
ctx := TraceCtx(context.TODO())
l.Ctx(ctx).Debug("Debug")
l.Ctx(ctx).Debugf("%s", "Debugf")
l.Ctx(ctx).Info("Info")
l.Ctx(ctx).Infof("%s", "Infof")
l.Ctx(ctx).Warn("Warn")
l.Ctx(ctx).Warnf("%s", "Warnf")
l.Ctx(ctx).Error("Error")
l.Ctx(ctx).Errorf("%s", "Errorf")
}
func TestConfig(t *testing.T) {
l := New(nil)
l.SetCaller(true)
l.SetLevel(LINFO)
l.SetMaxAge(1)
l.SetSep("/")
l.SetSkip(2)
l.SetMaxSize(1024)
ctx := TraceCtx(context.TODO())
l.Ctx(ctx).Debug("Debug")
l.Ctx(ctx).Debugf("%s", "Debugf")
l.Ctx(ctx).Info("Info")
l.Ctx(ctx).Infof("%s", "Infof")
l.Ctx(ctx).Warn("Warn")
l.Ctx(ctx).Warnf("%s", "Warnf")
l.Ctx(ctx).Error("Error")
l.Ctx(ctx).Errorf("%s", "Errorf")
}
func TestConfigWithFile(t *testing.T) {
l := New(os.Stdout)
l.SetFile("./logs/app.log")
l.SetCaller(true)
l.SetLevel(LERROR)
l.SetCons(true)
l.SetMaxAge(1)
l.SetMaxSize(1024)
ctx := TraceCtx(context.TODO())
l.Ctx(ctx).Debug("Debug")
l.Ctx(ctx).Debugf("%s", "Debugf")
l.Ctx(ctx).Info("Info")
l.Ctx(ctx).Infof("%s", "Infof")
l.Ctx(ctx).Warn("Warn")
l.Ctx(ctx).Warnf("%s", "Warnf")
l.Ctx(ctx).Error("Error")
l.Ctx(ctx).Errorf("%s", "Errorf")
}
// ---------------------------------------------------------------------------------------------------Parallel
type blackholeStream struct {
writeCount uint64
}
func (s *blackholeStream) WriteCount() uint64 {
return atomic.LoadUint64(&s.writeCount)
}
func (s *blackholeStream) Write(p []byte) (int, error) {
atomic.AddUint64(&s.writeCount, 1)
return len(p), nil
}
func BenchmarkParallel(b *testing.B) {
stream := &blackholeStream{}
logger := New(stream)
logger.SetText()
// logger.SetCaller(true)
// logger.caller = true
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
logger.With().
Str("str", "str").
Int("int", 1025).
Bool("bool", true).
Int8("int8", 8).
Int16("int16", 16).
Int32("int32", 32).
Int64("int64", 64).
Uint("uint", 6).
Uint8("uin8", 8).
Err(nil).
Float32("float32", 3.14).Info()
}
})
if stream.WriteCount() != uint64(b.N) {
b.Fatalf("Log write count")
}
}
func BenchmarkLog(b *testing.B) {
l := New(os.Stdout)
l.SetFile("./logs/app.log")
for i := 0; i < b.N; i++ {
l.Info()
}
}
func BenchmarkParallelFile(b *testing.B) {
logger := New(nil)
logger.SetFile("./logs/app.log")
// logger.SetCaller(true)
// logger.caller = true
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
logger.With().
Str("str", "str").
Int("int", 1025).
Bool("bool", true).
Int("int", 64).
Int64("int64", 64).Info()
}
})
}
type mint int
func (mi mint) String() string {
return fmt.Sprintf("int:%d", mi)
}
func TestField(t *testing.T) {
n := New(os.Stdout)
f := n.With()
f.Bool("out", false).
Caller(true).
Bool("key", true).
Int("key", 1).
Int8("key", 2).
Int16("key", 3).
Int32("key", 4).
Int64("key", 5).
Uint("key", 6).
Uint8("key", 7).
Uint16("key", 8).
Uint32("key", 9).
Uint64("key", 10).
Float32("key", 11.98122).
Float64("key", 12.987654321).
Str("key", "a").
Err(nil).
Err(errors.New("err")).
Raw("key", []byte("")).
Bytes("key", []byte("b")).
Time("key", time.Time{}).
Stringer("key", mint(10)).
Stringer("key", nil).
Dur("key", 0).Any("key-any", runtime.BlockProfileRecord{})
f.Info()
}
func TestLog(t *testing.T) {
l := New(os.Stdout)
l.SetCaller(true)
ctx := TraceCtx(context.Background(), trace())
l.Ctx(ctx).Info()
l.Ctx(ctx).Info()
l.Ctx(ctx).Str("t", "xx").Str("tx", "tt").Info()
l.Ctx(ctx).Info()
l.Ctx(ctx).Error()
s := l.Ctx(ctx)
s.Bool("b", false)
s.Info("666")
s.Info("xx")
}
func TestLog1(t *testing.T) {
l := New(os.Stdout)
l.SetCaller(true)
// l.SetFile("./logs1/app.log")
defer l.Close()
ctx := TraceCtx(context.Background(), trace())
l1 := l.Ctx(ctx).Str("basic", "basic")
l1.Debug()
l1.Info()
l1.Error()
s := l.Ctx(ctx)
s.Bool("b", false)
s.Info("666")
s.Info("xx")
}
func TestWriter(t *testing.T) {
SetFile("./logs/app.log")
// SetText()
SetText()
SetCons(true)
SetCaller(true)
for i := 0; i < 10; i++ {
With().Int("idx", i).Debug()
With().Int("idx", i).Debug("debug")
With().Int("idx", i).Debugf("debugf")
With().Int("idx", i).Info()
With().Int("idx", i).Info("info")
With().Int("idx", i).Infof("infof")
With().Int("idx", i).Warn()
With().Int("idx", i).Warn("warn")
With().Int("idx", i).Warnf("warnf")
With().Int("idx", i).Error()
With().Int("idx", i).Error("erro")
With().Int("idx", i).Errorf("errorf")
}
With().Str("idx", "sp ce").Errorf("omit empty")
Close()
}
// # 使用benchmark采集3秒的内存维度的数据,并生成文件
// go test run=^$ -bench=^BenchmarkZerologJSONNegative$ github.com/zxysilent/logs -benchmem -benchtime=3s -memprofile=mem_profile.out
// # 采集CPU维度的数据
// go test -benchmem -benchtime=3s -bench=^BenchmarkZerologJSONNegative1$ -cpuprofile=cpu_profile.out1
// # 查看pprof文件,指定http方式查看
// go tool pprof -http="127.0.0.1:8080" mem_profile.out
// go tool pprof -http="127.0.0.1:8080" cpu_profile.out1
// # 查看pprof文件,直接在命令行查看
// go tool pprof mem_profile.out
// go test -benchmem -run=^$ -bench ^BenchmarkZerologJSONNegative$ github.com/zxysilent/logs -count=1 -v -benchtime=3s -cpuprofile=cpu_profile.out
// go tool pprof -http="127.0.0.1:8080" cpu_profile.out
// go test -benchmem -run=^$ -bench ^BenchmarkZerologJSONPositive1$ github.com/zxysilent/logs -count=1 -v -benchtime=3s -cpuprofile=cpu_profile.out1
// go tool pprof -http="127.0.0.1:8080" cpu_profile.out1