Documentation ¶
Overview ¶
Package openapi3filter validates that requests and inputs request an OpenAPI 3 specification file.
Example ¶
package main import ( "fmt" "net/http" "net/http/httptest" "sort" "strings" "github.com/felixvd/kin-openapi/openapi3" "github.com/felixvd/kin-openapi/openapi3filter" "github.com/felixvd/kin-openapi/routers/gorillamux" ) func main() { doc, err := openapi3.NewLoader().LoadFromFile("./testdata/petstore.yaml") if err != nil { panic(err) } router, err := gorillamux.NewRouter(doc) if err != nil { panic(err) } ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { route, pathParams, err := router.FindRoute(r) if err != nil { fmt.Println(err.Error()) w.WriteHeader(http.StatusInternalServerError) return } err = openapi3filter.ValidateRequest(r.Context(), &openapi3filter.RequestValidationInput{ Request: r, PathParams: pathParams, Route: route, Options: &openapi3filter.Options{ MultiError: true, }, }) switch err := err.(type) { case nil: case openapi3.MultiError: issues := convertError(err) names := make([]string, 0, len(issues)) for k := range issues { names = append(names, k) } sort.Strings(names) for _, k := range names { msgs := issues[k] fmt.Println("===== Start New Error =====") fmt.Println(k + ":") for _, msg := range msgs { fmt.Printf("\t%s\n", msg) } } w.WriteHeader(http.StatusBadRequest) default: fmt.Println(err.Error()) w.WriteHeader(http.StatusBadRequest) } })) defer ts.Close() // (note invalid type for name and invalid status) body := strings.NewReader(`{"name": 100, "photoUrls": [], "status": "invalidStatus"}`) req, err := http.NewRequest("POST", ts.URL+"/pet", body) if err != nil { panic(err) } req.Header.Set("Content-Type", "application/json") resp, err := http.DefaultClient.Do(req) if err != nil { panic(err) } defer resp.Body.Close() fmt.Printf("response: %d %s\n", resp.StatusCode, resp.Body) } const ( prefixBody = "@body" unknown = "@unknown" ) func convertError(me openapi3.MultiError) map[string][]string { issues := make(map[string][]string) for _, err := range me { switch err := err.(type) { case *openapi3.SchemaError: // Can inspect schema validation errors here, e.g. err.Value field := prefixBody if path := err.JSONPointer(); len(path) > 0 { field = fmt.Sprintf("%s.%s", field, strings.Join(path, ".")) } if _, ok := issues[field]; !ok { issues[field] = make([]string, 0, 3) } issues[field] = append(issues[field], err.Error()) case *openapi3filter.RequestError: // possible there were multiple issues that failed validation if err, ok := err.Err.(openapi3.MultiError); ok { for k, v := range convertError(err) { if _, ok := issues[k]; !ok { issues[k] = make([]string, 0, 3) } issues[k] = append(issues[k], v...) } continue } // check if invalid HTTP parameter if err.Parameter != nil { prefix := err.Parameter.In name := fmt.Sprintf("%s.%s", prefix, err.Parameter.Name) if _, ok := issues[name]; !ok { issues[name] = make([]string, 0, 3) } issues[name] = append(issues[name], err.Error()) continue } // check if requestBody if err.RequestBody != nil { if _, ok := issues[prefixBody]; !ok { issues[prefixBody] = make([]string, 0, 3) } issues[prefixBody] = append(issues[prefixBody], err.Error()) continue } default: reasons, ok := issues[unknown] if !ok { reasons = make([]string, 0, 3) } reasons = append(reasons, err.Error()) issues[unknown] = reasons } } return issues }
Output: ===== Start New Error ===== @body.name: Error at "/name": Field must be set to string or not be present Schema: { "example": "doggie", "type": "string" } Value: "number, integer" ===== Start New Error ===== @body.status: Error at "/status": value is not one of the allowed values Schema: { "description": "pet status in the store", "enum": [ "available", "pending", "sold" ], "type": "string" } Value: "invalidStatus" response: 400 {}
Example (ValidateMultipartFormData) ¶
package main import ( "bytes" "context" "io" "mime/multipart" "net/http" "net/textproto" "strings" "github.com/felixvd/kin-openapi/openapi3" "github.com/felixvd/kin-openapi/openapi3filter" "github.com/felixvd/kin-openapi/routers/gorillamux" ) func main() { const spec = ` openapi: 3.0.0 info: title: 'Validator' version: 0.0.1 paths: /test: post: requestBody: required: true content: multipart/form-data: schema: type: object required: - file properties: file: type: string format: binary categories: type: array items: $ref: "#/components/schemas/Category" responses: '200': description: Created components: schemas: Category: type: object properties: name: type: string required: - name ` loader := openapi3.NewLoader() doc, err := loader.LoadFromData([]byte(spec)) if err != nil { panic(err) } if err = doc.Validate(loader.Context); err != nil { panic(err) } router, err := gorillamux.NewRouter(doc) if err != nil { panic(err) } body := &bytes.Buffer{} writer := multipart.NewWriter(body) { // Add a single "categories" item as part data h := make(textproto.MIMEHeader) h.Set("Content-Disposition", `form-data; name="categories"`) h.Set("Content-Type", "application/json") fw, err := writer.CreatePart(h) if err != nil { panic(err) } if _, err = io.Copy(fw, strings.NewReader(`{"name": "foo"}`)); err != nil { panic(err) } } { // Add a single "categories" item as part data, again h := make(textproto.MIMEHeader) h.Set("Content-Disposition", `form-data; name="categories"`) h.Set("Content-Type", "application/json") fw, err := writer.CreatePart(h) if err != nil { panic(err) } if _, err = io.Copy(fw, strings.NewReader(`{"name": "bar"}`)); err != nil { panic(err) } } { // Add file data fw, err := writer.CreateFormFile("file", "hello.txt") if err != nil { panic(err) } if _, err = io.Copy(fw, strings.NewReader("hello")); err != nil { panic(err) } } writer.Close() req, err := http.NewRequest(http.MethodPost, "/test", bytes.NewReader(body.Bytes())) if err != nil { panic(err) } req.Header.Set("Content-Type", writer.FormDataContentType()) route, pathParams, err := router.FindRoute(req) if err != nil { panic(err) } if err = openapi3filter.ValidateRequestBody( context.Background(), &openapi3filter.RequestValidationInput{ Request: req, PathParams: pathParams, Route: route, }, route.Operation.RequestBody.Value, ); err != nil { panic(err) } }
Output:
Index ¶
- Constants
- Variables
- func DefaultErrorEncoder(_ context.Context, err error, w http.ResponseWriter)
- func FileBodyDecoder(body io.Reader, header http.Header, schema *openapi3.SchemaRef, ...) (interface{}, error)
- func NoopAuthenticationFunc(context.Context, *AuthenticationInput) error
- func RegisterBodyDecoder(contentType string, decoder BodyDecoder)
- func TrimJSONPrefix(data []byte) []byte
- func UnregisterBodyDecoder(contentType string)
- func ValidateParameter(ctx context.Context, input *RequestValidationInput, ...) error
- func ValidateRequest(ctx context.Context, input *RequestValidationInput) error
- func ValidateRequestBody(ctx context.Context, input *RequestValidationInput, ...) error
- func ValidateResponse(ctx context.Context, input *ResponseValidationInput) error
- func ValidateSecurityRequirements(ctx context.Context, input *RequestValidationInput, ...) error
- type AuthenticationFunc
- type AuthenticationInput
- type BodyDecoder
- type ContentParameterDecoder
- type EncodingFn
- type ErrCode
- type ErrFunc
- type ErrorEncoder
- type Headerer
- type LogFunc
- type Options
- type ParseError
- type ParseErrorKind
- type RequestError
- type RequestValidationInput
- type ResponseError
- type ResponseValidationInput
- type SecurityRequirementsError
- type StatusCoder
- type ValidationError
- type ValidationErrorEncoder
- type ValidationErrorSource
- type ValidationHandler
- type Validator
- type ValidatorOption
Examples ¶
Constants ¶
const ( // ErrCodeOK indicates no error. It is also the default value. ErrCodeOK = 0 // ErrCodeCannotFindRoute happens when the validator fails to resolve the // request to a defined OpenAPI route. ErrCodeCannotFindRoute = iota // ErrCodeRequestInvalid happens when the inbound request does not conform // to the OpenAPI 3 specification. ErrCodeRequestInvalid = iota // ErrCodeResponseInvalid happens when the wrapped handler response does // not conform to the OpenAPI 3 specification. ErrCodeResponseInvalid = iota )
Variables ¶
var DefaultOptions = &Options{}
DefaultOptions do not set an AuthenticationFunc. A spec with security schemes defined will not pass validation unless an AuthenticationFunc is defined.
var ErrAuthenticationServiceMissing = errors.New("missing AuthenticationFunc")
ErrAuthenticationServiceMissing is returned when no authentication service is defined for the request validator
var ErrInvalidRequired = errors.New("value is required but missing")
ErrInvalidRequired is returned when a required value of a parameter or request body is not defined.
var JSONPrefixes = []string{
")]}',\n",
}
Functions ¶
func DefaultErrorEncoder ¶ added in v0.87.1
func DefaultErrorEncoder(_ context.Context, err error, w http.ResponseWriter)
DefaultErrorEncoder writes the error to the ResponseWriter, by default a content type of text/plain, a body of the plain text of the error, and a status code of 500. If the error implements Headerer, the provided headers will be applied to the response. If the error implements json.Marshaler, and the marshaling succeeds, a content type of application/json and the JSON encoded form of the error will be used. If the error implements StatusCoder, the provided StatusCode will be used instead of 500.
func FileBodyDecoder ¶ added in v0.87.1
func FileBodyDecoder(body io.Reader, header http.Header, schema *openapi3.SchemaRef, encFn EncodingFn) (interface{}, error)
FileBodyDecoder is a body decoder that decodes a file body to a string.
func NoopAuthenticationFunc ¶ added in v0.87.1
func NoopAuthenticationFunc(context.Context, *AuthenticationInput) error
func RegisterBodyDecoder ¶ added in v0.87.1
func RegisterBodyDecoder(contentType string, decoder BodyDecoder)
RegisterBodyDecoder registers a request body's decoder for a content type.
If a decoder for the specified content type already exists, the function replaces it with the specified decoder. This call is not thread-safe: body decoders should not be created/destroyed by multiple goroutines.
func TrimJSONPrefix ¶
TrimJSONPrefix trims one of the possible prefixes
func UnregisterBodyDecoder ¶ added in v0.87.1
func UnregisterBodyDecoder(contentType string)
UnregisterBodyDecoder dissociates a body decoder from a content type.
Decoding this content type will result in an error. This call is not thread-safe: body decoders should not be created/destroyed by multiple goroutines.
func ValidateParameter ¶
func ValidateParameter(ctx context.Context, input *RequestValidationInput, parameter *openapi3.Parameter) error
ValidateParameter validates a parameter's value by JSON schema. The function returns RequestError with a ParseError cause when unable to parse a value. The function returns RequestError with ErrInvalidRequired cause when a value of a required parameter is not defined. The function returns RequestError with a openapi3.SchemaError cause when a value is invalid by JSON schema.
func ValidateRequest ¶
func ValidateRequest(ctx context.Context, input *RequestValidationInput) error
ValidateRequest is used to validate the given input according to previous loaded OpenAPIv3 spec. If the input does not match the OpenAPIv3 spec, a non-nil error will be returned.
Note: One can tune the behavior of uniqueItems: true verification by registering a custom function with openapi3.RegisterArrayUniqueItemsChecker
func ValidateRequestBody ¶
func ValidateRequestBody(ctx context.Context, input *RequestValidationInput, requestBody *openapi3.RequestBody) error
ValidateRequestBody validates data of a request's body.
The function returns RequestError with ErrInvalidRequired cause when a value is required but not defined. The function returns RequestError with a openapi3.SchemaError cause when a value is invalid by JSON schema.
func ValidateResponse ¶
func ValidateResponse(ctx context.Context, input *ResponseValidationInput) error
ValidateResponse is used to validate the given input according to previous loaded OpenAPIv3 spec. If the input does not match the OpenAPIv3 spec, a non-nil error will be returned.
Note: One can tune the behavior of uniqueItems: true verification by registering a custom function with openapi3.RegisterArrayUniqueItemsChecker
func ValidateSecurityRequirements ¶
func ValidateSecurityRequirements(ctx context.Context, input *RequestValidationInput, srs openapi3.SecurityRequirements) error
ValidateSecurityRequirements goes through multiple OpenAPI 3 security requirements in order and returns nil on the first valid requirement. If no requirement is met, errors are returned in order.
Types ¶
type AuthenticationFunc ¶ added in v0.87.1
type AuthenticationFunc func(context.Context, *AuthenticationInput) error
type AuthenticationInput ¶
type AuthenticationInput struct { RequestValidationInput *RequestValidationInput SecuritySchemeName string SecurityScheme *openapi3.SecurityScheme Scopes []string }
func (*AuthenticationInput) NewError ¶
func (input *AuthenticationInput) NewError(err error) error
type BodyDecoder ¶ added in v0.87.1
BodyDecoder is an interface to decode a body of a request or response. An implementation must return a value that is a primitive, []interface{}, or map[string]interface{}.
func RegisteredBodyDecoder ¶ added in v0.87.1
func RegisteredBodyDecoder(contentType string) BodyDecoder
RegisteredBodyDecoder returns the registered body decoder for the given content type.
If no decoder was registered for the given content type, nil is returned. This call is not thread-safe: body decoders should not be created/destroyed by multiple goroutines.
type ContentParameterDecoder ¶ added in v0.87.1
type ContentParameterDecoder func(param *openapi3.Parameter, values []string) (interface{}, *openapi3.Schema, error)
A ContentParameterDecoder takes a parameter definition from the OpenAPI spec, and the value which we received for it. It is expected to return the value unmarshaled into an interface which can be traversed for validation, it should also return the schema to be used for validating the object, since there can be more than one in the content spec.
If a query parameter appears multiple times, values[] will have more than one value, but for all other parameter types it should have just one.
type EncodingFn ¶ added in v0.87.1
EncodingFn is a function that returns an encoding of a request body's part.
type ErrCode ¶ added in v0.87.1
type ErrCode int
ErrCode is used for classification of different types of errors that may occur during validation. These may be used to write an appropriate response in ErrFunc.
type ErrFunc ¶ added in v0.87.1
type ErrFunc func(w http.ResponseWriter, status int, code ErrCode, err error)
ErrFunc handles errors that may occur during validation.
type ErrorEncoder ¶ added in v0.87.1
type ErrorEncoder func(ctx context.Context, err error, w http.ResponseWriter)
ErrorEncoder is responsible for encoding an error to the ResponseWriter. Users are encouraged to use custom ErrorEncoders to encode HTTP errors to their clients, and will likely want to pass and check for their own error types. See the example shipping/handling service.
type Headerer ¶ added in v0.87.1
Headerer is checked by DefaultErrorEncoder. If an error value implements Headerer, the provided headers will be applied to the response writer, after the Content-Type is set.
type Options ¶
type Options struct { // Set ExcludeRequestBody so ValidateRequest skips request body validation ExcludeRequestBody bool // Set ExcludeResponseBody so ValidateResponse skips response body validation ExcludeResponseBody bool // Set IncludeResponseStatus so ValidateResponse fails on response // status not defined in OpenAPI spec IncludeResponseStatus bool MultiError bool // See NoopAuthenticationFunc AuthenticationFunc AuthenticationFunc }
Options used by ValidateRequest and ValidateResponse
type ParseError ¶ added in v0.87.1
type ParseError struct { Kind ParseErrorKind Value interface{} Reason string Cause error // contains filtered or unexported fields }
ParseError describes errors which happens while parse operation's parameters, requestBody, or response.
func (*ParseError) Error ¶ added in v0.87.1
func (e *ParseError) Error() string
func (*ParseError) Path ¶ added in v0.87.1
func (e *ParseError) Path() []interface{}
Path returns a path to the root cause.
func (*ParseError) RootCause ¶ added in v0.87.1
func (e *ParseError) RootCause() error
RootCause returns a root cause of ParseError.
func (ParseError) Unwrap ¶ added in v0.87.1
func (e ParseError) Unwrap() error
type ParseErrorKind ¶ added in v0.87.1
type ParseErrorKind int
ParseErrorKind describes a kind of ParseError. The type simplifies comparison of errors.
const ( // KindOther describes an untyped parsing error. KindOther ParseErrorKind = iota // KindUnsupportedFormat describes an error that happens when a value has an unsupported format. KindUnsupportedFormat // KindInvalidFormat describes an error that happens when a value does not conform a format // that is required by a serialization method. KindInvalidFormat )
type RequestError ¶
type RequestError struct { Input *RequestValidationInput Parameter *openapi3.Parameter RequestBody *openapi3.RequestBody Reason string Err error }
RequestError is returned by ValidateRequest when request does not match OpenAPI spec
func (*RequestError) Error ¶
func (err *RequestError) Error() string
func (RequestError) Unwrap ¶ added in v0.87.1
func (err RequestError) Unwrap() error
type RequestValidationInput ¶
type RequestValidationInput struct { Request *http.Request PathParams map[string]string QueryParams url.Values Route *routers.Route Options *Options ParamDecoder ContentParameterDecoder }
func (*RequestValidationInput) GetQueryParams ¶
func (input *RequestValidationInput) GetQueryParams() url.Values
type ResponseError ¶
type ResponseError struct { Input *ResponseValidationInput Reason string Err error }
ResponseError is returned by ValidateResponse when response does not match OpenAPI spec
func (*ResponseError) Error ¶
func (err *ResponseError) Error() string
func (ResponseError) Unwrap ¶ added in v0.87.1
func (err ResponseError) Unwrap() error
type ResponseValidationInput ¶
type ResponseValidationInput struct { RequestValidationInput *RequestValidationInput Status int Header http.Header Body io.ReadCloser Options *Options }
func (*ResponseValidationInput) SetBodyBytes ¶
func (input *ResponseValidationInput) SetBodyBytes(value []byte) *ResponseValidationInput
type SecurityRequirementsError ¶
type SecurityRequirementsError struct { SecurityRequirements openapi3.SecurityRequirements Errors []error }
SecurityRequirementsError is returned by ValidateSecurityRequirements when no requirement is met.
func (*SecurityRequirementsError) Error ¶
func (err *SecurityRequirementsError) Error() string
type StatusCoder ¶ added in v0.87.1
type StatusCoder interface {
StatusCode() int
}
StatusCoder is checked by DefaultErrorEncoder. If an error value implements StatusCoder, the StatusCode will be used when encoding the error. By default, StatusInternalServerError (500) is used.
type ValidationError ¶ added in v0.87.1
type ValidationError struct { // A unique identifier for this particular occurrence of the problem. Id string `json:"id,omitempty"` // The HTTP status code applicable to this problem. Status int `json:"status,omitempty"` // An application-specific error code, expressed as a string value. Code string `json:"code,omitempty"` // A short, human-readable summary of the problem. It **SHOULD NOT** change from occurrence to occurrence of the problem, except for purposes of localization. Title string `json:"title,omitempty"` // A human-readable explanation specific to this occurrence of the problem. Detail string `json:"detail,omitempty"` // An object containing references to the source of the error Source *ValidationErrorSource `json:"source,omitempty"` }
ValidationError struct provides granular error information useful for communicating issues back to end user and developer. Based on https://jsonapi.org/format/#error-objects
func (*ValidationError) Error ¶ added in v0.87.1
func (e *ValidationError) Error() string
Error implements the error interface.
func (*ValidationError) StatusCode ¶ added in v0.87.1
func (e *ValidationError) StatusCode() int
StatusCode implements the StatusCoder interface for DefaultErrorEncoder
type ValidationErrorEncoder ¶ added in v0.87.1
type ValidationErrorEncoder struct {
Encoder ErrorEncoder
}
ValidationErrorEncoder wraps a base ErrorEncoder to handle ValidationErrors
func (*ValidationErrorEncoder) Encode ¶ added in v0.87.1
func (enc *ValidationErrorEncoder) Encode(ctx context.Context, err error, w http.ResponseWriter)
Encode implements the ErrorEncoder interface for encoding ValidationErrors
type ValidationErrorSource ¶ added in v0.87.1
type ValidationErrorSource struct { // A JSON Pointer [RFC6901] to the associated entity in the request document [e.g. \"/data\" for a primary data object, or \"/data/attributes/title\" for a specific attribute]. Pointer string `json:"pointer,omitempty"` // A string indicating which query parameter caused the error. Parameter string `json:"parameter,omitempty"` }
ValidationErrorSource struct
type ValidationHandler ¶ added in v0.87.1
type ValidationHandler struct { Handler http.Handler AuthenticationFunc AuthenticationFunc File string ErrorEncoder ErrorEncoder // contains filtered or unexported fields }
func (*ValidationHandler) Load ¶ added in v0.87.1
func (h *ValidationHandler) Load() error
func (*ValidationHandler) Middleware ¶ added in v0.87.1
func (h *ValidationHandler) Middleware(next http.Handler) http.Handler
Middleware implements gorilla/mux MiddlewareFunc
func (*ValidationHandler) ServeHTTP ¶ added in v0.87.1
func (h *ValidationHandler) ServeHTTP(w http.ResponseWriter, r *http.Request)
type Validator ¶ added in v0.87.1
type Validator struct {
// contains filtered or unexported fields
}
Validator provides HTTP request and response validation middleware.
Example ¶
package main import ( "bytes" "context" "encoding/json" "fmt" "io/ioutil" "net/http" "net/http/httptest" "path" "strconv" "strings" "github.com/felixvd/kin-openapi/openapi3" "github.com/felixvd/kin-openapi/openapi3filter" "github.com/felixvd/kin-openapi/routers/gorillamux" ) func main() { // OpenAPI specification for a simple service that squares integers, with // some limitations. doc, err := openapi3.NewLoader().LoadFromData([]byte(` info: openapi: 3.0.0 info: title: 'Validator - square example' version: '0.0.0' paths: /square/{x}: get: description: square an integer parameters: - name: x in: path schema: type: integer required: true responses: '200': description: squared integer response content: "application/json": schema: type: object properties: result: type: integer minimum: 0 maximum: 1000000 required: [result] additionalProperties: false`[1:])) if err != nil { panic(err) } // Square service handler sanity checks inputs, but just crashes on invalid // requests. squareHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { xParam := path.Base(r.URL.Path) x, err := strconv.Atoi(xParam) if err != nil { panic(err) } w.Header().Set("Content-Type", "application/json") result := map[string]interface{}{"result": x * x} if x == 42 { // An easter egg. Unfortunately, the spec does not allow additional properties... result["comment"] = "the answer to the ulitimate question of life, the universe, and everything" } if err = json.NewEncoder(w).Encode(&result); err != nil { panic(err) } }) // Start an http server. var mainHandler http.Handler srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { // Why are we wrapping the main server handler with a closure here? // Validation matches request Host: to server URLs in the spec. With an // httptest.Server, the URL is dynamic and we have to create it first! // In a real configured service, this is less likely to be needed. mainHandler.ServeHTTP(w, r) })) defer srv.Close() // Patch the OpenAPI spec to match the httptest.Server.URL. Only needed // because the server URL is dynamic here. doc.Servers = []*openapi3.Server{{URL: srv.URL}} if err := doc.Validate(context.Background()); err != nil { // Assert our OpenAPI is valid! panic(err) } // This router is used by the validator to match requests with the OpenAPI // spec. It does not place restrictions on how the wrapped handler routes // requests; use of gorilla/mux is just a validator implementation detail. router, err := gorillamux.NewRouter(doc) if err != nil { panic(err) } // Strict validation will respond HTTP 500 if the service tries to emit a // response that does not conform to the OpenAPI spec. Very useful for // testing a service against its spec in development and CI. In production, // availability may be more important than strictness. v := openapi3filter.NewValidator(router, openapi3filter.Strict(true), openapi3filter.OnErr(func(w http.ResponseWriter, status int, code openapi3filter.ErrCode, err error) { // Customize validation error responses to use JSON w.Header().Set("Content-Type", "application/json") w.WriteHeader(status) json.NewEncoder(w).Encode(map[string]interface{}{ "status": status, "message": http.StatusText(status), }) })) // Now we can finally set the main server handler. mainHandler = v.Middleware(squareHandler) printResp := func(resp *http.Response, err error) { if err != nil { panic(err) } defer resp.Body.Close() contents, err := ioutil.ReadAll(resp.Body) if err != nil { panic(err) } fmt.Println(resp.StatusCode, strings.TrimSpace(string(contents))) } // Valid requests to our sum service printResp(srv.Client().Get(srv.URL + "/square/2")) printResp(srv.Client().Get(srv.URL + "/square/789")) // 404 Not found requests - method or path not found printResp(srv.Client().Post(srv.URL+"/square/2", "application/json", bytes.NewBufferString(`{"result": 5}`))) printResp(srv.Client().Get(srv.URL + "/sum/2")) printResp(srv.Client().Get(srv.URL + "/square/circle/4")) // Handler would process this; validation rejects it printResp(srv.Client().Get(srv.URL + "/square")) // 400 Bad requests - note they never reach the wrapped square handler (which would panic) printResp(srv.Client().Get(srv.URL + "/square/five")) // 500 Invalid responses printResp(srv.Client().Get(srv.URL + "/square/42")) // Our "easter egg" added a property which is not allowed printResp(srv.Client().Get(srv.URL + "/square/65536")) // Answer overflows the maximum allowed value (1000000) }
Output: 200 {"result":4} 200 {"result":622521} 404 {"message":"Not Found","status":404} 404 {"message":"Not Found","status":404} 404 {"message":"Not Found","status":404} 404 {"message":"Not Found","status":404} 400 {"message":"Bad Request","status":400} 500 {"message":"Internal Server Error","status":500} 500 {"message":"Internal Server Error","status":500}
func NewValidator ¶ added in v0.87.1
func NewValidator(router routers.Router, options ...ValidatorOption) *Validator
NewValidator returns a new response validation middlware, using the given routes from an OpenAPI 3 specification.
type ValidatorOption ¶ added in v0.87.1
type ValidatorOption func(*Validator)
ValidatorOption defines an option that may be specified when creating a Validator.
func OnErr ¶ added in v0.87.1
func OnErr(f ErrFunc) ValidatorOption
OnErr provides a callback that handles writing an HTTP response on a validation error. This allows customization of error responses without prescribing a particular form. This callback is only called on response validator errors in Strict mode.
func OnLog ¶ added in v0.87.1
func OnLog(f LogFunc) ValidatorOption
OnLog provides a callback that handles logging in the Validator. This allows the validator to integrate with a services' existing logging system without prescribing a particular one.
func Strict ¶ added in v0.87.1
func Strict(strict bool) ValidatorOption
Strict, if set, causes an internal server error to be sent if the wrapped handler response fails response validation. If not set, the response is sent and the error is only logged.