forked from xmidt-org/talaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workerPool_test.go
177 lines (170 loc) · 5.77 KB
/
workerPool_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
// SPDX-FileCopyrightText: 2017 Comcast Cable Communications Management, LLC
// SPDX-License-Identifier: Apache-2.0
package main
import (
"bytes"
"context"
"io"
"net/http"
"net/http/httptest"
"strconv"
"testing"
"github.com/prometheus/client_golang/prometheus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
func testWorkerPoolTransactHTTPSuccess(t *testing.T) {
var (
b bytes.Buffer
assert = assert.New(t)
require = require.New(t)
logger = zap.New(
zapcore.NewCore(zapcore.NewJSONEncoder(
zapcore.EncoderConfig{
MessageKey: "message",
}), zapcore.AddSync(&b), zapcore.ErrorLevel),
)
target = "http://localhost/foo"
expectedRequest = httptest.NewRequest("POST", target, nil).WithContext(context.WithValue(context.Background(), eventTypeContextKey{}, EventPrefix))
envelope = outboundEnvelope{expectedRequest, func() {}}
dm = new(mockCounter)
wp = &WorkerPool{
logger: logger,
transactor: func(actualRequest *http.Request) (*http.Response, error) {
assert.Equal(expectedRequest, actualRequest)
return &http.Response{
Status: "202 Accepted",
StatusCode: http.StatusAccepted,
Body: io.NopCloser(new(bytes.Buffer)),
Request: httptest.NewRequest("POST", target, nil),
}, nil
},
droppedMessages: dm,
}
)
dm.On("With", prometheus.Labels{eventLabel: EventPrefix, codeLabel: strconv.Itoa(http.StatusAccepted), reasonLabel: non202CodeReason, urlLabel: target}).Panic("Func dm.With should have not been called")
dm.On("Add", 1.).Panic("Func dm.Add should have not been called")
require.NotPanics(func() { wp.transact(envelope) })
assert.Equal(b.Len(), 0)
}
func testWorkerPoolTransactHTTPError(t *testing.T) {
var (
assert = assert.New(t)
target = "http://localhost/foo"
expectedRequest = httptest.NewRequest("POST", target, nil).WithContext(context.WithValue(context.Background(), eventTypeContextKey{}, EventPrefix))
envelope = outboundEnvelope{expectedRequest, func() {}}
tests = []struct {
description string
wp *WorkerPool
expectedCode int
expectedReason string
}{
{
description: "failure 500",
wp: &WorkerPool{
transactor: func(actualRequest *http.Request) (*http.Response, error) {
assert.Equal(expectedRequest, actualRequest)
return &http.Response{
Status: "500 It Burns!",
StatusCode: http.StatusInternalServerError,
Body: io.NopCloser(new(bytes.Buffer)),
Request: httptest.NewRequest("POST", target, nil),
}, nil
},
},
expectedCode: http.StatusInternalServerError,
expectedReason: non202CodeReason,
},
{
description: "failure 415, caduceus /notify response case",
wp: &WorkerPool{
transactor: func(actualRequest *http.Request) (*http.Response, error) {
assert.Equal(expectedRequest, actualRequest)
return &http.Response{
Status: "415",
StatusCode: http.StatusUnsupportedMediaType,
Body: io.NopCloser(new(bytes.Buffer)),
Request: httptest.NewRequest("POST", target, nil),
}, nil
},
},
expectedCode: http.StatusUnsupportedMediaType,
expectedReason: non202CodeReason,
},
{
description: "failure 503, caduceus /notify response case",
wp: &WorkerPool{
transactor: func(actualRequest *http.Request) (*http.Response, error) {
assert.Equal(expectedRequest, actualRequest)
return &http.Response{
Status: "503",
StatusCode: http.StatusServiceUnavailable,
Body: io.NopCloser(new(bytes.Buffer)),
Request: httptest.NewRequest("POST", target, nil),
}, nil
},
},
expectedCode: http.StatusServiceUnavailable,
expectedReason: non202CodeReason,
},
{
description: "failure 400, caduceus /notify response case",
wp: &WorkerPool{
transactor: func(actualRequest *http.Request) (*http.Response, error) {
assert.Equal(expectedRequest, actualRequest)
return &http.Response{
Status: "400",
StatusCode: http.StatusBadRequest,
Body: io.NopCloser(new(bytes.Buffer)),
Request: httptest.NewRequest("POST", target, nil),
}, nil
},
},
expectedCode: http.StatusBadRequest,
expectedReason: non202CodeReason,
},
{
description: "failure 408 timeout, caduceus /notify response case",
wp: &WorkerPool{
transactor: func(actualRequest *http.Request) (*http.Response, error) {
assert.Equal(expectedRequest, actualRequest)
return &http.Response{
Status: "408",
StatusCode: http.StatusRequestTimeout,
Body: io.NopCloser(new(bytes.Buffer)),
Request: httptest.NewRequest("POST", target, nil),
}, context.DeadlineExceeded
},
},
expectedCode: http.StatusRequestTimeout,
expectedReason: deadlineExceededReason,
},
}
)
for _, tc := range tests {
t.Run(tc.description, func(t *testing.T) {
var b bytes.Buffer
tc.wp.logger = zap.New(
zapcore.NewCore(zapcore.NewJSONEncoder(
zapcore.EncoderConfig{
MessageKey: "message",
}), zapcore.AddSync(&b), zapcore.WarnLevel),
)
dm := new(mockCounter)
tc.wp.droppedMessages = dm
dm.On("With", prometheus.Labels{eventLabel: EventPrefix, codeLabel: strconv.Itoa(tc.expectedCode), reasonLabel: tc.expectedReason, urlLabel: target}).Return().Once()
dm.On("Add", 1.).Return().Once()
tc.wp.transact(envelope)
assert.Greater(b.Len(), 0)
dm.AssertExpectations(t)
})
}
}
func TestWorkerPool(t *testing.T) {
t.Run("Transact", func(t *testing.T) {
t.Run("HTTPSuccess", testWorkerPoolTransactHTTPSuccess)
t.Run("HTTPError", testWorkerPoolTransactHTTPError)
})
}