-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprometheus_test.go
More file actions
150 lines (112 loc) · 4.08 KB
/
prometheus_test.go
File metadata and controls
150 lines (112 loc) · 4.08 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
package main
import (
"context"
"errors"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/suite"
)
type PrometheusTestSuite struct {
suite.Suite
}
func (s *PrometheusTestSuite) TestHealthHandler() {
s.Run("health endpoint returns ok", func() {
req := httptest.NewRequest(http.MethodGet, "/health", nil)
w := httptest.NewRecorder()
healthHandler(w, req)
s.Equal(http.StatusOK, w.Code)
s.Equal("application/json", w.Header().Get("Content-Type"))
s.Equal(`{"status":"ok"}`+"\n", w.Body.String())
})
}
func (s *PrometheusTestSuite) TestReadyHandler() {
s.Run("ready when userli api is reachable", func() {
mockClient := &MockUserliService{}
mockClient.On("GetDomain", mock.Anything, "health-check.invalid").Return(false, nil)
req := httptest.NewRequest(http.MethodGet, "/ready", nil)
w := httptest.NewRecorder()
handler := readyHandler(mockClient)
handler(w, req)
s.Equal(http.StatusOK, w.Code)
s.Equal("application/json", w.Header().Get("Content-Type"))
s.Equal(`{"status":"ready"}`+"\n", w.Body.String())
mockClient.AssertExpectations(s.T())
})
s.Run("unavailable when userli api returns error", func() {
mockClient := &MockUserliService{}
mockClient.On("GetDomain", mock.Anything, "health-check.invalid").Return(false, errors.New("connection refused"))
req := httptest.NewRequest(http.MethodGet, "/ready", nil)
w := httptest.NewRecorder()
handler := readyHandler(mockClient)
handler(w, req)
s.Equal(http.StatusServiceUnavailable, w.Code)
s.Equal("application/json", w.Header().Get("Content-Type"))
s.Equal(`{"error":"connection refused","status":"unavailable"}`+"\n", w.Body.String())
mockClient.AssertExpectations(s.T())
})
s.Run("unavailable on timeout", func() {
mockClient := &MockUserliService{}
mockClient.On("GetDomain", mock.Anything, "health-check.invalid").Return(false, nil).After(100 * time.Millisecond)
ctx, cancel := context.WithTimeout(context.Background(), 50*time.Millisecond)
defer cancel()
req := httptest.NewRequest(http.MethodGet, "/ready", nil)
req = req.WithContext(ctx)
w := httptest.NewRecorder()
handler := readyHandler(mockClient)
handler(w, req)
s.Equal(http.StatusServiceUnavailable, w.Code)
s.Equal("application/json", w.Header().Get("Content-Type"))
s.Equal(`{"error":"timeout","status":"unavailable"}`+"\n", w.Body.String())
})
}
func (s *PrometheusTestSuite) TestReadyHandlerHealthCheckStatusMetric() {
s.Run("sets health check status to 1 when healthy", func() {
mockClient := &MockUserliService{}
mockClient.On("GetDomain", mock.Anything, "health-check.invalid").Return(false, nil)
req := httptest.NewRequest(http.MethodGet, "/ready", nil)
w := httptest.NewRecorder()
handler := readyHandler(mockClient)
handler(w, req)
s.NotNil(w)
mockClient.AssertExpectations(s.T())
})
s.Run("sets health check status to 0 when unhealthy", func() {
mockClient := &MockUserliService{}
mockClient.On("GetDomain", mock.Anything, "health-check.invalid").Return(false, errors.New("api error"))
req := httptest.NewRequest(http.MethodGet, "/ready", nil)
w := httptest.NewRecorder()
handler := readyHandler(mockClient)
handler(w, req)
s.NotNil(w)
mockClient.AssertExpectations(s.T())
})
}
func (s *PrometheusTestSuite) TestStartMetricsServer() {
s.Run("starts and stops gracefully", func() {
mockClient := &MockUserliService{}
mockClient.On("GetDomain", mock.Anything, "health-check.invalid").Return(false, nil).Maybe()
ctx, cancel := context.WithCancel(context.Background())
// Use a random available port
listenAddr := "127.0.0.1:0"
// Start server in goroutine
serverStarted := make(chan struct{})
go func() {
close(serverStarted)
StartMetricsServer(ctx, listenAddr, mockClient)
}()
// Wait for server to start
<-serverStarted
time.Sleep(100 * time.Millisecond)
// Cancel context to trigger shutdown
cancel()
// Give server time to shut down
time.Sleep(200 * time.Millisecond)
// Test passes if no panic occurred
})
}
func TestPrometheus(t *testing.T) {
suite.Run(t, new(PrometheusTestSuite))
}