forked from kubernetes/node-problem-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog_counter_test.go
129 lines (120 loc) · 3.03 KB
/
log_counter_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
/*
Copyright 2018 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package logcounter
import (
"testing"
"time"
"k8s.io/apimachinery/pkg/util/clock"
"k8s.io/node-problem-detector/pkg/logcounter/types"
"k8s.io/node-problem-detector/pkg/systemlogmonitor"
systemtypes "k8s.io/node-problem-detector/pkg/systemlogmonitor/types"
)
func NewTestLogCounter(pattern string, startTime time.Time) (types.LogCounter, *clock.FakeClock, chan *systemtypes.Log) {
logCh := make(chan *systemtypes.Log)
clock := clock.NewFakeClock(startTime)
return &logCounter{
logCh: logCh,
buffer: systemlogmonitor.NewLogBuffer(bufferSize),
pattern: pattern,
clock: clock,
}, clock, logCh
}
func TestCount(t *testing.T) {
startTime := time.Now()
for _, tc := range []struct {
description string
logs []*systemtypes.Log
pattern string
expectedCount int
}{
{
description: "no logs",
logs: []*systemtypes.Log{},
pattern: "",
expectedCount: 0,
},
{
description: "one matching log",
logs: []*systemtypes.Log{
{
Timestamp: startTime.Add(-time.Second),
Message: "0",
},
},
pattern: "0",
expectedCount: 1,
},
{
description: "one non-matching log",
logs: []*systemtypes.Log{
{
Timestamp: startTime.Add(-time.Second),
Message: "1",
},
},
pattern: "0",
expectedCount: 0,
},
{
description: "log too new",
logs: []*systemtypes.Log{
{
Timestamp: startTime.Add(time.Second),
Message: "0",
},
},
pattern: "0",
expectedCount: 0,
},
{
description: "many logs",
logs: []*systemtypes.Log{
{
Timestamp: startTime.Add(-time.Second),
Message: "0",
},
{
Timestamp: startTime.Add(-time.Second),
Message: "0",
},
{
Timestamp: startTime.Add(-time.Second),
Message: "1",
},
{
Timestamp: startTime.Add(time.Second),
Message: "0",
},
},
pattern: "0",
expectedCount: 2,
},
} {
t.Run(tc.description, func(t *testing.T) {
counter, fakeClock, logCh := NewTestLogCounter(tc.pattern, startTime)
go func(logs []*systemtypes.Log, ch chan<- *systemtypes.Log) {
for _, log := range logs {
ch <- log
}
// trigger the timeout to ensure the test doesn't block permenantly
for {
fakeClock.Step(2 * timeout)
}
}(tc.logs, logCh)
actualCount := counter.Count()
if actualCount != tc.expectedCount {
t.Errorf("got %d; expected %d", actualCount, tc.expectedCount)
}
})
}
}