-
Notifications
You must be signed in to change notification settings - Fork 0
/
token_test.go
195 lines (189 loc) · 3.4 KB
/
token_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
package wordcase
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestTokens_String(t *testing.T) {
tests := []struct {
name string
t Tokens
want string
}{
{
name: "empty",
t: Tokens{},
want: "",
},
{
name: "basic",
t: Tokens{"basic"},
want: "basic",
},
{
name: "2 tokens",
t: Tokens{"one two"},
want: "one two",
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := tt.t.String()
assert.Equal(t, tt.want, got)
})
}
}
func TestTokens_FormatAll(t *testing.T) {
type args struct {
fn Formatter
}
tests := []struct {
name string
t Tokens
args args
want Tokens
}{
// TODO: Add test cases.
}
for _, st := range tests {
tt := st
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := tt.t.FormatAll(tt.args.fn)
assert.Equal(t, tt.want, got)
})
}
}
func TestTokenizeString(t *testing.T) {
type args struct {
s string
test SeparatorTest
sepRune IsRuneSeparator
rmSep bool
}
tests := []struct {
name string
args args
want Tokens
}{
{
name: "empty",
args: args{
s: "",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{},
},
{
name: "basic",
args: args{
s: "basic",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"basic"},
},
{
name: "single non-separator",
args: args{
s: "a",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"a"},
},
{
name: "single separator",
args: args{
s: "A",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"A"},
},
{
name: "two single tokens",
args: args{
s: "aB",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"a", "B"},
},
{
name: "one double token",
args: args{
s: "Ab",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"Ab"},
},
{
name: "double separator",
args: args{
s: "aBC",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"a", "BC"},
},
{
name: "double separator with trailing",
args: args{
s: "aBCd",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"a", "B", "Cd"},
},
{
name: "quad separator",
args: args{
s: "aBCDE",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"a", "BCDE"},
},
{
name: "quad separator with trailing",
args: args{
s: "aBCDEf",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"a", "BCD", "Ef"},
},
{
name: "rolling",
args: args{
s: "aBcDeFgH",
test: LookAroundCategorizer,
sepRune: NotLowerOrDigit,
rmSep: false,
},
want: Tokens{"a", "Bc", "De", "Fg", "H"},
},
}
for _, st := range tests {
tt := st
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := TokenizeString(tt.args.s, tt.args.test, tt.args.sepRune, tt.args.rmSep)
assert.Equal(t, tt.want, got)
})
}
}