-
Notifications
You must be signed in to change notification settings - Fork 12
/
object_test.go
198 lines (172 loc) · 4.27 KB
/
object_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
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
package jio
import (
"errors"
"reflect"
"strconv"
"testing"
)
func TestK_sort(t *testing.T) {
schemas := K{
"2": Any().SetPriority(2),
"0": Any().SetPriority(0),
"1": Any().SetPriority(1),
"3": Any().SetPriority(3),
}.sort()
for i, schema := range schemas {
if schema.key != strconv.Itoa(3-i) {
t.Error("sort failed")
}
}
}
func TestObjectSchema_SetPriority(t *testing.T) {
for _, priority := range []int{-1, 0, 100} {
if priority != Object().SetPriority(priority).Priority() {
t.Error("set priority failed")
}
}
}
func TestObjectSchema_TransformAndPrependTransform(t *testing.T) {
schema := Object().Transform(func(ctx *Context) {
ctx.Abort(errors.New("2"))
}).Transform(func(ctx *Context) {
ctx.Abort(errors.New("3"))
}).PrependTransform(func(ctx *Context) {
ctx.Abort(errors.New("1"))
}).PrependTransform(func(ctx *Context) {
ctx.Abort(errors.New("0"))
})
if len(schema.rules) != 4 {
t.Error("miss function")
}
for i := 0; i < 4; i++ {
ctx := NewContext(nil)
schema.rules[i](ctx)
if ctx.Err.Error() != strconv.Itoa(i) {
t.Error("sequential error")
}
}
}
func TestObjectSchema_Required(t *testing.T) {
schema := Object().Required()
ctx := NewContext(nil)
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("should error when no data")
}
}
func TestObjectSchema_Optional(t *testing.T) {
schema := Object().Optional()
ctx := NewContext(nil)
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("should no error")
}
schema = Object().Keys(K{
"hi": String(),
})
ctx = NewContext(map[string]interface{}{})
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("should no error")
}
_, ok := ctx.Value.(map[string]interface{})["hi"]
if ok {
t.Error("should no hi field")
}
}
func TestObjectSchema_Default(t *testing.T) {
defaultValue := map[string]interface{}{"1": "2"}
schema := Object().Default(defaultValue)
ctx := NewContext(nil)
schema.Validate(ctx)
if reflect.ValueOf(ctx.Value).Len() != 1 {
t.Error("should set default value")
}
}
func TestObjectSchema_With(t *testing.T) {
schema := Object().With("hi", "faceair")
ctx := NewContext(map[string]interface{}{"hi": "11", "faceair": "111"})
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("valid value test failed")
}
ctx = NewContext(map[string]interface{}{"hi": "11", "othor": "111"})
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("invalid value test failed")
}
ctx = NewContext("hhh")
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("not map")
}
}
func TestObjectSchema_Without(t *testing.T) {
schema := Object().Without("hi", "faceair")
ctx := NewContext(map[string]interface{}{"hi": "11", "faceair": "111"})
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("valid value test failed")
}
ctx = NewContext(map[string]interface{}{"hi": "11", "othor": "111"})
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("invalid value test failed")
}
ctx = NewContext("hhh")
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("not map")
}
}
func TestObjectSchema_When(t *testing.T) {
schema := Object().Keys(K{
"exist": Bool().Required(),
"object": Object().
When("exist", true, Object().Required()).
When("exist", false, Object().Optional()),
})
ctx := NewContext(map[string]interface{}{"exist": true, "object": map[string]interface{}{"1": "2"}})
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("exist test failed")
}
ctx = NewContext(map[string]interface{}{"exist": false, "object": nil})
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("not exist test failed")
}
ctx = NewContext(map[string]interface{}{"exist": "badcase", "age": -3})
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("badcase test failed")
}
}
func TestObjectSchema_Keys(t *testing.T) {
schema := Object().Keys(K{
"exist": Bool().Required(),
})
ctx := NewContext(map[string]interface{}{"exist": true})
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("exist test failed")
}
ctx = NewContext("???")
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("unknown input should failed")
}
}
func TestObjectSchema_Validate(t *testing.T) {
schema := Object()
ctx := NewContext(nil)
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("default optional should no error")
}
ctx = NewContext("hhh")
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("not map")
}
}