This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate_int32_test.go
137 lines (133 loc) · 2.91 KB
/
validate_int32_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
package proto_validate_reflect
import (
"reflect"
"testing"
"github.com/protoconf/proto-validate-reflect/validate"
"google.golang.org/protobuf/reflect/protoreflect"
)
func int32Ptr(f int32) *int32 {
return &f
}
func TestValidateInt32(t *testing.T) {
number1 := int32(10)
number2 := int32(9)
type args struct {
value protoreflect.Value
rules *validate.Int32Rules
}
tests := []struct {
name string
args args
want bool
want1 []error
}{
{
name: "const",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.Int32Rules{Const: int32Ptr(number2)},
},
want1: []error{ErrorConst},
},
{
name: "int32 lt",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.Int32Rules{Lt: int32Ptr(number2)},
},
want1: []error{ErrorLt},
},
{
name: "int32 lt equals",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.Int32Rules{Lt: int32Ptr(number1)},
},
want: true,
},
{
name: "int32 lte",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.Int32Rules{Lte: int32Ptr(number2)},
},
want1: []error{ErrorLte},
},
{
name: "int32 lte equals",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.Int32Rules{Lte: int32Ptr(number1)},
},
want1: []error{ErrorLte},
},
// Gt
{
name: "int32 gt",
args: args{
value: protoreflect.ValueOf(number2),
rules: &validate.Int32Rules{Gt: int32Ptr(number1)},
},
want1: []error{ErrorGt},
},
{
name: "int32 gt equals",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.Int32Rules{Gt: int32Ptr(number1)},
},
want: true,
},
{
name: "int32 gte",
args: args{
value: protoreflect.ValueOf(number2),
rules: &validate.Int32Rules{Gte: int32Ptr(number1)},
},
want1: []error{ErrorGte},
},
{
name: "int32 gte equals",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.Int32Rules{Gte: int32Ptr(number1)},
},
want1: []error{ErrorGte},
},
{
name: "int32 in set",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.Int32Rules{In: []int32{number2}},
},
want1: []error{ErrorIn},
},
{
name: "int32 not in set",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.Int32Rules{NotIn: []int32{number1}},
},
want1: []error{ErrorNotIn},
},
{
name: "int32 ignore empty",
args: args{
value: protoreflect.ValueOf(int32(0)),
rules: &validate.Int32Rules{IgnoreEmpty: boolPtr(true)},
},
want: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := ValidateInt32(tt.args.value, tt.args.rules)
if got != tt.want {
t.Errorf("ValidateInt32() got = %v, want %v", got, tt.want)
}
if !reflect.DeepEqual(got1, tt.want1) {
t.Errorf("ValidateInt32() got1 = %v, want %v", got1, tt.want1)
}
})
}
}