-
Notifications
You must be signed in to change notification settings - Fork 3
/
standard_formatter_test.go
80 lines (70 loc) · 1.89 KB
/
standard_formatter_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
package logbuch
import (
"testing"
"time"
)
func TestStandardFormatter(t *testing.T) {
formatter := NewStandardFormatter(StandardTimeFormat)
now := time.Now()
nowStr := now.Format(StandardTimeFormat)
var buffer []byte
input := []struct {
level int
msg string
params []interface{}
}{
{LevelDebug, "Hello World!", nil},
{LevelInfo, "Hello %s!", []interface{}{"World"}},
{LevelWarning, "Hello %s %d!", []interface{}{"World", 123}},
{LevelError, "Hello %s %d %v!", []interface{}{"World", 123, -3.14}},
}
expected := []string{
nowStr + " [DEBUG] " + "Hello World!\n",
nowStr + " [INFO ] " + "Hello World!\n",
nowStr + " [WARN ] " + "Hello World 123!\n",
nowStr + " [ERROR] " + "Hello World 123 -3.14!\n",
}
for i, in := range input {
buffer = buffer[:0]
formatter.Fmt(&buffer, in.level, now, in.msg, in.params)
out := string(buffer)
t.Log(out)
if out != expected[i] {
t.Fatalf("Expected '%v' but was: %v", expected[i], out)
}
}
}
func TestStandardFormatterPanic(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Fatal("Formatter must panic")
} else {
if r != "message" {
t.Fatalf("Message not correct: %v", r)
}
}
}()
formatter := NewStandardFormatter(StandardTimeFormat)
formatter.Pnc("message", nil)
}
func TestStandardFormatterPanicFmt(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Fatal("Formatter must panic")
} else {
if r != "message formatted" {
t.Fatalf("Message must be formatted, but was: %v", r)
}
}
}()
formatter := NewStandardFormatter(StandardTimeFormat)
formatter.Pnc("message %s", []interface{}{"formatted"})
}
func TestStandardFormatterDiableTime(t *testing.T) {
formatter := NewStandardFormatter("")
var buffer []byte
formatter.Fmt(&buffer, LevelDebug, time.Now(), "message", nil)
if string(buffer) != "[DEBUG] message\n" {
t.Fatalf("Unexpected log: %v", string(buffer))
}
}