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
/
validate_float_test.go
135 lines (131 loc) · 2.8 KB
/
validate_float_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
package proto_validate_reflect
import (
"reflect"
"testing"
"github.com/protoconf/proto-validate-reflect/validate"
"google.golang.org/protobuf/reflect/protoreflect"
)
func floatPtr(f float32) *float32 {
return &f
}
func TestValidateFloat(t *testing.T) {
type args struct {
value protoreflect.Value
rules *validate.FloatRules
}
tests := []struct {
name string
args args
want bool
want1 []error
}{
{
name: "const",
args: args{
value: protoreflect.ValueOf(99.9),
rules: &validate.FloatRules{Const: floatPtr(9.99)},
},
want1: []error{ErrorConst},
},
{
name: "float lt",
args: args{
value: protoreflect.ValueOf(99.9),
rules: &validate.FloatRules{Lt: floatPtr(9.99)},
},
want1: []error{ErrorLt},
},
{
name: "float lt equals",
args: args{
value: protoreflect.ValueOf(99.9),
rules: &validate.FloatRules{Lt: floatPtr(99.9)},
},
want: true,
},
{
name: "float lte",
args: args{
value: protoreflect.ValueOf(99.9),
rules: &validate.FloatRules{Lte: floatPtr(9.99)},
},
want1: []error{ErrorLte},
},
{
name: "float lte equals",
args: args{
value: protoreflect.ValueOf(99.9),
rules: &validate.FloatRules{Lte: floatPtr(99.9)},
},
want1: []error{ErrorLte},
},
// Gt
{
name: "float gt",
args: args{
value: protoreflect.ValueOf(9.99),
rules: &validate.FloatRules{Gt: floatPtr(99.9)},
},
want1: []error{ErrorGt},
},
{
name: "float gt equals",
args: args{
value: protoreflect.ValueOf(99.9),
rules: &validate.FloatRules{Gt: floatPtr(99.9)},
},
want: true,
},
{
name: "float gte",
args: args{
value: protoreflect.ValueOf(9.99),
rules: &validate.FloatRules{Gte: floatPtr(99.9)},
},
want1: []error{ErrorGte},
},
{
name: "float gte equals",
args: args{
value: protoreflect.ValueOf(99.9),
rules: &validate.FloatRules{Gte: floatPtr(99.9)},
},
want1: []error{ErrorGte},
},
{
name: "float in set",
args: args{
value: protoreflect.ValueOf(99.9),
rules: &validate.FloatRules{In: []float32{9.9}},
},
want1: []error{ErrorIn},
},
{
name: "float not in set",
args: args{
value: protoreflect.ValueOf(99.9),
rules: &validate.FloatRules{NotIn: []float32{99.9}},
},
want1: []error{ErrorNotIn},
},
{
name: "float ignore empty",
args: args{
value: protoreflect.ValueOf(0.0),
rules: &validate.FloatRules{IgnoreEmpty: boolPtr(true)},
},
want: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := ValidateFloat(tt.args.value, tt.args.rules)
if got != tt.want {
t.Errorf("ValidateFloat() got = %v, want %v", got, tt.want)
}
if !reflect.DeepEqual(got1, tt.want1) {
t.Errorf("ValidateFloat() got1 = %v, want %v", got1, tt.want1)
}
})
}
}