-
Notifications
You must be signed in to change notification settings - Fork 4
/
exists_test.go
118 lines (103 loc) · 2.21 KB
/
exists_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
package govalidator
import (
"testing"
"github.com/stretchr/testify/assert"
)
var tables = map[string][]map[string]any{
"users": {
{
"id": 1,
"username": "reza",
"nickname": "khademi",
},
{
"id": 2,
"username": "adel",
"nickname": "haddadi",
},
},
}
type repo struct{}
func (repo) Exists(value any, table, column string) bool {
data, exists := tables[table]
if !exists {
return false
}
for _, item := range data {
if item[column] == value {
return true
}
}
return false
}
func (repo) ExistsExceptSelf(value any, table, column string, selfID int) bool {
data, exists := tables[table]
if !exists {
return false
}
for _, item := range data {
if item[column] == value {
return true
}
}
return false
}
func TestValidator_Exists(t *testing.T) {
tests := []struct {
name string
field string
value any
table string
column string
isPassed bool
msg string
expectedMsg string
}{
{
name: "test username of adel exists in defined users table",
field: "username",
value: "adel",
table: "users",
column: "username",
isPassed: true,
msg: "",
expectedMsg: "",
},
{
name: "test nickname of Horizon does not exist in defined users table",
field: "nickname",
value: "Horizon",
table: "users",
column: "nickname",
isPassed: false,
msg: "",
expectedMsg: "nickname does not exist",
},
{
name: "test id of 500 does not exist in defined users table",
field: "id",
value: 500,
table: "users",
column: "id",
isPassed: false,
msg: "user with id of 5 does not exist in users table",
expectedMsg: "user with id of 5 does not exist in users table",
},
}
for _, test := range tests {
v := New().
WithRepo(repo{})
v.Exists(test.value, test.table, test.column, test.field, test.msg)
assert.Equal(t, test.isPassed, v.IsPassed())
if v.IsFailed() {
assert.Equalf(
t,
test.expectedMsg,
v.Errors()[test.field],
"test case %q failed, expected: %s, got: %s",
test.expectedMsg,
v.Errors()[test.field],
)
}
}
}