mirror of
https://github.com/ribbybibby/ssl_exporter.git
synced 2024-11-24 08:22:17 +02:00
43dee906c6
* Support TLS renegotiation * Bump version * Revert version bump * Extend TLSConfig with renegotiation support * Update config/config.go - comment formatting Co-authored-by: Rob Best <robertbest89@gmail.com> * add dedicated renegotiation example * Create local NewTLSConfig in order to incorporate local extentions * go mod tidy * Move TLS renegotiation parsing into UnmarshalYAML Co-authored-by: Rob Best <robertbest89@gmail.com>
96 lines
2.2 KiB
Go
96 lines
2.2 KiB
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/go-kit/log"
|
|
"github.com/ribbybibby/ssl_exporter/config"
|
|
"github.com/ribbybibby/ssl_exporter/test"
|
|
)
|
|
|
|
// TestProbeHandler tests that the probe handler sets the ssl_probe_success and
|
|
// ssl_prober metrics correctly
|
|
func TestProbeHandler(t *testing.T) {
|
|
server, _, _, caFile, teardown, err := test.SetupHTTPSServer()
|
|
if err != nil {
|
|
t.Fatalf(err.Error())
|
|
}
|
|
defer teardown()
|
|
|
|
server.StartTLS()
|
|
defer server.Close()
|
|
|
|
conf := &config.Config{
|
|
Modules: map[string]config.Module{
|
|
"https": config.Module{
|
|
Prober: "https",
|
|
TLSConfig: config.TLSConfig{
|
|
CAFile: caFile,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
rr, err := probe(server.URL, "https", conf)
|
|
if err != nil {
|
|
t.Fatalf(err.Error())
|
|
}
|
|
|
|
// Check probe success
|
|
if ok := strings.Contains(rr.Body.String(), "ssl_probe_success 1"); !ok {
|
|
t.Errorf("expected `ssl_probe_success 1`")
|
|
}
|
|
|
|
// Check prober metric
|
|
if ok := strings.Contains(rr.Body.String(), "ssl_prober{prober=\"https\"} 1"); !ok {
|
|
t.Errorf("expected `ssl_prober{prober=\"https\"} 1`")
|
|
}
|
|
}
|
|
|
|
// TestProbeHandler tests that the probe handler sets the ssl_probe_success and
|
|
// ssl_prober metrics correctly when the probe fails
|
|
func TestProbeHandlerFail(t *testing.T) {
|
|
rr, err := probe("localhost:6666", "", config.DefaultConfig)
|
|
if err != nil {
|
|
t.Fatalf(err.Error())
|
|
}
|
|
|
|
// Check probe success
|
|
if ok := strings.Contains(rr.Body.String(), "ssl_probe_success 0"); !ok {
|
|
t.Errorf("expected `ssl_probe_success 0`")
|
|
}
|
|
|
|
// Check prober metric
|
|
if ok := strings.Contains(rr.Body.String(), "ssl_prober{prober=\"tcp\"} 1"); !ok {
|
|
t.Errorf("expected `ssl_prober{prober=\"tcp\"} 1`")
|
|
}
|
|
}
|
|
|
|
func probe(target, module string, conf *config.Config) (*httptest.ResponseRecorder, error) {
|
|
uri := "/probe?target=" + target
|
|
if module != "" {
|
|
uri = uri + "&module=" + module
|
|
}
|
|
req, err := http.NewRequest("GET", uri, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
rr := httptest.NewRecorder()
|
|
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
probeHandler(newTestLogger(), w, r, conf)
|
|
})
|
|
|
|
handler.ServeHTTP(rr, req)
|
|
|
|
return rr, nil
|
|
}
|
|
|
|
func newTestLogger() log.Logger {
|
|
return log.NewLogfmtLogger(log.NewSyncWriter(os.Stdout))
|
|
}
|