-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsentry_test.go
179 lines (146 loc) · 4.6 KB
/
sentry_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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package common_test
//go:generate mockgen --build_flags=--mod=mod -destination=./mock/sentry.go -package=mock -mock_names=SentryClient=SentryClient github.com/cloudtrust/common-healthcheck SentryClient
import (
"context"
"encoding/json"
"fmt"
"math/rand"
"net/http"
"net/http/httptest"
"testing"
"time"
. "github.com/cloudtrust/common-healthcheck"
mock "github.com/cloudtrust/common-healthcheck/mock"
"github.com/stretchr/testify/assert"
"go.uber.org/mock/gomock"
)
func init() {
rand.Seed(time.Now().UnixNano())
}
type sentryReport struct {
Name string `json:"name"`
Status string `json:"status"`
Duration string `json:"duration,omitempty"`
Error string `json:"error,omitempty"`
}
func TestSentryDisabled(t *testing.T) {
var mockCtrl = gomock.NewController(t)
defer mockCtrl.Finish()
var mockSentry = mock.NewSentryClient(mockCtrl)
var s = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("ok"))
}))
defer s.Close()
var (
enabled = false
m = NewSentryModule(mockSentry, s.Client(), enabled)
)
var jsonReport, err = m.HealthCheck(context.Background(), "ping")
assert.Nil(t, err)
// Check that the report is a valid json
var report = []sentryReport{}
assert.Nil(t, json.Unmarshal(jsonReport, &report))
var r = report[0]
assert.Equal(t, "sentry", r.Name)
assert.Equal(t, "Deactivated", r.Status)
assert.Zero(t, r.Duration)
assert.Zero(t, r.Error)
}
func TestSentryPing(t *testing.T) {
var mockCtrl = gomock.NewController(t)
defer mockCtrl.Finish()
var mockSentry = mock.NewSentryClient(mockCtrl)
var s = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("ok"))
}))
defer s.Close()
var (
enabled = true
url = s.URL[7:]
m = NewSentryModule(mockSentry, s.Client(), enabled)
)
mockSentry.EXPECT().URL().Return(fmt.Sprintf("http://a:b@%s/api/1/store/", url)).Times(1)
var jsonReport, err = m.HealthCheck(context.Background(), "ping")
assert.Nil(t, err)
// Check that the report is a valid json
var report = []sentryReport{}
assert.Nil(t, json.Unmarshal(jsonReport, &report))
var r = report[0]
assert.Equal(t, "ping", r.Name)
assert.Equal(t, "OK", r.Status)
assert.NotZero(t, r.Duration)
assert.Zero(t, r.Error)
}
func TestSentryAllChecks(t *testing.T) {
var mockCtrl = gomock.NewController(t)
defer mockCtrl.Finish()
var mockSentry = mock.NewSentryClient(mockCtrl)
var s = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("ok"))
}))
defer s.Close()
var (
enabled = true
url = s.URL[7:]
m = NewSentryModule(mockSentry, s.Client(), enabled)
)
mockSentry.EXPECT().URL().Return(fmt.Sprintf("http://a:b@%s/api/1/store/", url)).Times(1)
var jsonReport, err = m.HealthCheck(context.Background(), "")
assert.Nil(t, err)
// Check that the report is a valid json
var report = []sentryReport{}
assert.Nil(t, json.Unmarshal(jsonReport, &report))
var r = report[0]
assert.Equal(t, "ping", r.Name)
assert.Equal(t, "OK", r.Status)
assert.NotZero(t, r.Duration)
assert.Zero(t, r.Error)
}
func TestSentryFailure(t *testing.T) {
var mockCtrl = gomock.NewController(t)
defer mockCtrl.Finish()
var mockSentry = mock.NewSentryClient(mockCtrl)
var s = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("ko"))
}))
defer s.Close()
var (
enabled = true
url = s.URL[7:]
m = NewSentryModule(mockSentry, s.Client(), enabled)
)
mockSentry.EXPECT().URL().Return(fmt.Sprintf("http://a:b@%s/api/1/store/", url)).Times(1)
var jsonReport, err = m.HealthCheck(context.Background(), "ping")
assert.Nil(t, err)
// Check that the report is a valid json
var report = []sentryReport{}
assert.Nil(t, json.Unmarshal(jsonReport, &report))
var r = report[0]
assert.Equal(t, "ping", r.Name)
assert.Equal(t, "KO", r.Status)
assert.NotZero(t, r.Duration)
assert.NotZero(t, r.Error)
}
func TestSentryUnkownHealthCheck(t *testing.T) {
var mockCtrl = gomock.NewController(t)
defer mockCtrl.Finish()
var mockSentry = mock.NewSentryClient(mockCtrl)
var s = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("ko"))
}))
defer s.Close()
var (
enabled = true
m = NewSentryModule(mockSentry, s.Client(), enabled)
healthCheckName = "unknown"
)
var f = func() {
m.HealthCheck(context.Background(), healthCheckName)
}
assert.Panics(t, f)
}