forked from pivotal-cf/brokerapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfailure_response_test.go
82 lines (69 loc) · 3.37 KB
/
failure_response_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
package brokerapi_test
import (
"github.com/pivotal-cf/brokerapi"
"errors"
"net/http"
"code.cloudfoundry.org/lager"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/gbytes"
)
var _ = Describe("FailureResponse", func() {
Describe("ErrorResponse", func() {
It("returns a ErrorResponse containing the error message", func() {
failureResponse := brokerapi.NewFailureResponse(errors.New("my error message"), http.StatusForbidden, "log-key")
Expect(failureResponse.ErrorResponse()).To(Equal(brokerapi.ErrorResponse{
Description: "my error message",
}))
})
Context("when the error key is provided", func() {
It("returns a ErrorResponse containing the error message and the error key", func() {
failureResponse := brokerapi.NewFailureResponseBuilder(errors.New("my error message"), http.StatusForbidden, "log-key").WithErrorKey("error key").Build()
Expect(failureResponse.ErrorResponse()).To(Equal(brokerapi.ErrorResponse{
Description: "my error message",
Error: "error key",
}))
})
})
Context("when created with empty response", func() {
It("returns an EmptyResponse", func() {
failureResponse := brokerapi.NewFailureResponseBuilder(errors.New("my error message"), http.StatusForbidden, "log-key").WithEmptyResponse().Build()
Expect(failureResponse.ErrorResponse()).To(Equal(brokerapi.EmptyResponse{}))
})
})
})
Describe("ValidatedStatusCode", func() {
It("returns the status code that was passed in", func() {
failureResponse := brokerapi.NewFailureResponse(errors.New("my error message"), http.StatusForbidden, "log-key")
Expect(failureResponse.ValidatedStatusCode(nil)).To(Equal(http.StatusForbidden))
})
It("when error key is provided it returns the status code that was passed in", func() {
failureResponse := brokerapi.NewFailureResponseBuilder(errors.New("my error message"), http.StatusForbidden, "log-key").WithErrorKey("error key").Build()
Expect(failureResponse.ValidatedStatusCode(nil)).To(Equal(http.StatusForbidden))
})
Context("when the status code is invalid", func() {
It("returns 500", func() {
failureResponse := brokerapi.NewFailureResponse(errors.New("my error message"), 600, "log-key")
Expect(failureResponse.ValidatedStatusCode(nil)).To(Equal(http.StatusInternalServerError))
})
It("logs that the status has been changed", func() {
log := gbytes.NewBuffer()
logger := lager.NewLogger("test")
logger.RegisterSink(lager.NewWriterSink(log, lager.DEBUG))
failureResponse := brokerapi.NewFailureResponse(errors.New("my error message"), 600, "log-key")
failureResponse.ValidatedStatusCode(logger)
Expect(log).To(gbytes.Say("Invalid failure http response code: 600, expected 4xx or 5xx, returning internal server error: 500."))
})
})
})
Describe("LoggerAction", func() {
It("returns the logger action that was passed in", func() {
failureResponse := brokerapi.NewFailureResponseBuilder(errors.New("my error message"), http.StatusForbidden, "log-key").WithErrorKey("error key").Build()
Expect(failureResponse.LoggerAction()).To(Equal("log-key"))
})
It("when error key is provided it returns the logger action that was passed in", func() {
failureResponse := brokerapi.NewFailureResponse(errors.New("my error message"), http.StatusForbidden, "log-key")
Expect(failureResponse.LoggerAction()).To(Equal("log-key"))
})
})
})