Skip to content

Commit 0436fed

Browse files
committed
Making test easier to use
1 parent 69a7101 commit 0436fed

File tree

1 file changed

+49
-14
lines changed

1 file changed

+49
-14
lines changed

postfix_exporter_test.go

+49-14
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ func TestPostfixExporter_CollectFromLogline(t *testing.T) {
3535
unsupportedLogEntries *prometheus.CounterVec
3636
}
3737
type args struct {
38-
line []string
39-
count int
38+
line []string
39+
removedCount int
40+
saslFailedCount int
4041
}
4142
tests := []struct {
4243
name string
@@ -49,7 +50,12 @@ func TestPostfixExporter_CollectFromLogline(t *testing.T) {
4950
line: []string{
5051
"Feb 11 16:49:24 letterman postfix/qmgr[8204]: AAB4D259B1: removed",
5152
},
52-
count: 1,
53+
removedCount: 1,
54+
saslFailedCount: 0,
55+
},
56+
fields: fields{
57+
qmgrRemoves: &testCounter{count: 0},
58+
unsupportedLogEntries: prometheus.NewCounterVec(prometheus.CounterOpts{}, []string{"process"}),
5359
},
5460
},
5561
{
@@ -88,7 +94,28 @@ func TestPostfixExporter_CollectFromLogline(t *testing.T) {
8894
"Feb 11 16:49:27 letterman postfix/qmgr[8204]: D0EEE2596C: removed",
8995
"Feb 11 16:49:27 letterman postfix/qmgr[8204]: DFE732172E: removed",
9096
},
91-
count: 31,
97+
removedCount: 31,
98+
saslFailedCount: 0,
99+
},
100+
fields: fields{
101+
qmgrRemoves: &testCounter{count: 0},
102+
unsupportedLogEntries: prometheus.NewCounterVec(prometheus.CounterOpts{}, []string{"process"}),
103+
},
104+
},
105+
{
106+
name: "SASL Failed",
107+
args: args{
108+
line: []string{
109+
"Apr 26 10:55:19 tcc1 postfix/smtpd[21126]: warning: SASL authentication failure: cannot connect to saslauthd server: Permission denied",
110+
"Apr 26 10:55:19 tcc1 postfix/smtpd[21126]: warning: SASL authentication failure: Password verification failed",
111+
"Apr 26 10:55:19 tcc1 postfix/smtpd[21126]: warning: laptop.local[192.168.1.2]: SASL PLAIN authentication failed: generic failure",
112+
},
113+
saslFailedCount: 1,
114+
removedCount: 0,
115+
},
116+
fields: fields{
117+
smtpdSASLAuthenticationFailures: &testCounter{count: 0},
118+
unsupportedLogEntries: prometheus.NewCounterVec(prometheus.CounterOpts{}, []string{"process"}),
92119
},
93120
},
94121
}
@@ -119,18 +146,26 @@ func TestPostfixExporter_CollectFromLogline(t *testing.T) {
119146
smtpdTLSConnects: tt.fields.smtpdTLSConnects,
120147
unsupportedLogEntries: tt.fields.unsupportedLogEntries,
121148
}
122-
counter := testCounter{}
123-
e.qmgrRemoves = &counter
124149
for _, line := range tt.args.line {
125150
e.CollectFromLogLine(line)
126151
}
127-
assert.Equal(t, tt.args.count, counter.Count(), "Wrong number of lines counted")
128-
if counter.Count() != tt.args.count {
129-
t.Fatal("Counter wrong: ")
130-
}
152+
assertCounterEquals(t, e.qmgrRemoves, tt.args.removedCount, "Wrong number of lines counted")
153+
assertCounterEquals(t, e.smtpdSASLAuthenticationFailures, tt.args.saslFailedCount, "Wrong number of Sasl counter counted")
131154
})
132155
}
133156
}
157+
func assertCounterEquals(t *testing.T, counter prometheus.Counter, expected int, message string) {
158+
159+
if counter != nil && expected > 0 {
160+
switch counter.(type) {
161+
case *testCounter:
162+
counter := counter.(*testCounter)
163+
assert.Equal(t, expected, counter.Count(), message)
164+
default:
165+
t.Fatal("Type not implemented")
166+
}
167+
}
168+
}
134169

135170
type testCounter struct {
136171
count int
@@ -144,18 +179,18 @@ func (t *testCounter) Count() int {
144179
return t.count
145180
}
146181

147-
func (t *testCounter) Add(add float64) {
182+
func (t *testCounter) Add(_ float64) {
148183
}
149-
func (t *testCounter) Collect(c chan<- prometheus.Metric) {
184+
func (t *testCounter) Collect(_ chan<- prometheus.Metric) {
150185
}
151-
func (t *testCounter) Describe(c chan<- *prometheus.Desc) {
186+
func (t *testCounter) Describe(_ chan<- *prometheus.Desc) {
152187
}
153188
func (t *testCounter) Desc() *prometheus.Desc {
154189
return nil
155190
}
156191
func (t *testCounter) Inc() {
157192
t.count++
158193
}
159-
func (t *testCounter) Write(x *io_prometheus_client.Metric) error {
194+
func (t *testCounter) Write(_ *io_prometheus_client.Metric) error {
160195
return nil
161196
}

0 commit comments

Comments
 (0)