-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuffer_handler_test.go
80 lines (72 loc) · 1.44 KB
/
buffer_handler_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 collect_test
import (
"encoding/json"
"log/slog"
"testing"
"testing/slogtest"
"github.com/google/go-cmp/cmp"
"github.com/osbuild/logging/pkg/collect"
)
func TestStandardLibraryHelper(t *testing.T) {
var result []map[string]any
th := collect.NewTestHandler(slog.LevelDebug, true, true, true)
err := slogtest.TestHandler(th, func() []map[string]any {
result = th.All()
return parseLogEntries(t, result)
})
if err != nil {
t.Error(err)
json, _ := json.MarshalIndent(result, "", " ")
t.Log(string(json))
}
}
func parseLogEntries(_ *testing.T, ms []map[string]any) []map[string]any {
return ms
}
func TestLast(t *testing.T) {
h := collect.NewTestHandler(slog.LevelDebug, false, false, false)
logger := slog.New(h)
tests := []struct {
f func()
want map[string]any
}{
{
f: func() {
logger.Debug("test", "key", "value")
},
want: map[string]any{
"msg": "test",
"key": "value",
},
},
{
f: func() {
logger.Debug("test", slog.Group("g", "key", "value"))
},
want: map[string]any{
"msg": "test",
"g": map[string]any{
"key": "value",
},
},
},
{
f: func() {
logger.WithGroup("g").Debug("test", "key", "value")
},
want: map[string]any{
"msg": "test",
"g": map[string]any{
"key": "value",
},
},
},
}
for _, tt := range tests {
tt.f()
got := h.Last()
if !cmp.Equal(got, tt.want) {
t.Errorf("Got: %v, want: %v", got, tt.want)
}
}
}