-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware_test.go
301 lines (227 loc) · 6.64 KB
/
middleware_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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package tupa
import (
"context"
"errors"
"fmt"
"log"
"net/http"
"net/http/httptest"
"sync"
"testing"
"time"
)
func MiddlewareSample(next APIFunc) APIFunc {
return func(tc *TupaContext) error {
smpMidd := "sampleMiddleware"
reqCtx := context.WithValue(tc.Req.Context(), "smpMidd", smpMidd)
tc.Req = tc.Req.WithContext(reqCtx)
log.SetFlags(log.LstdFlags | log.Lmicroseconds)
defer getCtxFromSampleMiddleware(tc)
return next(tc)
}
}
func getCtxFromSampleMiddleware(tc *TupaContext) {
ctxValue := tc.Req.Context().Value("smpMidd").(string)
fmt.Println(ctxValue)
}
func MiddlewareLoggingWithError(next APIFunc) APIFunc {
return func(tc *TupaContext) error {
start := time.Now()
errMsg := errors.New("erro no middleware LoggingMiddlewareWithError")
ctx := context.WithValue(tc.Req.Context(), "smpErrorMidd", "sampleErrorMiddleware")
tc.Req = tc.Req.WithContext(ctx)
err := next(tc)
log.SetFlags(log.LstdFlags | log.Lmicroseconds)
log.Printf("Fim da Req para endpoint teste: %s, duração: %v", tc.Req.URL.Path, time.Since(start))
if err != nil {
log.Printf("erro ao chamar proximo middleware %s: %v", tc.Req.URL.Path, err)
}
return errMsg
}
}
func MiddlewareWithCtx(next APIFunc) APIFunc {
return func(tc *TupaContext) error {
smpMidd := "MiddlewareWithCtx"
reqCtx := context.WithValue(tc.Req.Context(), "withCtx", smpMidd)
tc.Req = tc.Req.WithContext(reqCtx)
log.SetFlags(log.LstdFlags | log.Lmicroseconds)
return next(tc)
}
}
func MiddlewareWithCtxChanMsg(next APIFunc, messages chan<- string) APIFunc {
return func(tc *TupaContext) error {
smpMidd := "MiddlewareWithCtx"
reqCtx := context.WithValue(tc.Req.Context(), "withCtx", smpMidd)
tc.Req = tc.Req.WithContext(reqCtx)
log.SetFlags(log.LstdFlags | log.Lmicroseconds)
messages <- "MiddlewareWithCtx passou por aqui :)"
return next(tc)
}
}
func TestSampleMiddleware(t *testing.T) {
t.Run("Testado TestSampleMiddleware", func(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
w := httptest.NewRecorder()
ctx := &TupaContext{
Req: req,
Resp: w,
}
// handler que não retorna erro
handler := func(tc *TupaContext) error {
// Chacando se o middleware tem valor de context
if val := tc.Req.Context().Value("qualquerKey"); val != nil {
t.Error("Valor de context esperado não era esperado")
}
return nil
}
err := MiddlewareSample(handler)(ctx)
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
// Checando status code da response
if status := w.Result().StatusCode; status != http.StatusOK {
t.Errorf("handler retornou status code errado: recebeu %v queria %v", status, http.StatusOK)
}
})
}
func TestMiddlewareConcurrency(t *testing.T) {
t.Run("Testando MiddlewareConcurrency", func(t *testing.T) {
numGoroutines := 1000
var wg sync.WaitGroup
wg.Add(numGoroutines)
middleware := MiddlewareWithCtx
handler := func(tc *TupaContext) error {
ctxValue := tc.Req.Context().Value("withCtx").(string)
if ctxValue != "MiddlewareWithCtx" {
t.Errorf("Esperava valor de context 'MiddlewareWithCtx', recebeu '%s'", ctxValue)
}
return nil
}
for i := 0; i < numGoroutines; i++ {
go func() {
// Criando nova request com context para cada goroutine
req := httptest.NewRequest("GET", "/test", nil)
w := httptest.NewRecorder()
ctx := &TupaContext{
Req: req,
Resp: w,
}
// Chanmando o middleware com o handler e o contexto
err := middleware(handler)(ctx)
if err != nil {
t.Errorf("erro nao esperado: %v", err)
}
wg.Done()
}()
}
wg.Wait()
})
}
func TestMiddlewareWithCtxAndChannels(t *testing.T) {
numGoroutines := 1000
var wg sync.WaitGroup
wg.Add(numGoroutines)
ctxValues := make(chan string, numGoroutines)
middleware := MiddlewareWithCtx
handler := func(tc *TupaContext) error {
ctxValue := tc.Req.Context().Value("withCtx").(string)
ctxValues <- ctxValue
return nil
}
for i := 0; i < numGoroutines; i++ {
go func() {
req := httptest.NewRequest("GET", "/test", nil)
w := httptest.NewRecorder()
ctx := &TupaContext{
Req: req,
Resp: w,
}
err := middleware(handler)(ctx)
if err != nil {
t.Errorf("erro inesperado: %v", err)
}
wg.Done()
}()
}
wg.Wait()
close(ctxValues)
for ctxValue := range ctxValues {
if ctxValue != "MiddlewareWithCtx" {
t.Errorf("Esperava 'MiddlewareWithCtx', recebeu '%s'", ctxValue)
}
}
}
func TestMiddlewareWithCtxAndChannelAndMsg(t *testing.T) {
numGoroutines := 1000
var wg sync.WaitGroup
wg.Add(numGoroutines)
messages := make(chan string, numGoroutines)
middleware := func(next APIFunc) APIFunc {
return MiddlewareWithCtxChanMsg(next, messages)
}
handler := func(tc *TupaContext) error {
return nil
}
for i := 0; i < numGoroutines; i++ {
go func() {
// Criando nova req para cada goroutine
req := httptest.NewRequest("GET", "/test", nil)
w := httptest.NewRecorder()
ctx := &TupaContext{
Req: req,
Resp: w,
}
err := middleware(handler)(ctx)
if err != nil {
t.Errorf("erro inesperado: %v", err)
}
wg.Done()
}()
}
wg.Wait()
close(messages)
for message := range messages {
if message != "MiddlewareWithCtx passou por aqui :)" {
t.Errorf("Expected message 'MiddlewareWithCtx passou por aqui :)', got '%s'", message)
}
}
}
func middlewareSuccess(next APIFunc) APIFunc {
return func(tc *TupaContext) error {
return nil
}
}
// Define a middleware function that always fails
func middlewareFailure(ctx APIFunc) APIFunc {
return func(tc *TupaContext) error {
return errors.New("middleware failed")
}
}
func TestExecuteMiddlewaresAsync_NoErrors(t *testing.T) {
t.Run("Testando ExecuteMiddlewaresAsync sem erros", func(t *testing.T) {
server := NewAPIServer(":8080", nil)
ctx := &TupaContext{}
// Definir middleware que sempre retorna sucesso
middlewareSuccess := MiddlewareChain{middlewareSuccess}
// Execute os middlewares de forma assíncrona
doneCh := server.executeMiddlewaresAsync(ctx, middlewareSuccess)
// esperando executar
errorsSlice := <-doneCh
if len(errorsSlice) != 0 {
t.Errorf("não esperava erros, recebeu %d erros", len(errorsSlice))
}
})
t.Run("Testando ExecuteMiddlewaresAsync com erros", func(t *testing.T) {
server := NewAPIServer(":8080", nil)
ctx := &TupaContext{}
// Definir middleware que sempre retorna falha
middlewareFailure := MiddlewareChain{middlewareFailure}
// Executando os middlewares de forma assíncrona
doneCh := server.executeMiddlewaresAsync(ctx, middlewareFailure)
// esperando executar
errorsSlice := <-doneCh
if len(errorsSlice) == 0 {
t.Errorf("expected erros mas não recebeu nenhum")
}
})
}