forked from xeipuuv/gojsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
format_checkers_test.go
143 lines (119 loc) · 3.12 KB
/
format_checkers_test.go
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
package gojsonschema
import (
"encoding/json"
"testing"
"github.com/stretchr/testify/assert"
)
func TestUUIDFormatCheckerIsFormat(t *testing.T) {
checker := UUIDFormatChecker{}
assert.True(t, checker.IsFormat("01234567-89ab-cdef-0123-456789abcdef"))
assert.True(t, checker.IsFormat("f1234567-89ab-cdef-0123-456789abcdef"))
assert.True(t, checker.IsFormat("01234567-89AB-CDEF-0123-456789ABCDEF"))
assert.True(t, checker.IsFormat("F1234567-89AB-CDEF-0123-456789ABCDEF"))
assert.False(t, checker.IsFormat("not-a-uuid"))
assert.False(t, checker.IsFormat("g1234567-89ab-cdef-0123-456789abcdef"))
}
func TestURIReferenceFormatCheckerIsFormat(t *testing.T) {
checker := URIReferenceFormatChecker{}
assert.True(t, checker.IsFormat("relative"))
assert.True(t, checker.IsFormat("https://dummyhost.com/dummy-path?dummy-qp-name=dummy-qp-value"))
}
const formatSchema = `{
"type": "object",
"properties": {
"arr": {"type": "array", "items": {"type": "string"}, "format": "ArrayChecker"},
"bool": {"type": "boolean", "format": "BoolChecker"},
"int": {"format": "IntegerChecker"},
"name": {"type": "string"},
"str": {"type": "string", "format": "StringChecker"}
},
"format": "ObjectChecker",
"required": ["name"]
}`
type arrayChecker struct{}
func (c arrayChecker) IsFormat(input interface{}) bool {
arr, ok := input.([]interface{})
if !ok {
return true
}
for _, v := range arr {
if v == "x" {
return true
}
}
return false
}
type boolChecker struct{}
func (c boolChecker) IsFormat(input interface{}) bool {
b, ok := input.(bool)
if !ok {
return true
}
return b
}
type integerChecker struct{}
func (c integerChecker) IsFormat(input interface{}) bool {
number, ok := input.(json.Number)
if !ok {
return true
}
f, _ := number.Float64()
return int(f)%2 == 0
}
type objectChecker struct{}
func (c objectChecker) IsFormat(input interface{}) bool {
obj, ok := input.(map[string]interface{})
if !ok {
return true
}
return obj["name"] == "x"
}
type stringChecker struct{}
func (c stringChecker) IsFormat(input interface{}) bool {
str, ok := input.(string)
if !ok {
return true
}
return str == "o"
}
func TestCustomFormat(t *testing.T) {
FormatCheckers.
Add("ArrayChecker", arrayChecker{}).
Add("BoolChecker", boolChecker{}).
Add("IntegerChecker", integerChecker{}).
Add("ObjectChecker", objectChecker{}).
Add("StringChecker", stringChecker{})
sl := NewStringLoader(formatSchema)
validResult, err := Validate(sl, NewGoLoader(map[string]interface{}{
"arr": []string{"x", "y", "z"},
"bool": true,
"int": "2", // format not defined for string
"name": "x",
"str": "o",
}))
if err != nil {
t.Error(err)
}
if !validResult.Valid() {
for _, desc := range validResult.Errors() {
t.Error(desc)
}
}
invalidResult, err := Validate(sl, NewGoLoader(map[string]interface{}{
"arr": []string{"a", "b", "c"},
"bool": false,
"int": 1,
"name": "z",
"str": "a",
}))
if err != nil {
t.Error(err)
}
assert.Len(t, invalidResult.Errors(), 5)
FormatCheckers.
Remove("ArrayChecker").
Remove("BoolChecker").
Remove("IntegerChecker").
Remove("ObjectChecker").
Remove("StringChecker")
}