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
|
package openapi3
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestLoadOutsideRefs(t *testing.T) {
loader := NewLoader()
loader.IsExternalRefsAllowed = true
doc, err := loader.LoadFromFile("testdata/303bis/service.yaml")
require.NoError(t, err)
require.NotNil(t, doc)
err = doc.Validate(loader.Context)
require.NoError(t, err)
require.Equal(t, &Types{"string"}, doc.
Paths.Value("/service").
Get.
Responses.Value("200").Value.
Content["application/json"].
Schema.Value.
Items.Value.
AllOf[0].Value.
Properties["created_at"].Value.
Type)
}
func TestIssue423(t *testing.T) {
spec := `
info:
description: test
title: test
version: 0.0.0
openapi: 3.0.1
paths:
/api/bundles:
get:
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Data'
components:
schemas:
Data:
description: rbac Data
properties:
roles:
$ref: https://raw.githubusercontent.com/kubernetes/kubernetes/132f29769dfecfc808adc58f756be43171054094/api/openapi-spec/swagger.json#/definitions/io.k8s.api.rbac.v1.RoleList
`
loader := NewLoader()
loader.IsExternalRefsAllowed = true
loader.LoadFromData([]byte(spec))
}
|