-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathoptions_test.go
210 lines (152 loc) Β· 3.92 KB
/
options_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
package lecho_test
import (
"bytes"
"encoding/json"
"path/filepath"
"strings"
"testing"
"time"
"github.com/labstack/gommon/log"
"github.com/rs/zerolog"
"github.com/stretchr/testify/assert"
"github.com/ziflex/lecho/v3"
)
func TestWithCaller(t *testing.T) {
b := &bytes.Buffer{}
l := lecho.New(b, lecho.WithCaller())
l.Print("foobar")
type Log struct {
Level string `json:"level"`
Caller string `json:"caller"`
Message string `json:"message"`
}
log := &Log{}
err := json.Unmarshal(b.Bytes(), log)
assert.NoError(t, err)
segments := strings.Split(log.Caller, ":")
filePath := filepath.Base(segments[0])
assert.Equal(t, filePath, "logger.go")
}
func TestWithCallerWithSkipFrameCount(t *testing.T) {
b := &bytes.Buffer{}
l := lecho.New(b, lecho.WithCallerWithSkipFrameCount(3))
l.Print("foobar")
type Log struct {
Level string `json:"level"`
Caller string `json:"caller"`
Message string `json:"message"`
}
log := &Log{}
err := json.Unmarshal(b.Bytes(), log)
assert.NoError(t, err)
segments := strings.Split(log.Caller, ":")
filePath := filepath.Base(segments[0])
assert.Equal(t, filePath, "options_test.go")
}
func TestWithField(t *testing.T) {
b := &bytes.Buffer{}
l := lecho.New(b, lecho.WithField("service", "logging"))
l.Print("foobar")
type Log struct {
Level string `json:"level"`
Service string `json:"service"`
Message string `json:"message"`
}
log := &Log{}
err := json.Unmarshal(b.Bytes(), log)
assert.NoError(t, err)
assert.Equal(t, log.Service, "logging")
}
func TestWithFields(t *testing.T) {
b := &bytes.Buffer{}
l := lecho.New(b, lecho.WithFields(map[string]interface{}{
"host": "localhost",
"port": 8080,
}))
l.Print("foobar")
type Log struct {
Level string `json:"level"`
Host string `json:"host"`
Port int `json:"port"`
Message string `json:"message"`
}
log := &Log{}
err := json.Unmarshal(b.Bytes(), log)
assert.NoError(t, err)
assert.Equal(t, log.Host, "localhost")
assert.Equal(t, log.Port, 8080)
}
type (
Hook struct {
logs []HookLog
}
HookLog struct {
level zerolog.Level
message string
}
)
func (h *Hook) Run(e *zerolog.Event, level zerolog.Level, message string) {
h.logs = append(h.logs, HookLog{
level: level,
message: message,
})
}
func TestWithHook(t *testing.T) {
b := &bytes.Buffer{}
h := &Hook{}
l := lecho.New(b, lecho.WithHook(h))
l.Info("Foo")
l.Warn("Bar")
assert.Len(t, h.logs, 2)
assert.Equal(t, h.logs[0].level, zerolog.InfoLevel)
assert.Equal(t, h.logs[0].message, "Foo")
assert.Equal(t, h.logs[1].level, zerolog.WarnLevel)
assert.Equal(t, h.logs[1].message, "Bar")
}
func TestWithHookFunc(t *testing.T) {
b := &bytes.Buffer{}
logs := make([]HookLog, 0, 2)
l := lecho.New(b, lecho.WithHookFunc(func(e *zerolog.Event, level zerolog.Level, message string) {
logs = append(logs, HookLog{
level: level,
message: message,
})
}))
l.Info("Foo")
l.Warn("Bar")
assert.Len(t, logs, 2)
assert.Equal(t, logs[0].level, zerolog.InfoLevel)
assert.Equal(t, logs[0].message, "Foo")
assert.Equal(t, logs[1].level, zerolog.WarnLevel)
assert.Equal(t, logs[1].message, "Bar")
}
func TestWithLevel(t *testing.T) {
b := &bytes.Buffer{}
l := lecho.New(b, lecho.WithLevel(log.WARN))
l.Debug("Test")
assert.Equal(t, b.String(), "")
l.Warn("Foobar")
assert.Equal(t, b.String(), `{"level":"warn","message":"Foobar"}
`)
}
func TestWithPrefix(t *testing.T) {
b := &bytes.Buffer{}
l := lecho.New(b, lecho.WithPrefix("Test"))
l.Warn("Foobar")
assert.Equal(t, b.String(), `{"level":"warn","prefix":"Test","message":"Foobar"}
`)
}
func TestWithTimestamp(t *testing.T) {
b := &bytes.Buffer{}
l := lecho.New(b, lecho.WithTimestamp())
l.Print("foobar")
type Log struct {
Level string `json:"level"`
Message string `json:"message"`
Time time.Time `json:"time"`
}
log := &Log{}
err := json.Unmarshal(b.Bytes(), log)
assert.NoError(t, err)
assert.NotEmpty(t, log.Time)
}