@@ -35,8 +35,9 @@ func TestPostfixExporter_CollectFromLogline(t *testing.T) {
35
35
unsupportedLogEntries * prometheus.CounterVec
36
36
}
37
37
type args struct {
38
- line []string
39
- count int
38
+ line []string
39
+ removedCount int
40
+ saslFailedCount int
40
41
}
41
42
tests := []struct {
42
43
name string
@@ -49,7 +50,12 @@ func TestPostfixExporter_CollectFromLogline(t *testing.T) {
49
50
line : []string {
50
51
"Feb 11 16:49:24 letterman postfix/qmgr[8204]: AAB4D259B1: removed" ,
51
52
},
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" }),
53
59
},
54
60
},
55
61
{
@@ -88,7 +94,28 @@ func TestPostfixExporter_CollectFromLogline(t *testing.T) {
88
94
"Feb 11 16:49:27 letterman postfix/qmgr[8204]: D0EEE2596C: removed" ,
89
95
"Feb 11 16:49:27 letterman postfix/qmgr[8204]: DFE732172E: removed" ,
90
96
},
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" }),
92
119
},
93
120
},
94
121
}
@@ -119,18 +146,26 @@ func TestPostfixExporter_CollectFromLogline(t *testing.T) {
119
146
smtpdTLSConnects : tt .fields .smtpdTLSConnects ,
120
147
unsupportedLogEntries : tt .fields .unsupportedLogEntries ,
121
148
}
122
- counter := testCounter {}
123
- e .qmgrRemoves = & counter
124
149
for _ , line := range tt .args .line {
125
150
e .CollectFromLogLine (line )
126
151
}
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" )
131
154
})
132
155
}
133
156
}
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
+ }
134
169
135
170
type testCounter struct {
136
171
count int
@@ -144,18 +179,18 @@ func (t *testCounter) Count() int {
144
179
return t .count
145
180
}
146
181
147
- func (t * testCounter ) Add (add float64 ) {
182
+ func (t * testCounter ) Add (_ float64 ) {
148
183
}
149
- func (t * testCounter ) Collect (c chan <- prometheus.Metric ) {
184
+ func (t * testCounter ) Collect (_ chan <- prometheus.Metric ) {
150
185
}
151
- func (t * testCounter ) Describe (c chan <- * prometheus.Desc ) {
186
+ func (t * testCounter ) Describe (_ chan <- * prometheus.Desc ) {
152
187
}
153
188
func (t * testCounter ) Desc () * prometheus.Desc {
154
189
return nil
155
190
}
156
191
func (t * testCounter ) Inc () {
157
192
t .count ++
158
193
}
159
- func (t * testCounter ) Write (x * io_prometheus_client.Metric ) error {
194
+ func (t * testCounter ) Write (_ * io_prometheus_client.Metric ) error {
160
195
return nil
161
196
}
0 commit comments