-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_test.go
215 lines (189 loc) · 5.24 KB
/
sample_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
package samples
import (
"fmt"
"strings"
"testing"
dc0d "github.com/dc0d/caseconv"
ettle "github.com/ettle/strcase"
"github.com/gobeam/stringy"
iancoleman "github.com/iancoleman/strcase"
mantidtech "github.com/mantidtech/wordcase"
nikitaksv "github.com/nikitaksv/strcase"
parithiban "github.com/parithiban/stringcases"
pascaldekloe "github.com/pascaldekloe/name"
stoewer "github.com/stoewer/go-strcase"
)
// FIXME pattern names
const (
linePattern = "| %-67s | %-19s | %-19s | %-19s | %-19s |\n"
linePattern2 = "| %-14s | %-19s | %-19s | %-19s | %-19s |\n"
)
func TestSummary(t *testing.T) {
samples := []string{"GooID", "HTTPStatusCode", "FooBAR", "URL", "ID", "hostIP", "JSON", "JSONName", "NameJSON", "UneTête"}
extractors := []func(string) Info{
infoEttle,
infoStringy,
infoStoewer,
infoIancoleman,
infoPascaldekloe,
infoNikitaksv,
infoMantidtech,
infoDc0d,
infoParithiban,
}
fmt.Printf(linePattern, "Lib", "Snake", "Kebab", "Pascal Case", "Camel Case")
fmt.Printf("|%s|%[2]s|%[2]s|%[2]s|%[2]s|\n", strings.Repeat("-", 69), strings.Repeat("-", 21))
for _, value := range samples {
fmt.Printf(linePattern, "**"+value+"**", "-", "-", "-", "-")
for _, extractor := range extractors {
extractor(value).PrintWithLibName()
}
}
fmt.Println()
for _, extractor := range extractors {
fmt.Println("### ", extractor("noop").Name)
fmt.Println()
fmt.Printf(linePattern2, "Source", "Snake", "Kebab", "Pascal Case", "Camel Case")
fmt.Printf("|%s|%[2]s|%[2]s|%[2]s|%[2]s|\n", strings.Repeat("-", 16), strings.Repeat("-", 21))
for _, value := range samples {
extractor(value).PrintWithValue()
}
fmt.Println()
}
}
type Info struct {
Name string
Value string
Snake string
UpperSnake string
Kebab string
UpperKebab string
Pascal string
Camel string
}
func (i Info) PrintWithLibName() {
fmt.Printf(linePattern, fmt.Sprintf("[%s](https://%s)", strings.TrimPrefix(i.Name, "github.com/"), i.Name),
i.Snake,
i.Kebab,
i.Pascal,
i.Camel,
)
}
func (i Info) PrintWithValue() {
fmt.Printf(linePattern2, i.Value,
i.Snake,
i.Kebab,
i.Pascal,
i.Camel,
)
}
func infoDc0d(value string) Info {
return Info{
Name: "github.com/dc0d/caseconv",
Value: value,
Snake: dc0d.ToSnake(value),
UpperSnake: "",
Kebab: dc0d.ToKebab(value),
UpperKebab: "",
Pascal: dc0d.ToPascal(value),
Camel: dc0d.ToCamel(value),
}
}
func infoMantidtech(value string) Info {
return Info{
Name: "github.com/mantidtech/wordcase",
Value: value,
Snake: mantidtech.SnakeCase(value),
UpperSnake: mantidtech.ScreamingSnakeCase(value),
Kebab: mantidtech.KebabCase(value),
UpperKebab: "",
Pascal: mantidtech.PascalCase(value),
Camel: mantidtech.CamelCase(value),
}
}
func infoParithiban(value string) Info {
return Info{
Name: "github.com/parithiban/stringcases",
Value: value,
Snake: parithiban.ConvertToSnake(value),
UpperSnake: "",
Kebab: parithiban.ConvertToKebab(value),
UpperKebab: "",
Pascal: parithiban.ConvertToPascal(value),
Camel: parithiban.ConvertToCamel(value),
}
}
func infoNikitaksv(value string) Info {
return Info{
Name: "github.com/nikitaksv/strcase",
Value: value,
Snake: nikitaksv.ToSnakeCase(value),
UpperSnake: "",
Kebab: nikitaksv.ToKebabCase(value),
UpperKebab: "",
Pascal: nikitaksv.ToPascalCase(value),
Camel: nikitaksv.ToCamelCase(value),
}
}
func infoEttle(value string) Info {
// TODO ToGOSnake
return Info{
Name: "github.com/ettle/strcase",
Value: value,
Snake: ettle.ToSnake(value),
UpperSnake: ettle.ToSNAKE(value),
Kebab: ettle.ToKebab(value),
UpperKebab: ettle.ToKEBAB(value),
Pascal: ettle.ToPascal(value),
Camel: ettle.ToCamel(value),
}
}
func infoPascaldekloe(value string) Info {
return Info{
Name: "github.com/pascaldekloe/name",
Value: value,
Snake: pascaldekloe.SnakeCase(value),
UpperSnake: "",
Kebab: "",
UpperKebab: "",
Pascal: pascaldekloe.CamelCase(value, true),
Camel: pascaldekloe.CamelCase(value, false),
}
}
func infoStoewer(value string) Info {
return Info{
Name: "github.com/stoewer/go-strcase",
Value: value,
Snake: stoewer.SnakeCase(value),
UpperSnake: stoewer.UpperSnakeCase(value),
Kebab: stoewer.KebabCase(value),
UpperKebab: stoewer.UpperKebabCase(value),
Pascal: stoewer.UpperCamelCase(value),
Camel: stoewer.LowerCamelCase(value),
}
}
func infoStringy(value string) Info {
str := stringy.New(value)
return Info{
Name: "github.com/gobeam/stringy",
Value: value,
Snake: str.SnakeCase().Get(),
UpperSnake: str.SnakeCase().ToUpper(),
Kebab: str.KebabCase().Get(),
UpperKebab: str.KebabCase().ToUpper(),
Pascal: str.CamelCase(),
Camel: "",
}
}
func infoIancoleman(value string) Info {
return Info{
Name: "github.com/iancoleman/strcase",
Value: value,
Snake: iancoleman.ToSnake(value),
UpperSnake: iancoleman.ToScreamingSnake(value),
Kebab: iancoleman.ToKebab(value),
UpperKebab: iancoleman.ToScreamingKebab(value),
Pascal: iancoleman.ToCamel(value),
Camel: iancoleman.ToLowerCamel(value),
}
}