-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_test.go
94 lines (89 loc) · 2.88 KB
/
new_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
package golog
import (
"reflect"
"testing"
)
func TestNew(t *testing.T) {
t.Run("If there's some validation errors with the configuration, panic", func(t *testing.T) {
calls := 0
c := make(chan bool)
go func() {
defer func() {
e := recover()
if e == nil || e.(error) != ErrLvlMsgSameKey {
t.Errorf("Expected the correct error")
} else {
calls += 1
}
c <- true
}()
New(Configuration{}) // same lvl and msg field name
}()
<-c
if t.Failed() {
t.FailNow()
}
if calls != 1 {
t.Fatalf("Expected to call deferred function")
}
})
t.Run("Should set a pointer to the given configuration and nil to the others", func(t *testing.T) {
errorParser := func(err error) (string, LogFields) { return "", nil }
lvlsEnabled := LvlFatal
lvl := DefaultLvlKey
msg := DefaultMsgKey
m := &mockAsyncScheduler{}
l := New(Configuration{m, lvl, msg, lvlsEnabled, errorParser}).(*logger)
if l.configuration == nil || l.outputs != nil || l.preHooks != nil || l.postHooks != nil || l.fields != nil {
t.Fatalf("Expected to be nil")
}
if l.configuration.AsyncScheduler != AsyncScheduler(m) {
t.Fatalf("Expected the correct AsyncScheduler")
}
if l.configuration.LvlFieldName != lvl {
t.Fatalf("Expected the correct LvlFieldName")
}
if l.configuration.MsgFieldName != msg {
t.Fatalf("Expected the correct MsgFieldName")
}
if l.configuration.LvlsEnabled != lvlsEnabled {
t.Fatalf("Expected the correct LvlsEnabled")
}
if reflect.ValueOf(errorParser).Pointer() != reflect.ValueOf(l.configuration.ErrorParser).Pointer() {
t.Fatalf("Expected the correct ErrorParser")
}
})
}
func TestNewDefault(t *testing.T) {
t.Run("Should use the default configuration", func(t *testing.T) {
c := DefaultConfig()
l := NewDefault().(*logger)
if l.configuration.AsyncScheduler != c.AsyncScheduler {
t.Fatalf("Expected the correct AsyncScheduler")
}
if l.configuration.LvlFieldName != c.LvlFieldName {
t.Fatalf("Expected the correct LvlFieldName")
}
if l.configuration.MsgFieldName != c.MsgFieldName {
t.Fatalf("Expected the correct MsgFieldName")
}
if l.configuration.LvlsEnabled != c.LvlsEnabled {
t.Fatalf("Expected the correct LvlsEnabled")
}
if reflect.ValueOf(l.configuration.ErrorParser).Pointer() != reflect.ValueOf(c.ErrorParser).Pointer() {
t.Fatalf("Expected the correct ErrorParser")
}
})
t.Run("Should set two outputs, the first should log to stdout and the second panic on LvlFatal", raceFreeTest(func(t *testing.T) {
l := NewDefault().(*logger)
if len(l.outputs) != 2 {
t.Fatalf("Expected to set some output")
}
if reflect.ValueOf(l.outputs[0]).Pointer() != reflect.ValueOf(OutputAnsiToStdout).Pointer() {
t.Fatal("The first output is wrong")
}
if reflect.ValueOf(l.outputs[1]).Pointer() != reflect.ValueOf(OutputPanicOnFatal).Pointer() {
t.Fatal("The second output is wrong")
}
}, wStdOut))
}