forked from heroku/rollrus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollrus_test.go
276 lines (223 loc) · 6.2 KB
/
rollrus_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
package rollrus
import (
"fmt"
"io"
"net/http"
"net/http/httptest"
"reflect"
"testing"
"time"
"github.com/sirupsen/logrus"
"github.com/pkg/errors"
"github.com/stvp/roll"
)
func ExampleSetupLogging() {
SetupLogging("some-long-token", "staging")
// This will not be reported to Rollbar
logrus.Info("OHAI")
// This will be reported to Rollbar
logrus.WithFields(logrus.Fields{"hi": "there"}).Fatal("The end.")
}
func ExampleNewHook() {
log := logrus.New()
hook := NewHook("my-secret-token", "production")
log.Hooks.Add(hook)
// This will not be reported to Rollbar
log.WithFields(logrus.Fields{"power_level": "9001"}).Debug("It's over 9000!")
// This will be reported to Rollbar
log.Panic("Boom.")
}
func TestLogrusHookInterface(t *testing.T) {
var hook interface{} = NewHook("", "foo")
if _, ok := hook.(logrus.Hook); !ok {
t.Fatal("expected NewHook's return value to implement logrus.Hook")
}
}
func TestIntConversion(t *testing.T) {
i := make(logrus.Fields)
i["test"] = 5
r := convertFields(i)
v, ok := r["test"]
if !ok {
t.Fatal("Expected test key, but did not find it")
}
if v != "5" {
t.Fatal("Expected value to equal 5, but instead it is: ", v)
}
}
func TestErrConversion(t *testing.T) {
i := make(logrus.Fields)
i["test"] = fmt.Errorf("This is an error")
r := convertFields(i)
v, ok := r["test"]
if !ok {
t.Fatal("Expected test key, but did not find it")
}
if v != "This is an error" {
t.Fatal("Expected value to be a string of the error but instead it is: ", v)
}
}
func TestStringConversion(t *testing.T) {
i := make(logrus.Fields)
i["test"] = "This is a string"
r := convertFields(i)
v, ok := r["test"]
if !ok {
t.Fatal("Expected test key, but did not find it")
}
if v != "This is a string" {
t.Fatal("Expected value to equal a certain string, but instead it is: ", v)
}
}
func TestTimeConversion(t *testing.T) {
now := time.Now()
i := make(logrus.Fields)
i["test"] = now
r := convertFields(i)
v, ok := r["test"]
if !ok {
t.Fatal("Expected test key, but did not find it")
}
if v != now.Format(time.RFC3339) {
t.Fatal("Expected value to equal, but instead it is: ", v)
}
}
func TestExtractError(t *testing.T) {
entry := logrus.NewEntry(nil)
entry.Data["err"] = fmt.Errorf("foo bar baz")
trace, cause := extractError(entry)
if len(trace) != 0 {
t.Fatal("Expected length of trace to be equal to 0, but instead is: ", len(trace))
}
if cause.Error() != "foo bar baz" {
t.Fatalf("Expected error as string to be 'foo bar baz', but was instead: %q", cause)
}
}
func TestExtractErrorDefault(t *testing.T) {
entry := logrus.NewEntry(nil)
entry.Data["no-err"] = fmt.Errorf("foo bar baz")
entry.Message = "message error"
trace, cause := extractError(entry)
if len(trace) != 0 {
t.Fatal("Expected length of trace to be equal to 0, but instead is: ", len(trace))
}
if cause.Error() != "message error" {
t.Fatalf("Expected error as string to be 'message error', but was instead: %q", cause)
}
}
func TestExtractErrorFromStackTracer(t *testing.T) {
entry := logrus.NewEntry(nil)
entry.Data["err"] = errors.Errorf("foo bar baz")
trace, cause := extractError(entry)
if len(trace) != 3 {
t.Fatal("Expected length of trace to be == 3, but instead is: ", len(trace))
}
if cause.Error() != "foo bar baz" {
t.Fatalf("Expected error as string to be 'foo bar baz', but was instead: %q", cause.Error())
}
}
func TestTriggerLevels(t *testing.T) {
client := roll.New("", "testing")
underTest := &Hook{Client: client}
if !reflect.DeepEqual(underTest.Levels(), defaultTriggerLevels) {
t.Fatal("Expected Levels() to return defaultTriggerLevels")
}
newLevels := []logrus.Level{logrus.InfoLevel}
underTest.triggers = newLevels
if !reflect.DeepEqual(underTest.Levels(), newLevels) {
t.Fatal("Expected Levels() to return newLevels")
}
}
func TestWithIgnoredErrors(t *testing.T) {
h := NewHook("", "testing", WithIgnoredErrors(io.EOF))
entry := logrus.NewEntry(nil)
entry.Message = "This is a test"
// Exact error is skipped.
entry.Data["err"] = io.EOF
if err := h.Fire(entry); err != nil {
t.Fatal("unexpected error ", err)
}
if h.reported {
t.Fatal("expected no report to have happened")
}
// Wrapped error is also skipped.
entry.Data["err"] = errors.Wrap(io.EOF, "hello")
if err := h.Fire(entry); err != nil {
t.Fatal("unexpected error ", err)
}
if h.reported {
t.Fatal("expected no report to have happened")
}
// Non blacklisted errors get reported.
entry.Data["err"] = errors.New("hello")
if err := h.Fire(entry); err != nil {
t.Fatal("unexpected error ", err)
}
if !h.reported {
t.Fatal("expected a report to have happened")
}
// no err gets reported.
delete(entry.Data, "err")
if err := h.Fire(entry); err != nil {
t.Fatal("unexpected error ", err)
}
if !h.reported {
t.Fatal("expected a report to have happened")
}
}
type isTemporary interface {
Temporary() bool
}
func TestWithIgnoreErrorFunc(t *testing.T) {
h := NewHook("", "testing", WithIgnoreErrorFunc(func(err error) bool {
if err == io.EOF {
return true
}
if e, ok := err.(isTemporary); ok && e.Temporary() {
return true
}
return false
}))
entry := logrus.NewEntry(nil)
entry.Message = "This is a test"
// Exact error is skipped.
entry.Data["err"] = io.EOF
if err := h.Fire(entry); err != nil {
t.Fatal("unexpected error ", err)
}
if h.reported {
t.Fatal("expected no report to have happened")
}
// Wrapped error is also skipped.
entry.Data["err"] = errors.Wrap(io.EOF, "hello")
if err := h.Fire(entry); err != nil {
t.Fatal("unexpected error ", err)
}
if h.reported {
t.Fatal("expected no report to have happened")
}
srv := httptest.NewServer(nil)
srv.Close()
// Temporary error skipped
_, err := http.Get(srv.URL)
entry.Data["err"] = err
if err := h.Fire(entry); err != nil {
t.Fatal("unexpected error ", err)
}
// Non blacklisted errors get reported.
entry.Data["err"] = errors.New("hello")
if err := h.Fire(entry); err != nil {
t.Fatal("unexpected error ", err)
}
if !h.reported {
t.Fatal("expected a report to have happened")
}
// no err gets reported.
delete(entry.Data, "err")
if err := h.Fire(entry); err != nil {
t.Fatal("unexpected error ", err)
}
if !h.reported {
t.Fatal("expected a report to have happened")
}
}