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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
package openapi3
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestIssue495(t *testing.T) {
{
spec := []byte(`
openapi: 3.0.1
info:
version: v1
title: Products api
components:
schemas:
someSchema:
type: object
schemaArray:
type: array
minItems: 1
items:
$ref: '#'
paths:
/categories:
get:
responses:
'200':
description: ''
content:
application/json:
schema:
properties:
allOf:
$ref: '#/components/schemas/schemaArray'
`[1:])
sl := NewLoader()
doc, err := sl.LoadFromData(spec)
require.NoError(t, err)
err = doc.Validate(sl.Context)
require.EqualError(t, err, `invalid components: schema "schemaArray": found unresolved ref: "#"`)
}
spec := []byte(`
openapi: 3.0.1
info:
version: v1
title: Products api
components:
schemas:
someSchema:
type: object
schemaArray:
type: array
minItems: 1
items:
$ref: '#/components/schemas/someSchema'
paths:
/categories:
get:
responses:
'200':
description: ''
content:
application/json:
schema:
properties:
allOf:
$ref: '#/components/schemas/schemaArray'
`[1:])
sl := NewLoader()
doc, err := sl.LoadFromData(spec)
require.NoError(t, err)
err = doc.Validate(sl.Context)
require.NoError(t, err)
require.Equal(t, &Schema{Type: &Types{"object"}}, doc.Components.Schemas["schemaArray"].Value.Items.Value)
}
func TestIssue495WithDraft04(t *testing.T) {
t.Skip("fails with \"lookup json-schema.org on 127.0.0.53:53: no such host\" on Launchpad build farm, skipping")
spec := []byte(`
openapi: 3.0.1
servers:
- url: http://localhost:5000
info:
version: v1
title: Products api
contact:
name: me
email: me@github.com
description: This is a sample
paths:
/categories:
get:
summary: Provides the available categories for the store
operationId: list-categories
responses:
'200':
description: this is a desc
content:
application/json:
schema:
$ref: http://json-schema.org/draft-04/schema
`[1:])
sl := NewLoader()
sl.IsExternalRefsAllowed = true
doc, err := sl.LoadFromData(spec)
require.NoError(t, err)
err = doc.Validate(sl.Context)
require.ErrorContains(t, err, `found unresolved ref: "#"`)
}
func TestIssue495WithDraft04Bis(t *testing.T) {
spec := []byte(`
openapi: 3.0.1
servers:
- url: http://localhost:5000
info:
version: v1
title: Products api
contact:
name: me
email: me@github.com
description: This is a sample
paths:
/categories:
get:
summary: Provides the available categories for the store
operationId: list-categories
responses:
'200':
description: this is a desc
content:
application/json:
schema:
$ref: testdata/draft04.yml
`[1:])
sl := NewLoader()
sl.IsExternalRefsAllowed = true
doc, err := sl.LoadFromData(spec)
require.NoError(t, err)
err = doc.Validate(sl.Context)
require.ErrorContains(t, err, `found unresolved ref: "#"`)
}
|