-
Notifications
You must be signed in to change notification settings - Fork 1
/
mock_service_test.go
291 lines (255 loc) · 9.71 KB
/
mock_service_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
package mockservice_test
import (
"io/ioutil"
"log"
"net/http"
"net/http/httptest"
"os"
"strings"
"testing"
"github.com/wchan2/mock_service"
)
const (
successfulRegistrationRequest = `{"method": "GET", "endpoint": "/mock/test", "httpStatusCode": 203, "responseBody": "hello world", "responseHeaders": {"Foo": "Bar"}}`
emptyMethodRegistrationRequest = `{"method": " ", "endpoint": "/mock/test", "httpStatusCode": 203, "responseBody": "hello world", "responseHeaders": {"Foo": "Bar"}}`
emptyEndpointRegistrationRequest = `{"method": "GET", "endpoint": " ", "httpStatusCode": 203, "responseBody": "hello world", "responseHeaders": {"Foo": "Bar"}}`
)
func TestMain(m *testing.M) {
log.SetOutput(ioutil.Discard)
os.Exit(m.Run())
}
func TestServeEndpointRegistration_Success(t *testing.T) {
service, err := mockservice.New("/mocks")
if err != nil {
t.Errorf("Expected err in creating new mock service to be nil but got %s", err)
}
req, err := http.NewRequest(http.MethodPost, "/mocks", strings.NewReader(successfulRegistrationRequest))
if err != nil {
t.Fatalf("Expected error to create new request to be nil but got %s", err)
}
recorder := httptest.NewRecorder()
service.ServeHTTP(recorder, req)
if recorder.Code != http.StatusCreated {
t.Errorf("Expected %d status but got %d", http.StatusCreated, recorder.Code)
}
}
func TestServeMockHTTP_MockCreated(t *testing.T) {
service, err := mockservice.New("/mocks")
if err != nil {
t.Errorf("Expected err in creating new mock service to be nil but got %s", err)
}
req, err := http.NewRequest(http.MethodPost, "/mocks", strings.NewReader(successfulRegistrationRequest))
if err != nil {
t.Fatalf("Expected error to create new request to be nil but got %s", err)
}
recorder := httptest.NewRecorder()
service.ServeHTTP(recorder, req)
if recorder.Code != http.StatusCreated {
t.Errorf("Expected %d status but got %d when registering the mock endpoint", http.StatusCreated, recorder.Code)
}
// test the mock endpoint
testReq, err := http.NewRequest("GET", "/mock/test", nil)
if err != nil {
t.Fatalf("Expected error to create new request ot be nil but got %s", err)
}
testRecorder := httptest.NewRecorder()
service.ServeHTTP(testRecorder, testReq)
if testRecorder.Code != http.StatusNonAuthoritativeInfo {
t.Errorf("Expected %d status but got %d when sending a mock request", http.StatusNonAuthoritativeInfo, testRecorder.Code)
}
if testRecorder.Body.String() != "hello world" {
t.Errorf(`Expected "%s" response body but got "%s"`, "hello world", testRecorder.Body.String())
}
}
func TestServeMockHTTP_MockCreatedWithConf(t *testing.T) {
conf := mockservice.Conf{
RegistrationEndpoint: "/mocks",
Endpoints: []*mockservice.MockEndpoint{
{
Method: http.MethodPost,
Endpoint: "/mock/test",
StatusCode: http.StatusCreated,
ResponseBody: `hello world`,
ResponseHeaders: map[string]string{"Foo": "Bar"},
},
},
}
service, err := mockservice.NewWithConf(&conf)
if err != nil {
t.Errorf("Expected err to be nil when creating the mock service but got %s", err)
}
recorder := httptest.NewRecorder()
// test that a mocked endpoint is mocked
req, err := http.NewRequest(http.MethodPost, "/mock/test", nil)
if err != nil {
t.Fatalf("Expected error to create new request to be nil but got %s", err)
}
service.ServeHTTP(recorder, req)
if recorder.Code != http.StatusCreated {
t.Errorf("Expected %d status but got %d", http.StatusCreated, recorder.Code)
}
if recorder.Body.String() != "hello world" {
t.Errorf(`Expected "%s" response body but got "%s"`, "hello world", recorder.Body.String())
}
}
func TestServeMockHTTP_MockEndpointDoesNotExist(t *testing.T) {
service, err := mockservice.New("/mocks")
if err != nil {
t.Errorf("Expected err in creating new mock service to be nil but got %s", err)
}
recorder := httptest.NewRecorder()
req, err := http.NewRequest(http.MethodGet, "/mock/test", nil)
service.ServeHTTP(recorder, req)
if recorder.Code != http.StatusNotFound {
t.Errorf("Expected %d status but got %d", http.StatusNotFound, recorder.Code)
}
if recorder.Body.String() != mockservice.ErrEndpointDoesNotExist.Error()+"\n" {
t.Errorf(`Expected "%s" response body but got "%s"`, mockservice.ErrEndpointDoesNotExist, recorder.Body.String())
}
}
func TestMockService_EmptyRegistrationEndpoint(t *testing.T) {
service, err := mockservice.New(" ")
if err != mockservice.ErrEmptyRegistrationEndpoint {
t.Errorf(`Expected err to be "%s" but received "%s"`, mockservice.ErrEmptyRegistrationEndpoint, err)
}
if service != nil {
t.Errorf("Expected service to be nil when receiving an error but got %+v", service)
}
}
func TestMockService_RegisterEmptyEndpoint(t *testing.T) {
service, err := mockservice.New("/mocks")
if err != nil {
t.Errorf("Expected err in creating new mock service to be nil but got %s", err)
}
recorder := httptest.NewRecorder()
req, err := http.NewRequest(http.MethodPost, "/mocks", strings.NewReader(emptyEndpointRegistrationRequest))
service.ServeHTTP(recorder, req)
if recorder.Code != http.StatusBadRequest {
t.Errorf("Expected %d status but got %d", http.StatusBadRequest, recorder.Code)
}
if recorder.Body.String() != mockservice.ErrEmptyEndpoint.Error()+"\n" {
t.Errorf(`Expected "%s" response body but got "%s"`, mockservice.ErrEmptyEndpoint, recorder.Body.String())
}
}
func TestMockService_RegisterEmptyMethod(t *testing.T) {
service, err := mockservice.New("/mocks")
if err != nil {
t.Errorf("Expected err in creating new mock service to be nil but got %s", err)
}
recorder := httptest.NewRecorder()
req, err := http.NewRequest(http.MethodPost, "/mocks", strings.NewReader(emptyMethodRegistrationRequest))
service.ServeHTTP(recorder, req)
if recorder.Code != http.StatusBadRequest {
t.Errorf("Expected %d status but got %d", http.StatusBadRequest, recorder.Code)
}
if recorder.Body.String() != mockservice.ErrEmptyHTTPMethod.Error()+"\n" {
t.Errorf(`Expected "%s" response body but got "%s"`, mockservice.ErrEmptyHTTPMethod, recorder.Body.String())
}
}
func TestNewWithConf_EmptyRegisterEndpointInConf(t *testing.T) {
conf := mockservice.Conf{
RegistrationEndpoint: "",
Endpoints: []*mockservice.MockEndpoint{
{
Method: http.MethodPost,
Endpoint: "/mock/test",
StatusCode: http.StatusCreated,
ResponseBody: `hello world`,
ResponseHeaders: map[string]string{"Foo": "Bar"},
},
},
}
service, err := mockservice.NewWithConf(&conf)
if err != mockservice.ErrEmptyRegistrationEndpoint {
t.Errorf(`Expected err to be "%s" but received "%s"`, mockservice.ErrEmptyRegistrationEndpoint, err)
}
if service != nil {
t.Errorf("Expected service to be nil when receiving an error but got %+v", service)
}
}
func TestNewWithConf_EmptyHTTPMethod(t *testing.T) {
conf := mockservice.Conf{
RegistrationEndpoint: "/mocks",
Endpoints: []*mockservice.MockEndpoint{
{
Method: " ",
Endpoint: "/mock/test",
StatusCode: http.StatusCreated,
ResponseBody: `hello world`,
ResponseHeaders: map[string]string{"Foo": "Bar"},
},
},
}
service, err := mockservice.NewWithConf(&conf)
if err != mockservice.ErrEmptyHTTPMethod {
t.Errorf(`Expected "%s" error when creating a mock service with empty http method in the configuration but got %v`, mockservice.ErrEmptyHTTPMethod, err)
}
if service != nil {
t.Errorf("Expected service to be nil when receiving an error but got %+v", service)
}
}
func TestNewWithConf_EmptyEndpoint(t *testing.T) {
conf := mockservice.Conf{
RegistrationEndpoint: "/mocks",
Endpoints: []*mockservice.MockEndpoint{
{
Method: http.MethodPost,
Endpoint: " ",
StatusCode: http.StatusCreated,
ResponseBody: `hello world`,
ResponseHeaders: map[string]string{"Foo": "Bar"},
},
},
}
service, err := mockservice.NewWithConf(&conf)
if err != mockservice.ErrEmptyEndpoint {
t.Errorf(`Expected "%s" error when creating a mock service with empty endpoint in the configuration but got %v`, mockservice.ErrEmptyEndpoint, err)
}
if service != nil {
t.Errorf("Expected service to be nil when receiving an error but got %+v", service)
}
}
func TestServeEndpointRegistration_NilReqBody(t *testing.T) {
service, err := mockservice.New("/mocks")
if err != nil {
t.Errorf("Expected err in creating new mock service to be nil but got %s", err)
}
req, err := http.NewRequest(http.MethodPost, "/mocks", nil)
if err != nil {
t.Fatalf("Expected error to create new request to be nil but got %s", err)
}
recorder := httptest.NewRecorder()
service.ServeHTTP(recorder, req)
if recorder.Code != http.StatusBadRequest {
t.Errorf("Expected %d but received %d", http.StatusBadRequest, recorder.Code)
}
if recorder.Body.String() != "Registering an endpoint requires a payload" {
t.Errorf(
`Expected message: "%s" but received "%s"`,
"Registering an endpoint requires a payload",
recorder.Body.String(),
)
}
}
func TestServeEndpointRegistration_InvalidJSONReqBody(t *testing.T) {
service, err := mockservice.New("/mocks")
if err != nil {
t.Errorf("Expected err in creating new mock service to be nil but got %s", err)
}
req, err := http.NewRequest(http.MethodPost, "/mocks", strings.NewReader(""))
if err != nil {
t.Fatalf("Expected error to create new request to be nil but got %s", err)
}
recorder := httptest.NewRecorder()
service.ServeHTTP(recorder, req)
if recorder.Code != http.StatusInternalServerError {
t.Errorf("Expected %d but received %d", http.StatusBadRequest, recorder.Code)
}
if recorder.Body.String() != "Unable to Unmarshal request body : unexpected end of JSON input" {
t.Errorf(
`Expected message: "%s" but received "%s"`,
"Unable to Unmarshal request body : unexpected end of JSON input",
recorder.Body.String(),
)
}
}