-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathnames_test.go
204 lines (190 loc) · 3.76 KB
/
names_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
package json2go
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestNames(t *testing.T) {
t.Parallel()
testCases := []struct {
name string
fieldName string
expectedName string
}{
{
name: "simple lowercase",
fieldName: "name",
expectedName: "Name",
},
{
name: "snake case",
fieldName: "field_name",
expectedName: "FieldName",
},
{
name: "long snake",
fieldName: "field__name",
expectedName: "FieldName",
},
{
name: "snake at ends",
fieldName: "_field_name_",
expectedName: "FieldName",
},
{
name: "long snake at ends",
fieldName: "__field_name",
expectedName: "FieldName",
},
{
name: "snake case with initialism",
fieldName: "html_field_name",
expectedName: "HTMLFieldName",
},
{
name: "camel case",
fieldName: "camelCaseName",
expectedName: "CamelCaseName",
},
{
name: "mixed case",
fieldName: "mixed_caseName_test",
expectedName: "MixedCaseNameTest",
},
{
name: "mixed case with initialism",
fieldName: "mixed_caseName_htmlTest",
expectedName: "MixedCaseNameHTMLTest",
},
{
name: "special chars",
fieldName: "$field_$name日本語",
expectedName: "FieldName",
},
{
name: "garbage",
fieldName: "$@!%^&*()",
expectedName: "",
},
{
name: "starting with digits",
fieldName: "123key",
expectedName: "Key",
},
{
name: "name with digits",
fieldName: "key_666",
expectedName: "Key666",
},
}
for i := range testCases {
tc := testCases[i]
t.Run(tc.name, func(t *testing.T) {
assert.Equal(t, tc.expectedName, attrName(tc.fieldName))
})
}
}
func TestExtractCommonName(t *testing.T) {
t.Parallel()
testCases := []struct {
name string
inputs []string
expected string
}{
{
name: "empty",
inputs: []string{},
expected: "",
},
{
name: "single input",
inputs: []string{"test"},
expected: "test",
},
{
name: "multiple same strings",
inputs: []string{"test", "test", "test"},
expected: "test",
},
{
name: "common prefix",
inputs: []string{"test1", "test2", "testXyz", "test"},
expected: "test",
},
}
for i := range testCases {
tc := testCases[i]
t.Run(tc.name, func(t *testing.T) {
assert.Equal(t, tc.expected, extractCommonName(tc.inputs...))
})
}
}
func TestNameFromNames(t *testing.T) {
t.Parallel()
testCases := []struct {
name string
inputs []string
expected string
}{
{
name: "empty",
inputs: []string{},
expected: "",
},
{
name: "single input",
inputs: []string{"test"},
expected: "test",
},
{
name: "multiple long strings",
inputs: []string{"aaaaaa", "bbbbbb", "cccccc", "dddddd"},
expected: "aaaaaa_bbbbbb_cccccc",
},
{
name: "multiple short strings",
inputs: []string{"a", "b", "c", "d", "e", "f"},
expected: "a_b_c",
},
}
for i := range testCases {
tc := testCases[i]
t.Run(tc.name, func(t *testing.T) {
assert.Equal(t, tc.expected, nameFromNames(tc.inputs...))
})
}
}
func TestNextName(t *testing.T) {
t.Parallel()
testCases := []struct {
name string
input string
expected string
}{
{
name: "empty",
input: "",
expected: "1",
},
{
name: "simple",
input: "simple",
expected: "simple2",
},
{
name: "simple2",
input: "simple2",
expected: "simple3",
},
{
name: "numbers in name",
input: "2sim234ple3",
expected: "2sim234ple4",
},
}
for i := range testCases {
tc := testCases[i]
t.Run(tc.name, func(t *testing.T) {
assert.Equal(t, tc.expected, nextName(tc.input))
})
}
}