-
Notifications
You must be signed in to change notification settings - Fork 12
/
bool_test.go
143 lines (126 loc) · 3 KB
/
bool_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 jio
import (
"errors"
"strconv"
"testing"
)
func TestBoolSchema_SetPriority(t *testing.T) {
for _, priority := range []int{-1, 0, 100} {
if priority != Bool().SetPriority(priority).Priority() {
t.Error("set priority failed")
}
}
}
func TestBoolSchema_TransformAndPrependTransform(t *testing.T) {
schema := Bool().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 TestBoolSchema_Required(t *testing.T) {
schema := Bool().Required()
ctx := NewContext(nil)
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("should error when no data")
}
}
func TestBoolSchema_Optional(t *testing.T) {
schema := Bool().Optional()
ctx := NewContext(nil)
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("should no error")
}
}
func TestBoolSchema_Default(t *testing.T) {
schema := Bool().Default(true)
ctx := NewContext(nil)
schema.Validate(ctx)
if ctx.Value != true {
t.Error("should set default value")
}
}
func TestBoolSchema_Set(t *testing.T) {
schema := Bool().Set(true)
ctx := NewContext(false)
schema.Validate(ctx)
if ctx.Value != true {
t.Error("should set default value")
}
}
func TestBoolSchema_Equal(t *testing.T) {
schema := Bool().Equal(true)
ctx := NewContext(true)
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("equal value test failed")
}
ctx = NewContext("???")
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("equal value test failed")
}
}
func TestBoolSchema_When(t *testing.T) {
schema := Object().Keys(K{
"bool1": Bool().Required(),
"bool2": Bool().
When("bool1", Bool().Equal(true), Bool().Equal(true)).
When("bool1", false, Bool().Equal(false)),
})
ctx := NewContext(map[string]interface{}{"bool1": true, "bool2": true})
schema.Validate(ctx)
if ctx.Err != nil {
t.Errorf("bool test failed")
}
ctx = NewContext(map[string]interface{}{"bool1": false, "bool2": true})
schema.Validate(ctx)
if ctx.Err == nil {
t.Error("bool test failed")
}
ctx = NewContext(map[string]interface{}{"bool1": false, "bool2": false})
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("bool test failed")
}
}
func TestBoolSchema_Truthy(t *testing.T) {
schema := Bool().Truthy("yes")
ctx := NewContext("yes")
schema.Validate(ctx)
if ctx.Value != true {
t.Error("should be true")
}
}
func TestBoolSchema_Falsy(t *testing.T) {
schema := Bool().Falsy("no")
ctx := NewContext("no")
schema.Validate(ctx)
if ctx.Value != false {
t.Error("should be false")
}
}
func TestBoolSchema_Validate(t *testing.T) {
schema := Bool()
ctx := NewContext(nil)
schema.Validate(ctx)
if ctx.Err != nil {
t.Error("default optional should no error")
}
}