-
Notifications
You must be signed in to change notification settings - Fork 0
/
unstructure_glogger_test.go
107 lines (101 loc) · 2.07 KB
/
unstructure_glogger_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
package glog
import (
"os"
"sync"
"testing"
)
func TestUnstructureGlog_log(t *testing.T) {
type args struct {
format string
level LogLevel
msg []interface{}
}
tests := []struct {
name string
g *UnstructureGlog
args args
}{
{
name: "success",
g: &UnstructureGlog{
glog: glog{
out: os.Stdout,
queue: make(chan interface{}, 100),
wg: &sync.WaitGroup{},
},
},
args: args{
format: "%s",
level: ERROR,
msg: []interface{}{"Success"},
},
},
}
for _, tt := range tests {
defer tt.g.Cleanup()
t.Run(tt.name, func(t *testing.T) {
tt.g.Error(tt.args.msg...)
tt.g.Info(tt.args.msg...)
tt.g.Warn(tt.args.msg...)
tt.g.Debug(tt.args.msg...)
tt.g.log(tt.args.level, tt.args.msg...)
})
}
os.RemoveAll(testFile)
}
func TestUnstructureGlog_logf(t *testing.T) {
type args struct {
format string
level LogLevel
msg []interface{}
}
tests := []struct {
name string
g *UnstructureGlog
args args
}{
{
name: "success",
g: &UnstructureGlog{
glog: glog{
out: os.Stdout,
queue: make(chan interface{}, 100),
wg: &sync.WaitGroup{},
},
},
args: args{
format: "%s",
level: ERROR,
msg: []interface{}{"Success"},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tt.g.Errorf(tt.args.format, tt.args.msg...)
tt.g.Infof(tt.args.format, tt.args.msg...)
tt.g.Warnf(tt.args.format, tt.args.msg...)
tt.g.Debugf(tt.args.format, tt.args.msg...)
tt.g.logf(tt.args.format, tt.args.level, tt.args.msg...)
})
}
os.RemoveAll(testFile)
}
// benchmarking
func BenchmarkUnstructureGlog_logf(b *testing.B) {
g := NewUnstructureGlogger(testFile)
for i := 0; i < b.N; i++ {
g.logf("%s, %v, %d, %t, %s, %v, %d, %t", ERROR, "Success", g, 1, true, "Success", g, 1, true)
}
g.Cleanup()
os.RemoveAll(testFile)
}
// benchmarking
func BenchmarkUnstructureGlog_log(b *testing.B) {
g := NewUnstructureGlogger(testFile)
for i := 0; i < b.N; i++ {
g.log(ERROR, "Success", g, 1, true)
}
g.Cleanup()
os.RemoveAll(testFile)
}