This repository was 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
Expand file tree
/
Copy pathvalidate_uint32_test.go
More file actions
137 lines (133 loc) · 2.95 KB
/
validate_uint32_test.go
File metadata and controls
137 lines (133 loc) · 2.95 KB
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 uint32Ptr(f uint32) *uint32 {
return &f
}
func TestValidateUInt32(t *testing.T) {
number1 := uint32(10)
number2 := uint32(9)
type args struct {
value protoreflect.Value
rules *validate.UInt32Rules
}
tests := []struct {
name string
args args
want bool
want1 []error
}{
{
name: "const",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.UInt32Rules{Const: uint32Ptr(number2)},
},
want1: []error{ErrorConst},
},
{
name: "uint32 lt",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.UInt32Rules{Lt: uint32Ptr(number2)},
},
want1: []error{ErrorLt},
},
{
name: "uint32 lt equals",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.UInt32Rules{Lt: uint32Ptr(number1)},
},
want: true,
},
{
name: "uint32 lte",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.UInt32Rules{Lte: uint32Ptr(number2)},
},
want1: []error{ErrorLte},
},
{
name: "uint32 lte equals",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.UInt32Rules{Lte: uint32Ptr(number1)},
},
want1: []error{ErrorLte},
},
// Gt
{
name: "uint32 gt",
args: args{
value: protoreflect.ValueOf(number2),
rules: &validate.UInt32Rules{Gt: uint32Ptr(number1)},
},
want1: []error{ErrorGt},
},
{
name: "uint32 gt equals",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.UInt32Rules{Gt: uint32Ptr(number1)},
},
want: true,
},
{
name: "uint32 gte",
args: args{
value: protoreflect.ValueOf(number2),
rules: &validate.UInt32Rules{Gte: uint32Ptr(number1)},
},
want1: []error{ErrorGte},
},
{
name: "uint32 gte equals",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.UInt32Rules{Gte: uint32Ptr(number1)},
},
want1: []error{ErrorGte},
},
{
name: "uint32 in set",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.UInt32Rules{In: []uint32{number2}},
},
want1: []error{ErrorIn},
},
{
name: "uint32 not in set",
args: args{
value: protoreflect.ValueOf(number1),
rules: &validate.UInt32Rules{NotIn: []uint32{number1}},
},
want1: []error{ErrorNotIn},
},
{
name: "uint32 ignore empty",
args: args{
value: protoreflect.ValueOf(uint32(0)),
rules: &validate.UInt32Rules{IgnoreEmpty: boolPtr(true)},
},
want: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := ValidateUInt32(tt.args.value, tt.args.rules)
if got != tt.want {
t.Errorf("ValidateUInt32() got = %v, want %v", got, tt.want)
}
if !reflect.DeepEqual(got1, tt.want1) {
t.Errorf("ValidateUInt32() got1 = %v, want %v", got1, tt.want1)
}
})
}
}