-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmatch_constant_test.go
391 lines (367 loc) · 8.19 KB
/
match_constant_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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
package goconst
import (
"go/ast"
"go/parser"
"go/token"
"testing"
)
func TestMatchConstant(t *testing.T) {
tests := []struct {
name string
code string
wantIssues int
wantMatches map[string]string // string -> matching const name
}{
{
name: "basic constant match",
code: `package example
const MyConst = "test"
func example() {
str := "test"
}`,
wantIssues: 1,
wantMatches: map[string]string{
"test": "MyConst",
},
},
{
name: "multiple constants same value",
code: `package example
const (
FirstConst = "test"
SecondConst = "test"
)
func example() {
str := "test"
}`,
wantIssues: 1,
wantMatches: map[string]string{
"test": "FirstConst", // Should match the first one defined
},
},
{
name: "constant after usage",
code: `package example
func example() {
str := "test"
}
const MyConst = "test"`,
wantIssues: 1,
wantMatches: map[string]string{
"test": "MyConst",
},
},
{
name: "constant in init",
code: `package example
func init() {
const InitConst = "test"
}
func example() {
str := "test"
}`,
wantIssues: 1,
wantMatches: map[string]string{
"test": "InitConst",
},
},
{
name: "constant in different scope",
code: `package example
const GlobalConst = "global"
func example() {
const localConst = "local"
str1 := "global"
str2 := "local"
}`,
wantIssues: 2,
wantMatches: map[string]string{
"global": "GlobalConst",
"local": "localConst",
},
},
{
name: "exported vs unexported constants",
code: `package example
const (
ExportedConst = "exported"
unexportedConst = "unexported"
)
func example() {
str1 := "exported"
str2 := "unexported"
}`,
wantIssues: 2,
wantMatches: map[string]string{
"exported": "ExportedConst",
"unexported": "unexportedConst",
},
},
{
name: "string matches multiple constants",
code: `package example
const (
Const1 = "duplicate"
Const2 = "duplicate"
Const3 = "duplicate"
)
func example() {
str := "duplicate"
}`,
wantIssues: 1,
wantMatches: map[string]string{
"duplicate": "Const1", // Should match the first one defined
},
},
{
name: "constant with special characters",
code: `package example
const SpecialConst = "test\nwith\tspecial\rchars"
func example() {
str := "test\nwith\tspecial\rchars"
}`,
wantIssues: 1,
wantMatches: map[string]string{
"test\nwith\tspecial\rchars": "SpecialConst",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
fset := token.NewFileSet()
f, err := parser.ParseFile(fset, "example.go", tt.code, 0)
if err != nil {
t.Fatalf("Failed to parse test code: %v", err)
}
config := &Config{
MinStringLength: 1, // Set to 1 to catch all strings
MinOccurrences: 1, // Set to 1 to catch all occurrences
MatchWithConstants: true,
}
chkr, info := checker(fset)
_ = chkr.Files([]*ast.File{f})
issues, err := Run([]*ast.File{f}, fset, info, config)
if err != nil {
t.Fatalf("Run() error = %v", err)
}
if len(issues) != tt.wantIssues {
t.Errorf("Got %d issues, want %d", len(issues), tt.wantIssues)
for _, issue := range issues {
t.Logf("Found issue: %q matches constant %q", issue.Str, issue.MatchingConst)
}
}
// Verify constant matches
for _, issue := range issues {
if wantConst, ok := tt.wantMatches[issue.Str]; ok {
if issue.MatchingConst != wantConst {
t.Errorf("String %q matched with constant %q, want %q",
issue.Str, issue.MatchingConst, wantConst)
}
} else {
t.Errorf("Unexpected string found: %q", issue.Str)
}
}
})
}
}
func TestMatchConstantMultiFile(t *testing.T) {
// Test constant matching across multiple files
files := map[string]string{
"const.go": `package example
const (
SharedConst = "shared"
PackageConst = "package"
)`,
"main.go": `package example
func main() {
str1 := "shared"
str2 := "package"
}`,
}
fset := token.NewFileSet()
astFiles := make([]*ast.File, 0, len(files))
for name, content := range files {
f, err := parser.ParseFile(fset, name, content, 0)
if err != nil {
t.Fatalf("Failed to parse %s: %v", name, err)
}
astFiles = append(astFiles, f)
}
config := &Config{
MinStringLength: 1,
MinOccurrences: 1,
MatchWithConstants: true,
}
chkr, info := checker(fset)
_ = chkr.Files(astFiles)
issues, err := Run(astFiles, fset, info, config)
if err != nil {
t.Fatalf("Run() error = %v", err)
}
wantMatches := map[string]string{
"shared": "SharedConst",
"package": "PackageConst",
}
if len(issues) != len(wantMatches) {
t.Errorf("Got %d issues, want %d", len(issues), len(wantMatches))
}
for _, issue := range issues {
if wantConst, ok := wantMatches[issue.Str]; ok {
if issue.MatchingConst != wantConst {
t.Errorf("String %q matched with constant %q, want %q",
issue.Str, issue.MatchingConst, wantConst)
}
} else {
t.Errorf("Unexpected string found: %q", issue.Str)
}
}
}
func TestMatchConstantExpressions(t *testing.T) {
tests := []struct {
name string
code string
evalExpr bool
wantIssues int
wantMatches map[string]string // string -> matching const name
}{
{
name: "simple string concatenation",
code: `package example
const (
Prefix = "api."
Endpoint = Prefix + "users"
)
func example() {
path := "api.users"
}`,
evalExpr: true,
wantIssues: 1,
wantMatches: map[string]string{
"api.users": "Endpoint",
},
},
{
name: "nested expressions",
code: `package example
const (
BaseURL = "example.com"
APIPath = "/api/v1"
FullURL = BaseURL + APIPath
)
func example() {
url := "example.com/api/v1"
}`,
evalExpr: true,
wantIssues: 1,
wantMatches: map[string]string{
"example.com/api/v1": "FullURL",
},
},
{
name: "expressions with special characters",
code: `package example
const (
ErrorPrefix = "ERROR: "
ErrorMsg = ErrorPrefix + "invalid\ninput"
)
func example() {
msg := "ERROR: invalid\ninput"
}`,
evalExpr: true,
wantIssues: 1,
wantMatches: map[string]string{
"ERROR: invalid\ninput": "ErrorMsg",
},
},
{
name: "multiple levels of indirection",
code: `package example
const (
A = "a"
B = A + "b"
C = B + "c"
D = C + "d"
)
func example() {
val := "abcd"
}`,
evalExpr: true,
wantIssues: 1,
wantMatches: map[string]string{
"abcd": "D",
},
},
{
name: "constant expression - feature disabled",
code: `package example
const (
Prefix = "api."
Endpoint = Prefix + "users"
)
func example() {
path := "api.users"
}`,
evalExpr: false,
wantIssues: 1, // Still detects the string, but no matching constant
wantMatches: map[string]string{
"api.users": "", // Empty string indicates no constant match
},
},
{
name: "parenthesized expressions",
code: `package example
const (
A = "a"
B = "b"
Combined = (A + B) + "c"
)
func example() {
val := "abc"
}`,
evalExpr: true,
wantIssues: 1,
wantMatches: map[string]string{
"abc": "Combined",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
fset := token.NewFileSet()
f, err := parser.ParseFile(fset, "example.go", tt.code, 0)
if err != nil {
t.Fatalf("Failed to parse test code: %v", err)
}
config := &Config{
MinStringLength: 1, // Set to 1 to catch all strings
MinOccurrences: 1, // Set to 1 to catch all occurrences
MatchWithConstants: true,
EvalConstExpressions: tt.evalExpr,
}
chkr, info := checker(fset)
_ = chkr.Files([]*ast.File{f})
issues, err := Run([]*ast.File{f}, fset, info, config)
if err != nil {
t.Fatalf("Run() error = %v", err)
}
if len(issues) != tt.wantIssues {
t.Errorf("Got %d issues, want %d", len(issues), tt.wantIssues)
for _, issue := range issues {
t.Logf("Found issue: %q matches constant %q", issue.Str, issue.MatchingConst)
}
return
}
// Verify constant matches
for _, issue := range issues {
if wantConst, ok := tt.wantMatches[issue.Str]; ok {
if issue.MatchingConst != wantConst {
t.Errorf("String %q matched with constant %q, want %q",
issue.Str, issue.MatchingConst, wantConst)
}
} else {
t.Errorf("Unexpected string found: %q", issue.Str)
}
}
})
}
}