-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
validate_min_test.go
83 lines (74 loc) · 1.41 KB
/
validate_min_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
package changeset
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
func TestValidateMin(t *testing.T) {
tests := []interface{}{
"long text",
10,
[]interface{}{"a", "b", "c", "d", "e", "f"},
[]*Changeset{{}, {}, {}, {}, {}, {}},
int8(10),
int16(10),
int32(10),
int64(10),
uint(10),
uint8(10),
uint16(10),
uint32(10),
uint64(10),
uintptr(10),
float32(10),
float64(10),
}
for _, tt := range tests {
t.Run(fmt.Sprintf("%T", tt), func(t *testing.T) {
ch := &Changeset{
changes: map[string]interface{}{
"field": tt,
},
}
ValidateMin(ch, "field", 5)
assert.Nil(t, ch.Errors())
})
}
}
func TestValidateMin_error(t *testing.T) {
tests := []interface{}{
"long text",
10,
[]interface{}{"a", "b", "c", "d", "e", "f"},
[]*Changeset{{}, {}, {}, {}, {}, {}},
int8(10),
int16(10),
int32(10),
int64(10),
uint(10),
uint8(10),
uint16(10),
uint32(10),
uint64(10),
uintptr(10),
float32(10),
float64(10),
}
for _, tt := range tests {
t.Run(fmt.Sprintf("%T", tt), func(t *testing.T) {
ch := &Changeset{
changes: map[string]interface{}{
"field": tt,
},
}
ValidateMin(ch, "field", 15)
assert.NotNil(t, ch.Errors())
assert.Equal(t, "field must be more than 15", ch.Error().Error())
})
}
}
func TestValidateMin_missing(t *testing.T) {
ch := &Changeset{}
ValidateMin(ch, "field", 5)
assert.Nil(t, ch.Errors())
}