-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbool_test.go
109 lines (86 loc) · 1.96 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
package owl_test
import (
"encoding/json"
"testing"
"github.com/aacebo/owl"
)
func TestBool(t *testing.T) {
t.Run("required", func(t *testing.T) {
t.Run("should succeed", func(t *testing.T) {
err := owl.Bool().Required().Validate(true)
if err != nil {
t.Fatal(err.Error())
}
})
t.Run("should fail", func(t *testing.T) {
err := owl.Bool().Required().Validate(nil)
if err == nil {
t.Fatal()
}
})
})
t.Run("enum", func(t *testing.T) {
t.Run("should succeed", func(t *testing.T) {
err := owl.Bool().Enum(true).Validate(true)
if err != nil {
t.Fatal(err.Error())
}
})
t.Run("should fail", func(t *testing.T) {
err := owl.Bool().Enum(true).Validate(false)
if err == nil {
t.Fatal()
}
})
})
t.Run("message", func(t *testing.T) {
t.Run("should have custom error message", func(t *testing.T) {
err := owl.Bool().Required().Message("a test message").Validate(nil)
if err == nil {
t.FailNow()
}
if err.Error() != `{"errors":[{"rule":"required","message":"a test message"}]}` {
t.Errorf(
"expected `%s`, received `%s`",
`{"errors":[{"rule":"required","message":"required"}]}`,
err.Error(),
)
}
})
})
t.Run("json", func(t *testing.T) {
t.Run("serialize", func(t *testing.T) {
schema := owl.Bool()
b, err := json.Marshal(schema)
if err != nil {
t.Error(err)
}
if string(b) != `{"type":"bool"}` {
t.Errorf("expected `%s`, received `%s`", `{"type":"bool"}`, string(b))
}
})
})
}
func BenchmarkBool(b *testing.B) {
b.Run("bool", func(b *testing.B) {
schema := owl.Bool()
for i := 0; i < b.N; i++ {
err := schema.Validate(true)
if err != nil {
b.Fatal(err)
}
}
})
}
func ExampleBool() {
schema := owl.Bool()
if err := schema.Validate(true); err != nil { // nil
panic(err)
}
if err := schema.Validate(false); err != nil { // nil
panic(err)
}
if err := schema.Validate("test"); err != nil { // error
panic(err)
}
}