forked from go-openapi/validate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema_test.go
More file actions
185 lines (149 loc) · 4.57 KB
/
schema_test.go
File metadata and controls
185 lines (149 loc) · 4.57 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
// Copyright 2015 go-swagger maintainers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package validate
import (
"encoding/json"
"math"
"reflect"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/go-openapi/spec"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
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]interface{}
var inputJSON = `{"name": "Ivan"}`
require.NoError(t, json.Unmarshal([]byte(inputJSON), &input))
assert.NoError(t, AgainstSchema(schema, input, strfmt.Default))
input["place"] = json.Number("10")
assert.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]interface{}
// ok
var inputJSON = `{"name": "Ivan","address-1": "sesame street"}`
require.NoError(t, json.Unmarshal([]byte(inputJSON), &input))
assert.NoError(t, AgainstSchema(schema, input, strfmt.Default))
// fail pattern regexp
input["address-1"] = "1, Sesame Street"
assert.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))
assert.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"`, schemaValidatorPanicker)
}
func schemaValidatorPanicker() {
var schemaJSON = `
{
"$ref": "#/pointer-to-nowhere"
}`
schema := new(spec.Schema)
json.Unmarshal([]byte(schemaJSON), schema)
var input map[string]interface{}
// 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 := swag.FormatFloat64(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())
}