forked from kubernetes/node-problem-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog_monitor_test.go
155 lines (145 loc) · 3.79 KB
/
log_monitor_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
/*
Copyright 2016 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 systemlogmonitor
import (
"fmt"
"reflect"
"runtime"
"testing"
"time"
"github.com/stretchr/testify/assert"
watchertest "k8s.io/node-problem-detector/pkg/systemlogmonitor/logwatchers/testing"
logtypes "k8s.io/node-problem-detector/pkg/systemlogmonitor/types"
"k8s.io/node-problem-detector/pkg/types"
"k8s.io/node-problem-detector/pkg/util"
)
const (
testSource = "TestSource"
testConditionA = "TestConditionA"
testConditionB = "TestConditionB"
)
func TestGenerateStatus(t *testing.T) {
initConditions := []types.Condition{
{
Type: testConditionA,
Status: types.True,
Transition: time.Unix(500, 500),
Reason: "initial reason",
},
{
Type: testConditionB,
Status: types.False,
Transition: time.Unix(500, 500),
},
}
logs := []*logtypes.Log{
{
Timestamp: time.Unix(1000, 1000),
Message: "test message 1",
},
{
Timestamp: time.Unix(2000, 2000),
Message: "test message 2",
},
}
for c, test := range []struct {
rule logtypes.Rule
expected types.Status
}{
// Do not need Pattern because we don't do pattern match in this test
{
rule: logtypes.Rule{
Type: types.Perm,
Condition: testConditionA,
Reason: "test reason",
},
expected: types.Status{
Source: testSource,
Events: []types.Event{util.GenerateConditionChangeEvent(
testConditionA,
types.True,
"test reason",
time.Unix(1000, 1000),
)},
Conditions: []types.Condition{
{
Type: testConditionA,
Status: types.True,
Transition: time.Unix(1000, 1000),
Reason: "test reason",
Message: "test message 1\ntest message 2",
},
initConditions[1],
},
},
},
// Should not update transition time when status and reason are not changed.
{
rule: logtypes.Rule{
Type: types.Perm,
Condition: testConditionA,
Reason: "initial reason",
},
expected: types.Status{
Source: testSource,
Conditions: []types.Condition{
{
Type: testConditionA,
Status: types.True,
Transition: time.Unix(500, 500),
Reason: "initial reason",
},
initConditions[1],
},
},
},
{
rule: logtypes.Rule{
Type: types.Temp,
Reason: "test reason",
},
expected: types.Status{
Source: testSource,
Events: []types.Event{{
Severity: types.Warn,
Timestamp: time.Unix(1000, 1000),
Reason: "test reason",
Message: "test message 1\ntest message 2",
}},
Conditions: initConditions,
},
},
} {
l := &logMonitor{
config: MonitorConfig{
Source: testSource,
},
// Copy the init conditions to make sure it's not changed
// during the test.
conditions: append([]types.Condition{}, initConditions...),
}
got := l.generateStatus(logs, test.rule)
if !reflect.DeepEqual(&test.expected, got) {
t.Errorf("case %d: expected status %+v, got %+v", c+1, test.expected, got)
}
}
}
func TestGoroutineLeak(t *testing.T) {
orignal := runtime.NumGoroutine()
f := watchertest.NewFakeLogWatcher(10)
f.InjectError(fmt.Errorf("unexpected error"))
l := &logMonitor{watcher: f}
_, err := l.Start()
assert.Error(t, err)
assert.Equal(t, orignal, runtime.NumGoroutine())
}