1234567891011121314151617181920212223242526272829303132333435363738 |
- package handler
- import (
- "net/http"
- "net/http/httptest"
- "testing"
- "git.i2edu.net/i2/go-zero/core/prometheus"
- "github.com/stretchr/testify/assert"
- )
- func TestPromMetricHandler_Disabled(t *testing.T) {
- promMetricHandler := PrometheusHandler("/user/login")
- handler := promMetricHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusOK)
- }))
- req := httptest.NewRequest(http.MethodGet, "http://localhost", nil)
- resp := httptest.NewRecorder()
- handler.ServeHTTP(resp, req)
- assert.Equal(t, http.StatusOK, resp.Code)
- }
- func TestPromMetricHandler_Enabled(t *testing.T) {
- prometheus.StartAgent(prometheus.Config{
- Host: "localhost",
- Path: "/",
- })
- promMetricHandler := PrometheusHandler("/user/login")
- handler := promMetricHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusOK)
- }))
- req := httptest.NewRequest(http.MethodGet, "http://localhost", nil)
- resp := httptest.NewRecorder()
- handler.ServeHTTP(resp, req)
- assert.Equal(t, http.StatusOK, resp.Code)
- }
|