-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutils_test.go
232 lines (205 loc) · 4.61 KB
/
utils_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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
package patcher
import (
"reflect"
"testing"
"github.com/stretchr/testify/require"
)
func TestIsPointerToStruct(t *testing.T) {
t.Parallel()
tests := []struct {
name string
value any
expected bool
}{
{"Pointer to struct", &struct{}{}, true},
{"Nil pointer to struct", (*struct{})(nil), false},
{"Non-pointer value", struct{}{}, false},
{"Pointer to non-struct", new(int), false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
actual := isPointerToStruct(tt.value)
require.Equal(t, tt.expected, actual)
})
}
}
func TestDereferenceIfPointer(t *testing.T) {
t.Parallel()
tests := []struct {
name string
resource any
expected any
}{
{"Non-pointer value", 42, 42},
{"Pointer to value", ptr(42), 42},
{"Nil pointer", (*int)(nil), (*int)(nil)},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
actual := dereferenceIfPointer(tt.resource)
require.Equal(t, tt.expected, actual)
})
}
}
func TestEnsureStruct(t *testing.T) {
t.Parallel()
tests := []struct {
name string
resource any
shouldPanic bool
}{
{"Struct", struct{}{}, false},
{"Pointer to Struct", &struct{}{}, true},
{"Non-struct", 42, true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
if tt.shouldPanic {
require.Panics(t, func() { ensureStruct(tt.resource) })
} else {
require.NotPanics(t, func() { ensureStruct(tt.resource) })
}
})
}
}
func TestGetTag(t *testing.T) {
t.Parallel()
type TestStruct struct {
Field1 string `custom:"field1_tag"`
Field2 string
}
tests := []struct {
name string
field string
tagName string
expected string
}{
{"Field with tag", "Field1", "custom", "field1_tag"},
{"Field without tag", "Field2", "custom", "field2"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
f, _ := reflect.TypeOf(TestStruct{}).FieldByName(tt.field)
actual := getTag(&f, tt.tagName)
require.Equal(t, tt.expected, actual)
})
}
}
func TestGetValue(t *testing.T) {
t.Parallel()
tests := []struct {
name string
value any
expected any
}{
{"Non-pointer value", 42, 42},
{"Pointer to value", ptr(42), 42},
{"Nil pointer", (*int)(nil), nil},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
val := reflect.ValueOf(tt.value)
actual := getValue(val)
require.Equal(t, tt.expected, actual)
})
}
}
func TestIsValidType(t *testing.T) {
t.Parallel()
tests := []struct {
name string
value any
expected bool
}{
{"Bool", true, true},
{"Int", 1, true},
{"Int8", int8(1), true},
{"Int16", int16(1), true},
{"Int32", int32(1), true},
{"Int64", int64(1), true},
{"Uint", uint(1), true},
{"Uint8", uint8(1), true},
{"Uint16", uint16(1), true},
{"Uint32", uint32(1), true},
{"Uint64", uint64(1), true},
{"Uintptr", uintptr(1), true},
{"Float32", float32(1.0), true},
{"Float64", 1.0, true},
{"String", "test", true},
{"Struct", struct{}{}, true},
{"Pointer", new(int), true},
{"InvalidType", complex(1, 1), false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
val := reflect.ValueOf(tt.value)
actual := IsValidType(val)
require.Equal(t, tt.expected, actual)
})
}
}
func TestGetTableName(t *testing.T) {
t.Parallel()
type TestStruct struct{}
type TestStructWithPtr struct{}
tests := []struct {
name string
resource any
expected string
}{
{
name: "Struct",
resource: TestStruct{},
expected: "test_struct",
},
{
name: "Pointer to Struct",
resource: &TestStructWithPtr{},
expected: "test_struct_with_ptr",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
actual := getTableName(tt.resource)
require.Equal(t, tt.expected, actual)
})
}
}
func TestToSnakeCase(t *testing.T) {
t.Parallel()
tests := []struct {
name string
expected string
}{
{
name: "TestToSnakeCase",
expected: "test_to_snake_case",
},
{
name: "TestToSnakeCaseWithNumbers123",
expected: "test_to_snake_case_with_numbers123",
},
{
name: "TestToSnakeCaseWithNumbers123AndUppercase",
expected: "test_to_snake_case_with_numbers123_and_uppercase",
},
{
name: "TestToSnakeCaseWithNumbers123AndUppercaseAndSymbols!@#",
expected: "test_to_snake_case_with_numbers123_and_uppercase_and_symbols!@#",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
actual := toSnakeCase(tt.name)
require.Equal(t, tt.expected, actual)
})
}
}