-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalidator_test.go
148 lines (113 loc) · 3.41 KB
/
validator_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
package validator_test
import (
. "github.com/typerandom/validator"
"github.com/typerandom/validator/core"
"testing"
)
func TestThatValidatorDefaultIsNotNil(t *testing.T) {
if Default() == nil {
t.Fatalf("Expected non nil value, got nil value.")
}
}
func TestThatValidatorDefaultResolvesToSameInstance(t *testing.T) {
validatorA := Default()
validatorB := Default()
if validatorA == nil || validatorB == nil {
t.Fatalf("Expected non nil value, got nil value.")
}
if validatorA != validatorB {
t.Fatalf("Expected resolved global validators to be same, got different.")
}
}
func TestThatValidatorNewReturnsNewValidator(t *testing.T) {
validatorA := New()
validatorB := New()
if validatorA == nil || validatorB == nil {
t.Fatalf("Expected non nil value, got nil value.")
}
if validatorA == validatorB {
t.Fatalf("Expected different validators, got same.")
}
}
func TestThatValidatorCopyReturnsNewCopyOfValidator(t *testing.T) {
validatorA := New()
validatorB := validatorA.Copy()
if validatorA == nil || validatorB == nil {
t.Fatalf("Expected non nil value, got nil value.")
}
if validatorA == validatorB {
t.Fatalf("Expected different validators, got same.")
}
if validatorA.Locale() == validatorB.Locale() {
t.Fatalf("Expected different locales, got same.")
}
}
func TestThatValidatorCanRegisterAndValidateCustomFunc(t *testing.T) {
Default().Locale().Set("test.isNotTest", "test.isNotTest")
Register("is_test", func(ctx core.ValidatorContext, args []interface{}) error {
if val, ok := ctx.Value().(string); ok {
if val == "test" {
return nil
}
return ctx.NewError("test.isNotTest")
}
return ctx.NewError("type.unsupported")
})
type Dummy struct {
Value string `validate:"is_test"`
}
errs := Validate(&Dummy{})
if !errs.Any() {
t.Fatalf("Expected error, didn't get any")
return
}
if errs.First().Error() != "test.isNotTest" {
t.Fatalf("Expected is not test error, got %s.", errs.First())
}
if errs = Validate(&Dummy{Value: "test"}); errs.Any() {
t.Fatalf("Didn't expect error, got %s.", errs.First())
}
}
func TestThatValidatorCanValidateStructValue(t *testing.T) {
type Dummy struct {
Value *string `validate:"nil|equal(test)|equal(other_test)"`
}
if errs := Validate(&Dummy{Value: nil}); errs.Any() {
t.Fatalf("Didn't expect error, got %s.", errs.First())
}
dummyValue := "test"
if errs := Validate(&Dummy{Value: &dummyValue}); errs.Any() {
t.Fatalf("Didn't expect error, got %s.", errs.First())
}
dummyValue = "other_test"
if errs := Validate(&Dummy{Value: &dummyValue}); errs.Any() {
t.Fatalf("Didn't expect error, got %s.", errs.First())
}
dummyValue = "invalid_value"
if errs := Validate(&Dummy{Value: &dummyValue}); !errs.Any() {
t.Fatalf("Expected error, didn't get any")
}
}
func TestThatValidatorDoesntValidateNilStructValue(t *testing.T) {
type DummyStruct struct {
Value string `validate:"not_empty"`
}
type Dummy struct {
NonNilStruct *DummyStruct
NilStruct *DummyStruct
}
dummyValue := &Dummy{
NonNilStruct: &DummyStruct{},
}
errs := Validate(dummyValue)
if !errs.Any() {
t.Fatal("Expected errors, but didn't get any.")
}
if errs.Length() != 1 {
t.Fatalf("Expected 1 error, but got %d.", errs.Length())
}
firstError := errs.First()
if firstError.String() != "NonNilStruct.Value cannot be empty." {
t.Fatalf("Expected error to be 'NonNilStruct.Value cannot be empty.' but it was '%s'.", firstError.String())
}
}