mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-01 03:16:31 +02:00
27 lines
590 B
Go
27 lines
590 B
Go
package metrics
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"net/http/httptest"
|
|
"regexp"
|
|
"testing"
|
|
)
|
|
|
|
func Test_newPromHTTPHandler(t *testing.T) {
|
|
h := newPromHTTPHandler()
|
|
|
|
req := httptest.NewRequest("GET", "http://test.local/metrics", new(bytes.Buffer))
|
|
rec := httptest.NewRecorder()
|
|
h.ServeHTTP(rec, req)
|
|
resp := rec.Result()
|
|
b, _ := ioutil.ReadAll(resp.Body)
|
|
|
|
if resp == nil || resp.StatusCode != 200 {
|
|
t.Errorf("Metrics endpoint failed to respond: %s", b)
|
|
}
|
|
|
|
if m, _ := regexp.Match("^# HELP .*", b); !m {
|
|
t.Errorf("Metrics endpoint did not contain any help messages: %s", b)
|
|
}
|
|
}
|