forked from pivotal-cf/brokerapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
failure_response_test.go
127 lines (103 loc) · 5.66 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
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
// Copyright (C) 2015-Present Pivotal Software, Inc. All rights reserved.
// This program and the accompanying materials are made available under
// the terms of the under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
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("AppendErrorMessage", func() {
It("returns the error with the additional error message included, with a non-empty body", func() {
failureResponse := brokerapi.NewFailureResponseBuilder(errors.New("my error message"), http.StatusForbidden, "log-key").WithErrorKey("some-key").Build()
Expect(failureResponse.Error()).To(Equal("my error message"))
newError := failureResponse.AppendErrorMessage("and some more details")
Expect(newError.Error()).To(Equal("my error message and some more details"))
Expect(newError.ValidatedStatusCode(nil)).To(Equal(http.StatusForbidden))
Expect(newError.LoggerAction()).To(Equal(failureResponse.LoggerAction()))
errorResponse, typeCast := newError.ErrorResponse().(brokerapi.ErrorResponse)
Expect(typeCast).To(BeTrue())
Expect(errorResponse.Error).To(Equal("some-key"))
Expect(errorResponse.Description).To(Equal("my error message and some more details"))
})
It("returns the error with the additional error message included, with an empty body", func() {
failureResponse := brokerapi.NewFailureResponseBuilder(errors.New("my error message"), http.StatusForbidden, "log-key").WithEmptyResponse().Build()
Expect(failureResponse.Error()).To(Equal("my error message"))
newError := failureResponse.AppendErrorMessage("and some more details")
Expect(newError.Error()).To(Equal("my error message and some more details"))
Expect(newError.ValidatedStatusCode(nil)).To(Equal(http.StatusForbidden))
Expect(newError.LoggerAction()).To(Equal(failureResponse.LoggerAction()))
Expect(newError.ErrorResponse()).To(Equal(failureResponse.ErrorResponse()))
})
})
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"))
})
})
})