-
Notifications
You must be signed in to change notification settings - Fork 497
/
Copy pathhealthchecks_handler_test.go
125 lines (119 loc) · 2.81 KB
/
healthchecks_handler_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
package main
import (
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/go-jose/go-jose/v4"
"github.com/sirupsen/logrus"
"github.com/sirupsen/logrus/hooks/test"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestHealthCheckHandler(t *testing.T) {
log, _ := test.NewNullLogger()
log.Level = logrus.DebugLevel
testCases := []struct {
name string
method string
path string
jwks *jose.JSONWebKeySet
modTime time.Time
pollTime time.Time
code int
}{
{
name: "Check Live State with no Keyset and valid threshold",
method: "GET",
path: "/live",
code: http.StatusOK,
},
{
name: "Check Live State with Keyset and valid threshold",
method: "GET",
path: "/live",
code: http.StatusOK,
jwks: &jose.JSONWebKeySet{
Keys: []jose.JSONWebKey{
{
Key: ec256Pubkey,
KeyID: "KEYID",
Algorithm: "ES256",
},
},
},
pollTime: time.Now(),
},
{
name: "Check Live State with Keyset and invalid threshold",
method: "GET",
path: "/live",
code: http.StatusInternalServerError,
jwks: &jose.JSONWebKeySet{
Keys: []jose.JSONWebKey{
{
Key: ec256Pubkey,
KeyID: "KEYID",
Algorithm: "ES256",
},
},
},
pollTime: time.Now().Add(-time.Minute * 5),
},
{
name: "Check Ready State with Keyset and valid threshold",
method: "GET",
path: "/ready",
code: http.StatusOK,
jwks: &jose.JSONWebKeySet{
Keys: []jose.JSONWebKey{
{
Key: ec256Pubkey,
KeyID: "KEYID",
Algorithm: "ES256",
},
},
},
pollTime: time.Now(),
},
{
name: "Check Ready State with Keyset and invalid threshold",
method: "GET",
path: "/ready",
code: http.StatusInternalServerError,
jwks: &jose.JSONWebKeySet{
Keys: []jose.JSONWebKey{
{
Key: ec256Pubkey,
KeyID: "KEYID",
Algorithm: "ES256",
},
},
},
pollTime: time.Now().Add(-time.Minute * 5),
},
{
name: "Check Ready State without Keyset",
method: "GET",
path: "/ready",
code: http.StatusInternalServerError,
jwks: nil,
},
}
for _, testCase := range testCases {
t.Run(testCase.name, func(t *testing.T) {
source := new(FakeKeySetSource)
source.SetKeySet(testCase.jwks, testCase.modTime, testCase.pollTime)
r, err := http.NewRequest(testCase.method, "http://localhost"+testCase.path, nil)
require.NoError(t, err)
w := httptest.NewRecorder()
c := Config{}
c.ServerAPI = &ServerAPIConfig{}
c.HealthChecks = &HealthChecksConfig{BindPort: 8008, ReadyPath: "/ready", LivePath: "/live"}
h := NewHealthChecksHandler(source, &c)
h.ServeHTTP(w, r)
t.Logf("HEADERS: %q", w.Header())
assert.Equal(t, testCase.code, w.Code)
})
}
}