-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathmain_test.go
470 lines (407 loc) · 14.9 KB
/
main_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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
// Copyright 2020 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 cmd
import (
"encoding/base64"
"io"
"net/http"
"net/http/httptest"
"os"
"strings"
"testing"
"github.com/go-kit/log"
"github.com/prometheus-community/json_exporter/config"
pconfig "github.com/prometheus/common/config"
)
func TestFailIfSelfSignedCA(t *testing.T) {
target := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
}))
defer target.Close()
req := httptest.NewRequest("GET", "http://example.com/foo"+"?module=default&target="+target.URL, nil)
recorder := httptest.NewRecorder()
probeHandler(recorder, req, log.NewNopLogger(), config.Config{Modules: map[string]config.Module{"default": {}}})
resp := recorder.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusServiceUnavailable {
t.Fatalf("Fail if (not strict) selfsigned CA test fails unexpectedly, got %s", body)
}
}
func TestSucceedIfSelfSignedCA(t *testing.T) {
c := config.Config{
Modules: map[string]config.Module{
"default": {
HTTPClientConfig: pconfig.HTTPClientConfig{
TLSConfig: pconfig.TLSConfig{
InsecureSkipVerify: true,
},
},
}},
}
target := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
}))
defer target.Close()
req := httptest.NewRequest("GET", "http://example.com/foo"+"?module=default&target="+target.URL, nil)
recorder := httptest.NewRecorder()
probeHandler(recorder, req, log.NewNopLogger(), c)
resp := recorder.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusOK {
t.Fatalf("Succeed if (not strict) selfsigned CA test fails unexpectedly, got %s", body)
}
}
func TestDefaultModule(t *testing.T) {
target := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
}))
defer target.Close()
req := httptest.NewRequest("GET", "http://example.com/foo"+"?target="+target.URL, nil)
recorder := httptest.NewRecorder()
probeHandler(recorder, req, log.NewNopLogger(), config.Config{Modules: map[string]config.Module{"default": {}}})
resp := recorder.Result()
if resp.StatusCode != http.StatusOK {
t.Fatalf("Default module test fails unexpectedly, expected 200, got %d", resp.StatusCode)
}
// Module doesn't exist.
recorder = httptest.NewRecorder()
probeHandler(recorder, req, log.NewNopLogger(), config.Config{Modules: map[string]config.Module{"foo": {}}})
resp = recorder.Result()
if resp.StatusCode != http.StatusBadRequest {
t.Fatalf("Default module test fails unexpectedly, expected 400, got %d", resp.StatusCode)
}
}
func TestFailIfTargetMissing(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/foo", nil)
recorder := httptest.NewRecorder()
probeHandler(recorder, req, log.NewNopLogger(), config.Config{})
resp := recorder.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusBadRequest {
t.Fatalf("Fail if 'target' query parameter missing test fails unexpectedly, got %s", body)
}
}
func TestDefaultAcceptHeader(t *testing.T) {
target := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
expected := "application/json"
if got := r.Header.Get("Accept"); got != expected {
t.Errorf("Default 'Accept' header mismatch, got %s, expected: %s", got, expected)
w.WriteHeader(http.StatusNotAcceptable)
}
}))
defer target.Close()
req := httptest.NewRequest("GET", "http://example.com/foo"+"?module=default&target="+target.URL, nil)
recorder := httptest.NewRecorder()
probeHandler(recorder, req, log.NewNopLogger(), config.Config{Modules: map[string]config.Module{"default": {}}})
resp := recorder.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusOK {
t.Fatalf("Default 'Accept: application/json' header test fails unexpectedly, got %s", body)
}
}
func TestCorrectResponse(t *testing.T) {
tests := []struct {
ConfigFile string
ServeFile string
ResponseFile string
ShouldSucceed bool
}{
{"../test/config/good.yml", "/serve/good.json", "../test/response/good.txt", true},
{"../test/config/good.yml", "/serve/repeat-metric.json", "../test/response/good.txt", false},
}
target := httptest.NewServer(http.FileServer(http.Dir("../test")))
defer target.Close()
for i, test := range tests {
c, err := config.LoadConfig(test.ConfigFile)
if err != nil {
t.Fatalf("Failed to load config file %s", test.ConfigFile)
}
req := httptest.NewRequest("GET", "http://example.com/foo"+"?module=default&target="+target.URL+test.ServeFile, nil)
recorder := httptest.NewRecorder()
probeHandler(recorder, req, log.NewNopLogger(), c)
resp := recorder.Result()
body, _ := io.ReadAll(resp.Body)
expected, _ := os.ReadFile(test.ResponseFile)
if test.ShouldSucceed && string(body) != string(expected) {
t.Fatalf("Correct response validation test %d fails unexpectedly.\nGOT:\n%s\nEXPECTED:\n%s", i, body, expected)
}
}
}
func TestBasicAuth(t *testing.T) {
username := "myUser"
password := "mySecretPassword"
expected := "Basic " + base64.StdEncoding.EncodeToString([]byte(username+":"+password))
target := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if got := r.Header.Get("Authorization"); got != expected {
t.Errorf("BasicAuth mismatch, got: %s, expected: %s", got, expected)
w.WriteHeader(http.StatusUnauthorized)
}
}))
defer target.Close()
req := httptest.NewRequest("GET", "http://example.com/foo"+"?module=default&target="+target.URL, nil)
recorder := httptest.NewRecorder()
c := config.Config{
Modules: map[string]config.Module{
"default": {
HTTPClientConfig: pconfig.HTTPClientConfig{
BasicAuth: &pconfig.BasicAuth{
Username: username,
Password: pconfig.Secret(password),
},
},
},
},
}
probeHandler(recorder, req, log.NewNopLogger(), c)
resp := recorder.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusOK {
t.Fatalf("BasicAuth test fails unexpectedly. Got: %s", body)
}
}
func TestBearerToken(t *testing.T) {
token := "mySecretToken"
target := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
expected := "Bearer " + token
if got := r.Header.Get("Authorization"); got != expected {
t.Errorf("BearerToken mismatch, got: %s, expected: %s", got, expected)
w.WriteHeader(http.StatusUnauthorized)
}
}))
defer target.Close()
req := httptest.NewRequest("GET", "http://example.com/foo"+"?module=default&target="+target.URL, nil)
recorder := httptest.NewRecorder()
c := config.Config{
Modules: map[string]config.Module{"default": {
HTTPClientConfig: pconfig.HTTPClientConfig{
BearerToken: pconfig.Secret(token),
},
}},
}
probeHandler(recorder, req, log.NewNopLogger(), c)
resp := recorder.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusOK {
t.Fatalf("BearerToken test fails unexpectedly. Got: %s", body)
}
}
func TestHTTPHeaders(t *testing.T) {
headers := map[string]string{
"X-Dummy": "test",
"User-Agent": "unsuspicious user",
"Accept-Language": "en-US",
}
target := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
for key, value := range headers {
if got := r.Header.Get(key); got != value {
t.Errorf("Unexpected value of header %q: expected %q, got %q", key, value, got)
}
}
w.WriteHeader(http.StatusOK)
}))
defer target.Close()
req := httptest.NewRequest("GET", "http://example.com/foo"+"?module=default&target="+target.URL, nil)
recorder := httptest.NewRecorder()
c := config.Config{
Modules: map[string]config.Module{
"default": {
Headers: headers,
},
},
}
probeHandler(recorder, req, log.NewNopLogger(), c)
resp := recorder.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusOK {
t.Fatalf("Setting custom headers failed unexpectedly. Got: %s", body)
}
}
// Test is the body template is correctly rendered
func TestBodyPostTemplate(t *testing.T) {
bodyTests := []struct {
Body config.Body
ShouldSucceed bool
Result string
}{
{
Body: config.Body{Content: "something static like pi, 3.14"},
ShouldSucceed: true,
},
{
Body: config.Body{Content: "arbitrary dynamic value pass: {{ randInt 12 30 }}", Templatize: false},
ShouldSucceed: true,
},
{
Body: config.Body{Content: "arbitrary dynamic value fail: {{ randInt 12 30 }}", Templatize: true},
ShouldSucceed: false,
},
{
Body: config.Body{Content: "templatized mutated value: {{ upper `hello` }} is now all caps", Templatize: true},
Result: "templatized mutated value: HELLO is now all caps",
ShouldSucceed: true,
},
{
Body: config.Body{Content: "value should be {{ lower `All Small` | trunc 3 }}", Templatize: true},
Result: "value should be all",
ShouldSucceed: true,
},
}
for _, test := range bodyTests {
target := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
expected := test.Body.Content
if test.Result != "" {
expected = test.Result
}
if got, _ := io.ReadAll(r.Body); string(got) != expected && test.ShouldSucceed {
t.Errorf("POST request body content mismatch, got: %s, expected: %s", got, expected)
}
w.WriteHeader(http.StatusOK)
}))
req := httptest.NewRequest("POST", "http://example.com/foo"+"?module=default&target="+target.URL, strings.NewReader(test.Body.Content))
recorder := httptest.NewRecorder()
c := config.Config{
Modules: map[string]config.Module{
"default": {
Body: test.Body,
},
},
}
probeHandler(recorder, req, log.NewNopLogger(), c)
resp := recorder.Result()
respBody, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusOK {
t.Fatalf("POST body content failed. Got: %s", respBody)
}
target.Close()
}
}
// Test is the query parameters are correctly replaced in the provided body template
func TestBodyPostQuery(t *testing.T) {
bodyTests := []struct {
Body config.Body
ShouldSucceed bool
Result string
QueryParams map[string]string
}{
{
Body: config.Body{Content: "pi has {{ .piValue | first }} value", Templatize: true},
ShouldSucceed: true,
Result: "pi has 3.14 value",
QueryParams: map[string]string{"piValue": "3.14"},
},
{
Body: config.Body{Content: `{ "pi": "{{ .piValue | first }}" }`, Templatize: true},
ShouldSucceed: true,
Result: `{ "pi": "3.14" }`,
QueryParams: map[string]string{"piValue": "3.14"},
},
{
Body: config.Body{Content: "pi has {{ .anotherQuery | first }} value", Templatize: true},
ShouldSucceed: true,
Result: "pi has very high value",
QueryParams: map[string]string{"piValue": "3.14", "anotherQuery": "very high"},
},
{
Body: config.Body{Content: "pi has {{ .piValue }} value", Templatize: true},
ShouldSucceed: false,
QueryParams: map[string]string{"piValue": "3.14", "anotherQuery": "dummy value"},
},
{
Body: config.Body{Content: "pi has {{ .piValue }} value", Templatize: true},
ShouldSucceed: true,
Result: "pi has [3.14] value",
QueryParams: map[string]string{"piValue": "3.14", "anotherQuery": "dummy value"},
},
{
Body: config.Body{Content: "value of {{ upper `pi` | repeat 3 }} is {{ .anotherQuery | first }}", Templatize: true},
ShouldSucceed: true,
Result: "value of PIPIPI is dummy value",
QueryParams: map[string]string{"piValue": "3.14", "anotherQuery": "dummy value"},
},
{
Body: config.Body{Content: "pi has {{ .piValue }} value", Templatize: true},
ShouldSucceed: true,
Result: "pi has [] value",
},
{
Body: config.Body{Content: "pi has {{ .piValue | first }} value", Templatize: true},
ShouldSucceed: true,
Result: "pi has <no value> value",
},
{
Body: config.Body{Content: "value of pi is 3.14", Templatize: true},
ShouldSucceed: true,
},
}
for _, test := range bodyTests {
target := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
expected := test.Body.Content
if test.Result != "" {
expected = test.Result
}
if got, _ := io.ReadAll(r.Body); string(got) != expected && test.ShouldSucceed {
t.Errorf("POST request body content mismatch (with query params), got: %s, expected: %s", got, expected)
}
w.WriteHeader(http.StatusOK)
}))
req := httptest.NewRequest("POST", "http://example.com/foo"+"?module=default&target="+target.URL, strings.NewReader(test.Body.Content))
q := req.URL.Query()
for k, v := range test.QueryParams {
q.Add(k, v)
}
req.URL.RawQuery = q.Encode()
recorder := httptest.NewRecorder()
c := config.Config{
Modules: map[string]config.Module{
"default": {
Body: test.Body,
},
},
}
probeHandler(recorder, req, log.NewNopLogger(), c)
resp := recorder.Result()
respBody, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusOK {
t.Fatalf("POST body content failed. Got: %s", respBody)
}
target.Close()
}
}
func TestRegexResponse(t *testing.T) {
tests := []struct {
name string
ConfigFile string
ServeFile string
ResponseFile string
ShouldSucceed bool
}{
{"case1_testCorrectResponse", "../test/config/config.yml", "/serve/correctGot.json", "../test/response/expected.txt", true},
{"case2_testFailResponse", "../test/config/config.yml", "/serve/failGot.json", "../test/response/expected.txt", false},
{"case3_testInvalidRegex", "../test/config/invalidConfig.yml", "/serve/correctGot.json", "../test/response/expected.txt", false},
{"case4_testNullVaule", "../test/config/config.yml", "/serve/nullVaule.json", "../test/response/expected.txt", false},
}
target := httptest.NewServer(http.FileServer(http.Dir("../test")))
defer target.Close()
for i, test := range tests {
c, err := config.LoadConfig(test.ConfigFile)
if err != nil {
t.Fatalf("Failed to load config file %s", test.ConfigFile)
}
req := httptest.NewRequest("GET", "http://example.com/foo"+"?module=default&target="+target.URL+test.ServeFile, nil)
recorder := httptest.NewRecorder()
probeHandler(recorder, req, log.NewNopLogger(), c)
resp := recorder.Result()
body, _ := io.ReadAll(resp.Body)
expected, _ := os.ReadFile(test.ResponseFile)
if test.ShouldSucceed && cap(body) != cap(expected) {
t.Fatalf("Correct response validation test %d fails unexpectedly.\nGOT:\n%s\nEXPECTED:\n%s", i, body, expected)
}
}
}