Documentation
¶
Overview ¶
Copyright 2024 Northern.tech AS
Licensed 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.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CheckResponse ¶
func CheckResponse(t *testing.T, want ResponseChecker, have *test.Recorded)
Types ¶
type BaseResponse ¶
type BaseResponse struct { Status int ContentType string Headers map[string]string Body interface{} }
BaseResponse is used for testing any response with a selected content type. Implements ResponseChecker, provides base methods for common tests.
func (*BaseResponse) CheckBody ¶
func (b *BaseResponse) CheckBody(t *testing.T, recorded *test.Recorded)
func (*BaseResponse) CheckContentType ¶
func (b *BaseResponse) CheckContentType(t *testing.T, recorded *test.Recorded)
func (*BaseResponse) CheckHeaders ¶
func (b *BaseResponse) CheckHeaders(t *testing.T, recorded *test.Recorded)
func (*BaseResponse) CheckStatus ¶
func (b *BaseResponse) CheckStatus(t *testing.T, recorded *test.Recorded)
type JSONResponse ¶
type JSONResponse struct {
BaseResponse
}
JSONResponse is used for testing 'application/json' responses. Embeds the BaseResponse (implements ResponseChecker), and overrides relevant methods.
func NewJSONResponse ¶
func NewJSONResponse(status int, headers map[string]string, body interface{}) *JSONResponse
type ResponseChecker ¶
type ResponseChecker interface { CheckStatus(t *testing.T, recorded *test.Recorded) CheckHeaders(t *testing.T, recorded *test.Recorded) CheckContentType(t *testing.T, recorded *test.Recorded) CheckBody(t *testing.T, recorded *test.Recorded) }
ResponseChecker is a generic response checker, regardless of content-type.
Click to show internal directories.
Click to hide internal directories.