-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathschema_test.go
More file actions
226 lines (180 loc) · 5.39 KB
/
schema_test.go
File metadata and controls
226 lines (180 loc) · 5.39 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
// SPDX-License-Identifier: Apache-2.0
package validate
import (
"encoding/json"
"math"
"reflect"
"testing"
"github.com/go-openapi/testify/v2/assert"
"github.com/go-openapi/testify/v2/require"
"github.com/go-openapi/spec"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag/conv"
)
func TestSchemaValidator_Validate_Pattern(t *testing.T) {
var schemaJSON = `
{
"properties": {
"name": {
"type": "string",
"pattern": "^[A-Za-z]+$",
"minLength": 1
},
"place": {
"type": "string",
"pattern": "^[A-Za-z]+$",
"minLength": 1
}
},
"required": [
"name"
]
}`
schema := new(spec.Schema)
require.NoError(t, json.Unmarshal([]byte(schemaJSON), schema))
var input map[string]any
var inputJSON = `{"name": "Ivan"}`
require.NoError(t, json.Unmarshal([]byte(inputJSON), &input))
require.NoError(t, AgainstSchema(schema, input, strfmt.Default))
input["place"] = json.Number("10")
require.Error(t, AgainstSchema(schema, input, strfmt.Default))
}
func TestSchemaValidator_PatternProperties(t *testing.T) {
var schemaJSON = `
{
"properties": {
"name": {
"type": "string",
"pattern": "^[A-Za-z]+$",
"minLength": 1
}
},
"patternProperties": {
"address-[0-9]+": {
"type": "string",
"pattern": "^[\\s|a-z]+$"
}
},
"required": [
"name"
],
"additionalProperties": false
}`
schema := new(spec.Schema)
require.NoError(t, json.Unmarshal([]byte(schemaJSON), schema))
var input map[string]any
// ok
var inputJSON = `{"name": "Ivan","address-1": "sesame street"}`
require.NoError(t, json.Unmarshal([]byte(inputJSON), &input))
require.NoError(t, AgainstSchema(schema, input, strfmt.Default))
// fail pattern regexp
input["address-1"] = "1, Sesame Street"
require.Error(t, AgainstSchema(schema, input, strfmt.Default))
// fail patternProperties regexp
inputJSON = `{"name": "Ivan","address-1": "sesame street","address-A": "address"}`
require.NoError(t, json.Unmarshal([]byte(inputJSON), &input))
require.Error(t, AgainstSchema(schema, input, strfmt.Default))
}
func TestSchemaValidator_Panic(t *testing.T) {
assert.PanicsWithValue(t, `Invalid schema provided to SchemaValidator: object has no field "pointer-to-nowhere": JSON pointer error`, schemaValidatorPanicker)
}
func schemaValidatorPanicker() {
var schemaJSON = `
{
"$ref": "#/pointer-to-nowhere"
}`
schema := new(spec.Schema)
_ = json.Unmarshal([]byte(schemaJSON), schema)
var input map[string]any
// ok
var inputJSON = `{"name": "Ivan","address-1": "sesame street"}`
_ = json.Unmarshal([]byte(inputJSON), &input)
// panics
_ = AgainstSchema(schema, input, strfmt.Default)
}
// Test edge cases in schemaValidator which are difficult
// to simulate with specs
func TestSchemaValidator_EdgeCases(t *testing.T) {
var s *SchemaValidator
res := s.Validate("123")
assert.NotNil(t, res)
assert.True(t, res.IsValid())
s = NewSchemaValidator(nil, nil, "", strfmt.Default)
assert.Nil(t, s)
v := "ABC"
b := s.Applies(v, reflect.String)
assert.False(t, b)
sp := spec.Schema{}
b = s.Applies(&sp, reflect.Struct)
assert.True(t, b)
spp := spec.Float64Property()
s = NewSchemaValidator(spp, nil, "", strfmt.Default)
s.SetPath("path")
assert.Equal(t, "path", s.Path)
r := s.Validate(nil)
assert.NotNil(t, r)
assert.False(t, r.IsValid())
// Validating json.Number data against number|float64
j := json.Number("123")
r = s.Validate(j)
assert.True(t, r.IsValid())
// Validating json.Number data against integer|int32
spp = spec.Int32Property()
s = NewSchemaValidator(spp, nil, "", strfmt.Default)
j = json.Number("123")
r = s.Validate(j)
assert.True(t, r.IsValid())
bignum := conv.FormatFloat(math.MaxFloat64)
j = json.Number(bignum)
r = s.Validate(j)
assert.False(t, r.IsValid())
// Validating incorrect json.Number data
spp = spec.Float64Property()
s = NewSchemaValidator(spp, nil, "", strfmt.Default)
j = json.Number("AXF")
r = s.Validate(j)
assert.False(t, r.IsValid())
}
func TestSchemaValidator_SchemaOptions(t *testing.T) {
var schemaJSON = `
{
"properties": {
"spec": {
"properties": {
"replicas": {
"type": "integer"
}
}
}
}
}`
schema := new(spec.Schema)
require.NoError(t, json.Unmarshal([]byte(schemaJSON), schema))
var input map[string]any
var inputJSON = `{"spec": {"items": ["foo", "bar"], "replicas": 1}}`
require.NoError(t, json.Unmarshal([]byte(inputJSON), &input))
// ok
s := NewSchemaValidator(schema, nil, "", strfmt.Default, EnableObjectArrayTypeCheck(false))
result := s.Validate(input)
assert.True(t, result.IsValid())
// fail
s = NewSchemaValidator(schema, nil, "", strfmt.Default, EnableObjectArrayTypeCheck(true))
result = s.Validate(input)
assert.False(t, result.IsValid())
}
func TestSchemaValidator_TypeArray_Issue83(t *testing.T) {
var schemaJSON = `
{
"type": "object"
}`
schema := new(spec.Schema)
require.NoError(t, json.Unmarshal([]byte(schemaJSON), schema))
var input map[string]any
var inputJSON = `{"type": "array"}`
require.NoError(t, json.Unmarshal([]byte(inputJSON), &input))
// default behavior: jsonschema
require.NoError(t, AgainstSchema(schema, input, strfmt.Default))
// swagger behavior
require.Error(t, AgainstSchema(schema, input, strfmt.Default, SwaggerSchema(true)))
}