forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest_logger_test.go
402 lines (330 loc) · 12.6 KB
/
request_logger_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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
package wrapper_test
import (
"bytes"
"errors"
"io/ioutil"
"net/http"
"net/url"
"time"
"code.cloudfoundry.org/cli/api/cloudcontroller"
"code.cloudfoundry.org/cli/api/cloudcontroller/cloudcontrollerfakes"
. "code.cloudfoundry.org/cli/api/cloudcontroller/wrapper"
"code.cloudfoundry.org/cli/api/cloudcontroller/wrapper/wrapperfakes"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Request Logger", func() {
var (
fakeConnection *cloudcontrollerfakes.FakeConnection
fakeOutput *wrapperfakes.FakeRequestLoggerOutput
wrapper cloudcontroller.Connection
request *cloudcontroller.Request
response *cloudcontroller.Response
makeErr error
)
BeforeEach(func() {
fakeConnection = new(cloudcontrollerfakes.FakeConnection)
fakeOutput = new(wrapperfakes.FakeRequestLoggerOutput)
wrapper = NewRequestLogger(fakeOutput).Wrap(fakeConnection)
body := bytes.NewReader([]byte("foo"))
req, err := http.NewRequest(http.MethodGet, "https://foo.bar.com/banana", body)
Expect(err).NotTo(HaveOccurred())
req.URL.RawQuery = url.Values{
"query1": {"a"},
"query2": {"b"},
}.Encode()
headers := http.Header{}
headers.Add("Aghi", "bar")
headers.Add("Abc", "json")
headers.Add("Adef", "application/json")
req.Header = headers
response = &cloudcontroller.Response{
RawResponse: []byte("some-response-body"),
HTTPResponse: &http.Response{},
}
request = cloudcontroller.NewRequest(req, body)
})
JustBeforeEach(func() {
makeErr = wrapper.Make(request, response)
})
Describe("Make", func() {
It("outputs the request", func() {
Expect(makeErr).NotTo(HaveOccurred())
Expect(fakeOutput.DisplayTypeCallCount()).To(BeNumerically(">=", 1))
name, date := fakeOutput.DisplayTypeArgsForCall(0)
Expect(name).To(Equal("REQUEST"))
Expect(date).To(BeTemporally("~", time.Now(), time.Second))
Expect(fakeOutput.DisplayRequestHeaderCallCount()).To(Equal(1))
method, uri, protocol := fakeOutput.DisplayRequestHeaderArgsForCall(0)
Expect(method).To(Equal(http.MethodGet))
Expect(uri).To(MatchRegexp("/banana\\?(?:query1=a&query2=b|query2=b&query1=a)"))
Expect(protocol).To(Equal("HTTP/1.1"))
Expect(fakeOutput.DisplayHostCallCount()).To(Equal(1))
host := fakeOutput.DisplayHostArgsForCall(0)
Expect(host).To(Equal("foo.bar.com"))
Expect(fakeOutput.DisplayHeaderCallCount()).To(BeNumerically(">=", 3))
name, value := fakeOutput.DisplayHeaderArgsForCall(0)
Expect(name).To(Equal("Abc"))
Expect(value).To(Equal("json"))
name, value = fakeOutput.DisplayHeaderArgsForCall(1)
Expect(name).To(Equal("Adef"))
Expect(value).To(Equal("application/json"))
name, value = fakeOutput.DisplayHeaderArgsForCall(2)
Expect(name).To(Equal("Aghi"))
Expect(value).To(Equal("bar"))
Expect(fakeOutput.DisplayMessageCallCount()).To(Equal(0))
})
When("an authorization header is in the request", func() {
BeforeEach(func() {
request.Header = http.Header{"Authorization": []string{"should not be shown"}}
})
It("redacts the contents of the authorization header", func() {
Expect(makeErr).NotTo(HaveOccurred())
Expect(fakeOutput.DisplayHeaderCallCount()).To(Equal(1))
key, value := fakeOutput.DisplayHeaderArgsForCall(0)
Expect(key).To(Equal("Authorization"))
Expect(value).To(Equal("[PRIVATE DATA HIDDEN]"))
})
})
When("an Set-Cookie header is in the request", func() {
BeforeEach(func() {
request.Header = http.Header{"Set-Cookie": []string{"should not be shown"}}
})
It("redacts the contents of the Set-Cookie header", func() {
Expect(makeErr).NotTo(HaveOccurred())
Expect(fakeOutput.DisplayHeaderCallCount()).To(Equal(1))
key, value := fakeOutput.DisplayHeaderArgsForCall(0)
Expect(key).To(Equal("Set-Cookie"))
Expect(value).To(Equal("[PRIVATE DATA HIDDEN]"))
})
})
When("passed a body", func() {
When("the request's Content-Type is application/json", func() {
BeforeEach(func() {
request.Header.Set("Content-Type", "application/json")
})
It("outputs the body", func() {
Expect(makeErr).NotTo(HaveOccurred())
Expect(fakeOutput.DisplayJSONBodyCallCount()).To(BeNumerically(">=", 1))
Expect(fakeOutput.DisplayJSONBodyArgsForCall(0)).To(Equal([]byte("foo")))
bytes, err := ioutil.ReadAll(request.Body)
Expect(err).NotTo(HaveOccurred())
Expect(bytes).To(Equal([]byte("foo")))
})
})
When("the request's Content-Type is application/x-www-form-urlencoded", func() {
BeforeEach(func() {
request.Header.Set("Content-Type", "application/x-www-form-urlencoded")
})
It("outputs the body", func() {
Expect(makeErr).NotTo(HaveOccurred())
bytes, err := ioutil.ReadAll(request.Body)
Expect(err).NotTo(HaveOccurred())
Expect(bytes).To(Equal([]byte("foo")))
Expect(fakeOutput.DisplayMessageCallCount()).To(Equal(1))
Expect(fakeOutput.DisplayMessageArgsForCall(0)).To(Equal("[application/x-www-form-urlencoded foo]"))
})
})
When("request's Content-Type is anything else", func() {
BeforeEach(func() {
request.Header.Set("Content-Type", "banana;rama")
})
It("does not display the body", func() {
Expect(makeErr).NotTo(HaveOccurred())
Expect(fakeOutput.DisplayJSONBodyCallCount()).To(Equal(1)) // Once for response body only
Expect(fakeOutput.DisplayMessageCallCount()).To(Equal(1))
Expect(fakeOutput.DisplayMessageArgsForCall(0)).To(Equal("[banana Content Hidden]"))
})
})
})
When("an error occurs while trying to log the request", func() {
var expectedErr error
BeforeEach(func() {
expectedErr = errors.New("this should never block the request")
calledOnce := false
fakeOutput.StartStub = func() error {
if !calledOnce {
calledOnce = true
return expectedErr
}
return nil
}
})
It("should display the error and continue on", func() {
Expect(makeErr).NotTo(HaveOccurred())
Expect(fakeOutput.HandleInternalErrorCallCount()).To(Equal(1))
Expect(fakeOutput.HandleInternalErrorArgsForCall(0)).To(MatchError(expectedErr))
})
})
When("the request is successful", func() {
When("the response body is not YAML", func() {
BeforeEach(func() {
response = &cloudcontroller.Response{
RawResponse: []byte("some-response-body"),
HTTPResponse: &http.Response{
Proto: "HTTP/1.1",
Status: "200 OK",
Header: http.Header{
"BBBBB": {"second"},
"AAAAA": {"first"},
"CCCCC": {"third"},
},
},
}
})
It("outputs the response", func() {
Expect(makeErr).NotTo(HaveOccurred())
Expect(fakeOutput.DisplayTypeCallCount()).To(Equal(2))
name, date := fakeOutput.DisplayTypeArgsForCall(1)
Expect(name).To(Equal("RESPONSE"))
Expect(date).To(BeTemporally("~", time.Now(), time.Second))
Expect(fakeOutput.DisplayResponseHeaderCallCount()).To(Equal(1))
protocol, status := fakeOutput.DisplayResponseHeaderArgsForCall(0)
Expect(protocol).To(Equal("HTTP/1.1"))
Expect(status).To(Equal("200 OK"))
Expect(fakeOutput.DisplayHeaderCallCount()).To(BeNumerically(">=", 6))
name, value := fakeOutput.DisplayHeaderArgsForCall(3)
Expect(name).To(Equal("AAAAA"))
Expect(value).To(Equal("first"))
name, value = fakeOutput.DisplayHeaderArgsForCall(4)
Expect(name).To(Equal("BBBBB"))
Expect(value).To(Equal("second"))
name, value = fakeOutput.DisplayHeaderArgsForCall(5)
Expect(name).To(Equal("CCCCC"))
Expect(value).To(Equal("third"))
Expect(fakeOutput.DisplayMessageCallCount()).To(BeNumerically("==", 0))
Expect(fakeOutput.DisplayJSONBodyCallCount()).To(BeNumerically(">=", 1))
Expect(fakeOutput.DisplayJSONBodyArgsForCall(0)).To(Equal([]byte("some-response-body")))
})
})
When("the response body is YAML", func() {
BeforeEach(func() {
response = &cloudcontroller.Response{
RawResponse: []byte(`---\n- some-response-body`),
HTTPResponse: &http.Response{
Proto: "HTTP/1.1",
Status: "200 OK",
Header: http.Header{
"Content-Type": {"application/x-yaml; charset=utf-16"},
},
},
}
})
It("redacts the body to prevent leaking manifest credentials", func() {
Expect(makeErr).NotTo(HaveOccurred())
Expect(fakeOutput.DisplayTypeCallCount()).To(Equal(2))
name, date := fakeOutput.DisplayTypeArgsForCall(1)
Expect(name).To(Equal("RESPONSE"))
Expect(date).To(BeTemporally("~", time.Now(), time.Second))
Expect(fakeOutput.DisplayResponseHeaderCallCount()).To(Equal(1))
protocol, status := fakeOutput.DisplayResponseHeaderArgsForCall(0)
Expect(protocol).To(Equal("HTTP/1.1"))
Expect(status).To(Equal("200 OK"))
Expect(fakeOutput.DisplayHeaderCallCount()).To(BeNumerically(">=", 4))
name, value := fakeOutput.DisplayHeaderArgsForCall(3)
Expect(name).To(Equal("Content-Type"))
Expect(value).To(Equal("application/x-yaml; charset=utf-16"))
Expect(fakeOutput.DisplayMessageCallCount()).To(BeNumerically(">=", 1))
Expect(fakeOutput.DisplayMessageArgsForCall(0)).To(Equal("[application/x-yaml Content Hidden]"))
Expect(fakeOutput.DisplayJSONBodyCallCount()).To(BeNumerically("==", 0))
})
})
})
When("the request is unsuccessful", func() {
var expectedErr error
BeforeEach(func() {
expectedErr = errors.New("banana")
fakeConnection.MakeReturns(expectedErr)
})
When("the http response is not set", func() {
BeforeEach(func() {
response = &cloudcontroller.Response{}
})
It("outputs nothing", func() {
Expect(makeErr).To(MatchError(expectedErr))
Expect(fakeOutput.DisplayResponseHeaderCallCount()).To(Equal(0))
})
})
When("the http response is set", func() {
BeforeEach(func() {
response = &cloudcontroller.Response{
RawResponse: []byte("some-error-body"),
HTTPResponse: &http.Response{
Proto: "HTTP/1.1",
Status: "200 OK",
Header: http.Header{
"BBBBB": {"second"},
"AAAAA": {"first"},
"CCCCC": {"third"},
},
},
}
})
It("outputs the response", func() {
Expect(makeErr).To(MatchError(expectedErr))
Expect(fakeOutput.DisplayTypeCallCount()).To(Equal(2))
name, date := fakeOutput.DisplayTypeArgsForCall(1)
Expect(name).To(Equal("RESPONSE"))
Expect(date).To(BeTemporally("~", time.Now(), time.Second))
Expect(fakeOutput.DisplayResponseHeaderCallCount()).To(Equal(1))
protocol, status := fakeOutput.DisplayResponseHeaderArgsForCall(0)
Expect(protocol).To(Equal("HTTP/1.1"))
Expect(status).To(Equal("200 OK"))
Expect(fakeOutput.DisplayHeaderCallCount()).To(BeNumerically(">=", 6))
name, value := fakeOutput.DisplayHeaderArgsForCall(3)
Expect(name).To(Equal("AAAAA"))
Expect(value).To(Equal("first"))
name, value = fakeOutput.DisplayHeaderArgsForCall(4)
Expect(name).To(Equal("BBBBB"))
Expect(value).To(Equal("second"))
name, value = fakeOutput.DisplayHeaderArgsForCall(5)
Expect(name).To(Equal("CCCCC"))
Expect(value).To(Equal("third"))
Expect(fakeOutput.DisplayJSONBodyCallCount()).To(BeNumerically(">=", 1))
Expect(fakeOutput.DisplayJSONBodyArgsForCall(0)).To(Equal([]byte("some-error-body")))
})
})
})
When("an error occurs while trying to log the response", func() {
var (
originalErr error
expectedErr error
)
BeforeEach(func() {
originalErr = errors.New("this error should not be overwritten")
fakeConnection.MakeReturns(originalErr)
expectedErr = errors.New("this should never block the request")
calledOnce := false
fakeOutput.StartStub = func() error {
if !calledOnce {
calledOnce = true
return nil
}
return expectedErr
}
})
It("should display the error and continue on", func() {
Expect(makeErr).To(MatchError(originalErr))
Expect(fakeOutput.HandleInternalErrorCallCount()).To(Equal(1))
Expect(fakeOutput.HandleInternalErrorArgsForCall(0)).To(MatchError(expectedErr))
})
})
It("starts and stops the output", func() {
Expect(fakeOutput.StartCallCount()).To(Equal(2))
Expect(fakeOutput.StopCallCount()).To(Equal(2))
})
When("displaying the logs have an error", func() {
var expectedErr error
BeforeEach(func() {
expectedErr = errors.New("Display error on request")
fakeOutput.StartReturns(expectedErr)
})
It("calls handle internal error", func() {
Expect(makeErr).ToNot(HaveOccurred())
Expect(fakeOutput.HandleInternalErrorCallCount()).To(Equal(2))
Expect(fakeOutput.HandleInternalErrorArgsForCall(0)).To(MatchError(expectedErr))
Expect(fakeOutput.HandleInternalErrorArgsForCall(1)).To(MatchError(expectedErr))
})
})
})
})