-
Notifications
You must be signed in to change notification settings - Fork 747
Expand file tree
/
Copy pathconfig_test.go
More file actions
236 lines (210 loc) · 6.76 KB
/
Copy pathconfig_test.go
File metadata and controls
236 lines (210 loc) · 6.76 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Copyright 2018 The Prometheus Authors
// 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 main
import (
"net/http"
"net/http/httptest"
"net/url"
"reflect"
"strings"
"testing"
"github.com/prometheus/common/promslog"
"go.yaml.in/yaml/v2"
"github.com/prometheus/snmp_exporter/collector"
"github.com/prometheus/snmp_exporter/config"
)
var nopLogger = promslog.NewNopLogger()
func TestHideConfigSecrets(t *testing.T) {
sc := &SafeConfig{}
err := sc.ReloadConfig(nopLogger, []string{"testdata/snmp-auth.yml"}, false)
if err != nil {
t.Errorf("Error loading config %v: %v", "testdata/snmp-auth.yml", err)
}
// String method must not reveal authentication credentials.
sc.mu.RLock()
c, err := yaml.Marshal(sc.C)
sc.mu.RUnlock()
if err != nil {
t.Errorf("Error marshaling config: %v", err)
}
if strings.Contains(string(c), "mysecret") {
t.Fatal("config's String method reveals authentication credentials.")
}
}
func TestLoadConfigWithOverrides(t *testing.T) {
sc := &SafeConfig{}
err := sc.ReloadConfig(nopLogger, []string{"testdata/snmp-with-overrides.yml"}, false)
if err != nil {
t.Errorf("Error loading config %v: %v", "testdata/snmp-with-overrides.yml", err)
}
sc.mu.RLock()
_, err = yaml.Marshal(sc.C)
sc.mu.RUnlock()
if err != nil {
t.Errorf("Error marshaling config: %v", err)
}
}
func TestLoadMultipleConfigs(t *testing.T) {
sc := &SafeConfig{}
configs := []string{"testdata/snmp-auth.yml", "testdata/snmp-with-overrides.yml"}
err := sc.ReloadConfig(nopLogger, configs, false)
if err != nil {
t.Errorf("Error loading configs %v: %v", configs, err)
}
sc.mu.RLock()
_, err = yaml.Marshal(sc.C)
sc.mu.RUnlock()
if err != nil {
t.Errorf("Error marshaling config: %v", err)
}
}
// When all environment variables are present
func TestEnvSecrets(t *testing.T) {
t.Setenv("ENV_USERNAME", "username") // snmp_ prefix is set in config file
t.Setenv("ENV_PASSWORD", "snmp_password")
t.Setenv("ENV_PRIV_PASSWORD", "snmp_priv_password")
sc := &SafeConfig{}
err := sc.ReloadConfig(nopLogger, []string{"testdata/snmp-auth-envvars.yml"}, true)
if err != nil {
t.Errorf("Error loading config %v: %v", "testdata/snmp-auth-envvars.yml", err)
}
// String method must not reveal authentication credentials.
sc.mu.RLock()
c, err := yaml.Marshal(sc.C)
sc.mu.RUnlock()
if err != nil {
t.Errorf("Error marshaling config: %v", err)
}
if strings.Contains(string(c), "mysecret") {
t.Fatal("config's String method reveals authentication credentials.")
}
// we check whether vars we set are resolved correctly in config
for i := range sc.C.Auths {
if sc.C.Auths[i].Username != "snmp_username" || sc.C.Auths[i].Password != "snmp_password" || sc.C.Auths[i].PrivPassword != "snmp_priv_password" {
t.Fatal("failed to resolve secrets from env vars")
}
}
}
// When environment variable(s) are absent
func TestEnvSecretsMissing(t *testing.T) {
t.Setenv("ENV_PASSWORD", "snmp_password")
t.Setenv("ENV_PRIV_PASSWORD", "snmp_priv_password")
sc := &SafeConfig{}
err := sc.ReloadConfig(nopLogger, []string{"testdata/snmp-auth-envvars.yml"}, true)
if err == nil {
t.Fatal("no error despite missing env var")
}
if err != nil {
// we check the error message pattern to determine the error
if strings.Contains(err.Error(), "environment variable not found") {
t.Logf("Error loading config as env var is not set/missing %v: %v", "testdata/snmp-auth-envvars.yml", err)
} else {
t.Errorf("Error loading config %v: %v", "testdata/snmp-auth-envvars.yml", err)
}
}
}
// When environment variables are present but set to empty values.
func TestEnvSecretsEmpty(t *testing.T) {
t.Setenv("ENV_USERNAME", "")
t.Setenv("ENV_PASSWORD", "")
t.Setenv("ENV_PRIV_PASSWORD", "")
sc := &SafeConfig{}
err := sc.ReloadConfig(nopLogger, []string{"testdata/snmp-auth-envvars.yml"}, true)
if err != nil {
t.Fatalf("Error loading config with empty env vars: %v", err)
}
for i := range sc.C.Auths {
if sc.C.Auths[i].Username != "snmp_" || sc.C.Auths[i].Password != "" || sc.C.Auths[i].PrivPassword != "" {
t.Fatal("failed to resolve empty env vars")
}
}
}
// When SNMPv2 was specified without credentials
func TestEnvSecretsNotSpecified(t *testing.T) {
sc := &SafeConfig{}
err := sc.ReloadConfig(nopLogger, []string{"testdata/snmp-auth-v2nocreds.yml"}, true)
if err != nil {
t.Errorf("Error loading config %v: %v", "testdata/snmp-auth-v2nocreds.yml", err)
}
}
func TestParseModules(t *testing.T) {
cases := []struct {
name string
query url.Values
want []string
wantErr string
}{
{
name: "defaults to if_mib when omitted",
query: url.Values{},
want: []string{"if_mib"},
},
{
name: "rejects explicit empty module",
query: url.Values{"module": {""}},
wantErr: "'module' parameter must contain at least one module name",
},
{
name: "deduplicates modules across repeated params and csv values",
query: url.Values{"module": {"if_mib,system", "system", "if_mib"}},
want: []string{"if_mib", "system"},
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
got, err := parseModules(tc.query)
if tc.wantErr != "" {
if err == nil {
t.Fatalf("expected error %q, got nil", tc.wantErr)
}
if err.Error() != tc.wantErr {
t.Fatalf("expected error %q, got %q", tc.wantErr, err.Error())
}
return
}
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if !reflect.DeepEqual(got, tc.want) {
t.Fatalf("expected modules %v, got %v", tc.want, got)
}
})
}
}
func TestHandlerRejectsEmptyModuleParameter(t *testing.T) {
sc = &SafeConfig{
C: &config.Config{
Auths: map[string]*config.Auth{
"public_v2": {
Community: "public",
SecurityLevel: "noAuthNoPriv",
AuthProtocol: "MD5",
PrivProtocol: "DES",
Version: 2,
},
},
Modules: map[string]*config.Module{
"if_mib": {},
},
},
}
req := httptest.NewRequest(http.MethodGet, "/snmp?target=127.0.0.1&module=", http.NoBody)
resp := httptest.NewRecorder()
handler(resp, req, nopLogger, collector.Metrics{})
if resp.Code != http.StatusBadRequest {
t.Fatalf("expected status %d, got %d", http.StatusBadRequest, resp.Code)
}
if !strings.Contains(resp.Body.String(), "'module' parameter must contain at least one module name") {
t.Fatalf("unexpected response body: %q", resp.Body.String())
}
}