-
Notifications
You must be signed in to change notification settings - Fork 15
/
nodeInfo_test.go
183 lines (160 loc) · 4.35 KB
/
nodeInfo_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
package aptos
import (
"bytes"
"context"
"github.com/stretchr/testify/assert"
"log/slog"
"sync"
"testing"
)
type levelCounts struct {
lock sync.Mutex
counts map[slog.Level]int
}
func (lc *levelCounts) inc(level slog.Level) {
lc.lock.Lock()
defer lc.lock.Unlock()
lc.counts[level] = lc.counts[level] + 1
}
func (lc *levelCounts) get(level slog.Level) int {
lc.lock.Lock()
defer lc.lock.Unlock()
return lc.counts[level]
}
func (lc *levelCounts) total() int {
lc.lock.Lock()
defer lc.lock.Unlock()
sum := 0
for _, count := range lc.counts {
sum += count
}
return sum
}
// e.g. slog.LevelDebug == -4, slog.LevelError = 8
func (lc *levelCounts) totalAbove(level slog.Level) int {
lc.lock.Lock()
defer lc.lock.Unlock()
sum := 0
for xlevel, count := range lc.counts {
if xlevel >= level {
sum += count
}
}
return sum
}
func newLevelCounts() *levelCounts {
out := new(levelCounts)
out.counts = make(map[slog.Level]int, 5)
return out
}
type CountingHandlerWrapper struct {
inner slog.Handler
counts *levelCounts
}
func NewCountingHandlerWrapper(inner slog.Handler) *CountingHandlerWrapper {
return &CountingHandlerWrapper{
inner: inner,
counts: newLevelCounts(),
}
}
func (chw *CountingHandlerWrapper) Enabled(ctx context.Context, level slog.Level) bool {
return chw.inner.Enabled(ctx, level)
}
func (chw *CountingHandlerWrapper) Handle(ctx context.Context, rec slog.Record) error {
chw.counts.inc(rec.Level)
return chw.inner.Handle(ctx, rec)
}
func (chw *CountingHandlerWrapper) WithAttrs(attrs []slog.Attr) slog.Handler {
return &CountingHandlerWrapper{
inner: chw.inner.WithAttrs(attrs),
counts: chw.counts,
}
}
func (chw *CountingHandlerWrapper) WithGroup(name string) slog.Handler {
return &CountingHandlerWrapper{
inner: chw.inner.WithGroup(name),
counts: chw.counts,
}
}
type testSlogContext struct {
logbuf bytes.Buffer
jsonHandler *slog.JSONHandler
countingHandler *CountingHandlerWrapper
logger *slog.Logger
oldDefault *slog.Logger
}
func setupTestLogging() *testSlogContext {
logContext := &testSlogContext{}
logContext.jsonHandler = slog.NewJSONHandler(
&logContext.logbuf,
&slog.HandlerOptions{
Level: slog.LevelDebug,
},
)
logContext.countingHandler = NewCountingHandlerWrapper(logContext.jsonHandler)
logContext.logger = slog.New(logContext.countingHandler)
logContext.oldDefault = slog.Default()
slog.SetDefault(logContext.logger)
return logContext
}
func restoreNormalLogging(t *testing.T, logContext *testSlogContext) {
if t.Failed() {
t.Log(string(logContext.logbuf.Bytes()))
}
slog.SetDefault(logContext.oldDefault)
}
func TestEpoch(t *testing.T) {
lc := setupTestLogging()
defer restoreNormalLogging(t, lc)
info := NodeInfo{
EpochStr: "123",
}
assert.Equal(t, uint64(123), info.Epoch())
info.EpochStr = "garbage"
assert.Equal(t, uint64(0), info.Epoch())
assert.Equal(t, 1, lc.countingHandler.counts.get(slog.LevelError))
}
func TestLedgerVersion(t *testing.T) {
lc := setupTestLogging()
defer restoreNormalLogging(t, lc)
info := NodeInfo{
LedgerVersionStr: "123",
}
assert.Equal(t, uint64(123), info.LedgerVersion())
info.LedgerVersionStr = "garbage"
assert.Equal(t, uint64(0), info.LedgerVersion())
assert.Equal(t, 1, lc.countingHandler.counts.get(slog.LevelError))
}
func TestOldestLedgerVersion(t *testing.T) {
lc := setupTestLogging()
defer restoreNormalLogging(t, lc)
info := NodeInfo{
OldestLedgerVersionStr: "123",
}
assert.Equal(t, uint64(123), info.OldestLedgerVersion())
info.OldestLedgerVersionStr = "garbage"
assert.Equal(t, uint64(0), info.OldestLedgerVersion())
assert.Equal(t, 1, lc.countingHandler.counts.get(slog.LevelError))
}
func TestBlockHeight(t *testing.T) {
lc := setupTestLogging()
defer restoreNormalLogging(t, lc)
info := NodeInfo{
BlockHeightStr: "123",
}
assert.Equal(t, uint64(123), info.BlockHeight())
info.BlockHeightStr = "garbage"
assert.Equal(t, uint64(0), info.BlockHeight())
assert.Equal(t, 1, lc.countingHandler.counts.get(slog.LevelError))
}
func TestOldestBlockHeight(t *testing.T) {
lc := setupTestLogging()
defer restoreNormalLogging(t, lc)
info := NodeInfo{
OldestBlockHeightStr: "123",
}
assert.Equal(t, uint64(123), info.OldestBlockHeight())
info.OldestBlockHeightStr = "garbage"
assert.Equal(t, uint64(0), info.OldestBlockHeight())
assert.Equal(t, 1, lc.countingHandler.counts.get(slog.LevelError))
}