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
|
package legacy_test
import (
"bytes"
"context"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/require"
"github.com/getkin/kin-openapi/openapi3"
"github.com/getkin/kin-openapi/openapi3filter"
legacyrouter "github.com/getkin/kin-openapi/routers/legacy"
)
func TestIssue444(t *testing.T) {
loader := openapi3.NewLoader()
oas, err := loader.LoadFromData([]byte(`
openapi: '3.0.0'
info:
title: API
version: 1.0.0
paths:
'/path':
post:
requestBody:
required: true
content:
application/x-yaml:
schema:
type: object
responses:
'200':
description: x
content:
application/json:
schema:
type: string
`))
require.NoError(t, err)
router, err := legacyrouter.NewRouter(oas)
require.NoError(t, err)
r := httptest.NewRequest("POST", "/path", bytes.NewReader([]byte(`
foo: bar
`)))
r.Header.Set("Content-Type", "application/x-yaml")
openapi3.SchemaErrorDetailsDisabled = true
route, pathParams, err := router.FindRoute(r)
require.NoError(t, err)
reqValidationInput := &openapi3filter.RequestValidationInput{
Request: r,
PathParams: pathParams,
Route: route,
}
err = openapi3filter.ValidateRequest(context.Background(), reqValidationInput)
require.NoError(t, err)
}
|