-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathvisitor_test.go
More file actions
643 lines (601 loc) · 14.7 KB
/
Copy pathvisitor_test.go
File metadata and controls
643 lines (601 loc) · 14.7 KB
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
package goconst
import (
"go/ast"
"go/parser"
"go/token"
"sync"
"testing"
)
func TestTreeVisitor_Visit(t *testing.T) {
tests := []struct {
name string
code string
expectedStrings []string
expectedConstCounts map[string]int
excludeTypes map[Type]bool
}{
{
name: "assignment detection",
code: `package example
func example() {
a := "test"
}`,
expectedStrings: []string{"test"},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{},
},
{
name: "binary expression detection",
code: `package example
func example() {
if a == "test" {}
}`,
expectedStrings: []string{"test"},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{},
},
{
name: "case clause detection",
code: `package example
func example() {
switch a {
case "test":
}
}`,
expectedStrings: []string{"test"},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{},
},
{
name: "return statement detection",
code: `package example
func example() string {
return "test"
}`,
expectedStrings: []string{"test"},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{},
},
{
name: "function call detection",
code: `package example
func example() {
println("test")
}`,
expectedStrings: []string{"test"},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{},
},
{
name: "composite literal detection",
code: `package example
type person struct {
name string
}
func example() {
_ = []string{"test"}
_ = map[string]string{"test": "value"}
_ = person{name: "test"}
}`,
expectedStrings: []string{"test", "value"},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{},
},
{
name: "composite literal with non-literal elements",
code: `package example
func example() {
_ = [][]string{{"nested"}}
_ = []string{getString()}
}
func getString() string { return "" }`,
expectedStrings: []string{"nested"},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{},
},
{
name: "excluded composite literal",
code: `package example
func example() {
_ = []string{"test"}
}`,
expectedStrings: []string{},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{CompositeLit: true},
},
{
name: "excluded type assignment",
code: `package example
func example() {
a := "test"
}`,
expectedStrings: []string{},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{Assignment: true},
},
{
name: "constant detection",
code: `package example
const MyConst = "test"
func example() {
}`,
expectedStrings: []string{},
expectedConstCounts: map[string]int{"test": 1},
excludeTypes: map[Type]bool{},
},
{
name: "detect multiple constants",
code: `package example
const MyConst1 = "test"
const MyConst2 = "test"
func example() {
const inFunc = "test"
}`,
expectedStrings: []string{},
expectedConstCounts: map[string]int{"test": 3},
excludeTypes: map[Type]bool{},
},
{
name: "non-equality binary operators ignored",
code: `package example
func example() {
var a, b string
if a < "foo" {}
if b > "bar" {}
}`,
expectedStrings: []string{},
expectedConstCounts: map[string]int{},
excludeTypes: map[Type]bool{},
},
}
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)
}
p := &Parser{
minLength: 3,
minOccurrences: 1,
supportedTokens: []token.Token{token.STRING},
excludeTypes: tt.excludeTypes,
strs: Strings{},
consts: Constants{},
matchConstant: true,
findDuplicates: true,
stringCount: make(map[string]int),
stringMutex: sync.RWMutex{},
stringCountMutex: sync.RWMutex{},
}
v := &treeVisitor{
p: p,
fileSet: fset,
packageName: "example",
}
ast.Walk(v, f)
// Check that we found the expected strings
foundStrs := make(map[string]bool)
for str := range p.strs {
foundStrs[str] = true
}
for _, expectedStr := range tt.expectedStrings {
if !foundStrs[expectedStr] {
t.Errorf("Expected string %q not found in results", expectedStr)
}
}
// Check that we didn't find any unexpected strings
if len(foundStrs) != len(tt.expectedStrings) {
t.Errorf("Found %d strings, expected %d", len(foundStrs), len(tt.expectedStrings))
}
// Check that we found the expected constants
foundConstCounts := make(map[string]int)
for val, consts := range p.consts {
foundConstCounts[val] = len(consts)
}
for expectedConst, expectedCount := range tt.expectedConstCounts {
if foundConstCounts[expectedConst] != expectedCount {
t.Errorf("Expected %d occurrences of const %q, found %d", expectedCount, expectedConst,
foundConstCounts[expectedConst])
}
}
if len(foundConstCounts) != len(tt.expectedConstCounts) {
t.Errorf("Found %d const values, expected %d", len(foundConstCounts), len(tt.expectedConstCounts))
}
})
}
}
func TestTreeVisitor_AllPositionsRecorded(t *testing.T) {
tests := []struct {
name string
code string
minOccurrences int
str string
expectedPosCount int
}{
{
name: "five occurrences with min 2",
code: `package example
import "fmt"
func example() {
a := "hello"
if a == "hello" {
fmt.Println("hello")
}
switch a {
case "hello":
}
b := "hello"
fmt.Println(b)
}`,
minOccurrences: 2,
str: "hello",
expectedPosCount: 5,
},
{
name: "five occurrences with min 3",
code: `package example
import "fmt"
func example() {
a := "hello"
if a == "hello" {
fmt.Println("hello")
}
switch a {
case "hello":
}
b := "hello"
fmt.Println(b)
}`,
minOccurrences: 3,
str: "hello",
expectedPosCount: 5,
},
{
name: "five occurrences with min 5",
code: `package example
import "fmt"
func example() {
a := "hello"
if a == "hello" {
fmt.Println("hello")
}
switch a {
case "hello":
}
b := "hello"
fmt.Println(b)
}`,
minOccurrences: 5,
str: "hello",
expectedPosCount: 5,
},
{
name: "three occurrences with min 2",
code: `package example
func example() string {
a := "world"
b := "world"
return "world"
}`,
minOccurrences: 2,
str: "world",
expectedPosCount: 3,
},
}
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)
}
p := &Parser{
minLength: 3,
minOccurrences: tt.minOccurrences,
supportedTokens: []token.Token{token.STRING},
excludeTypes: map[Type]bool{},
strs: Strings{},
consts: Constants{},
stringCount: make(map[string]int),
stringMutex: sync.RWMutex{},
stringCountMutex: sync.RWMutex{},
}
v := &treeVisitor{
p: p,
fileSet: fset,
packageName: "example",
}
ast.Walk(v, f)
positions, ok := p.strs[tt.str]
if !ok {
t.Fatalf("Expected string %q in results, but it was not found", tt.str)
}
if len(positions) != tt.expectedPosCount {
t.Errorf("Expected %d positions for %q, got %d",
tt.expectedPosCount, tt.str, len(positions))
for i, pos := range positions {
t.Logf(" position %d: %s", i, pos.String())
}
}
count := p.GetStringCount(tt.str)
if count != tt.expectedPosCount {
t.Errorf("Expected string count %d for %q, got %d",
tt.expectedPosCount, tt.str, count)
}
})
}
}
func TestTreeVisitor_AddString(t *testing.T) {
tests := []struct {
name string
str string
typ Type
excludeTypes map[Type]bool
minLength int
expectAdded bool
}{
{
name: "basic string",
str: `"test"`,
typ: Assignment,
excludeTypes: map[Type]bool{},
minLength: 3,
expectAdded: true,
},
{
name: "excluded type",
str: `"test"`,
typ: Assignment,
excludeTypes: map[Type]bool{Assignment: true},
minLength: 3,
expectAdded: false,
},
{
name: "too short",
str: `"ab"`,
typ: Assignment,
excludeTypes: map[Type]bool{},
minLength: 3,
expectAdded: false,
},
{
name: "too short more than one byte for char",
str: `"да"`,
typ: Assignment,
excludeTypes: map[Type]bool{},
minLength: 3,
expectAdded: false,
},
{
name: "unicode string counted by runes",
str: `"привет"`,
typ: Assignment,
excludeTypes: map[Type]bool{},
minLength: 3,
expectAdded: true,
},
{
name: "unicode string exactly at threshold",
str: `"猫犬鳥"`,
typ: Assignment,
excludeTypes: map[Type]bool{},
minLength: 3,
expectAdded: true,
},
{
name: "raw string literal",
str: "`test`",
typ: Assignment,
excludeTypes: map[Type]bool{},
minLength: 3,
expectAdded: true,
},
{
name: "malformed quote fallback",
str: `"unclosed`, // strconv.Unquote fails; fallback strips first+last byte → "unclose"
typ: Assignment,
excludeTypes: map[Type]bool{},
minLength: 3,
expectAdded: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
p := &Parser{
minLength: tt.minLength,
excludeTypes: tt.excludeTypes,
strs: Strings{},
stringCount: make(map[string]int),
stringMutex: sync.RWMutex{},
stringCountMutex: sync.RWMutex{},
}
fset := token.NewFileSet()
v := &treeVisitor{
p: p,
fileSet: fset,
packageName: "example",
}
v.addString(tt.str, token.Pos(1), tt.typ)
// Check if the string was added
if tt.expectAdded {
if len(p.strs) != 1 {
t.Errorf("Expected string to be added, but it wasn't")
}
} else {
if len(p.strs) != 0 {
t.Errorf("Expected string not to be added, but it was")
}
}
})
}
}
func TestTreeVisitor_AddConst_UnicodeMinLength(t *testing.T) {
fset := token.NewFileSet()
p := &Parser{
minLength: 3,
matchConstant: true,
findDuplicates: true,
supportedTokens: []token.Token{token.STRING},
strs: Strings{},
consts: Constants{},
stringCount: make(map[string]int),
stringMutex: sync.RWMutex{},
stringCountMutex: sync.RWMutex{},
}
v := &treeVisitor{
p: p,
fileSet: fset,
packageName: "example",
}
v.addConst("TooShort", `"да"`, token.Pos(1))
v.addConst("LongEnough", `"привет"`, token.Pos(2))
if _, ok := p.consts["да"]; ok {
t.Error("did not expect short unicode const to be added")
}
if _, ok := p.consts["привет"]; !ok {
t.Error("expected unicode const to be added")
}
}
func TestTreeVisitor_AddString_NumberRange(t *testing.T) {
tests := []struct {
name string
str string
numberMin int
numberMax int
expectAdded bool
}{
{name: "below min", str: "50", numberMin: 100, numberMax: 200, expectAdded: false},
{name: "in range", str: "150", numberMin: 100, numberMax: 200, expectAdded: true},
{name: "above max", str: "250", numberMin: 100, numberMax: 200, expectAdded: false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
p := &Parser{
minLength: 1,
numberMin: tt.numberMin,
numberMax: tt.numberMax,
excludeTypes: map[Type]bool{},
strs: Strings{},
stringCount: make(map[string]int),
stringMutex: sync.RWMutex{},
stringCountMutex: sync.RWMutex{},
}
fset := token.NewFileSet()
v := &treeVisitor{
p: p,
fileSet: fset,
packageName: "example",
}
v.addString(tt.str, token.Pos(1), Assignment)
if tt.expectAdded {
if len(p.strs) != 1 {
t.Errorf("expected string to be added, but it wasn't")
}
} else {
if len(p.strs) != 0 {
t.Errorf("expected string not to be added, but it was")
}
}
})
}
}
func TestTreeVisitor_ShouldIgnoreCall(t *testing.T) {
tests := []struct {
name string
code string
ignoreFunctions map[string]struct{}
expectStrings int
}{
{
name: "slog.Info ignored",
code: `package example
import "log/slog"
func example() {
slog.Info("msg")
slog.Info("msg")
}`,
ignoreFunctions: map[string]struct{}{"slog.Info": {}},
expectStrings: 0,
},
{
name: "println not ignored when slog.Info is",
code: `package example
func example() {
println("msg")
println("msg")
}`,
ignoreFunctions: map[string]struct{}{"slog.Info": {}},
expectStrings: 1,
},
{
name: "empty ignore list ignores nothing",
code: `package example
import "log/slog"
func example() {
slog.Info("msg")
slog.Info("msg")
}`,
ignoreFunctions: nil,
expectStrings: 1,
},
{
name: "direct function call ignored",
code: `package example
func example() {
println("msg")
println("msg")
}`,
ignoreFunctions: map[string]struct{}{"println": {}},
expectStrings: 0,
},
{
name: "multiple ignored functions",
code: `package example
import "fmt"
func example() {
fmt.Println("keep")
fmt.Println("keep")
fmt.Errorf("skip")
fmt.Errorf("skip")
}`,
ignoreFunctions: map[string]struct{}{"fmt.Errorf": {}},
expectStrings: 1, // only "keep" via fmt.Println
},
}
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)
}
p := &Parser{
minLength: 3,
minOccurrences: 2,
supportedTokens: []token.Token{token.STRING},
excludeTypes: map[Type]bool{},
ignoreFunctions: tt.ignoreFunctions,
strs: Strings{},
consts: Constants{},
matchConstant: false,
stringCount: make(map[string]int),
stringMutex: sync.RWMutex{},
stringCountMutex: sync.RWMutex{},
}
v := &treeVisitor{
p: p,
fileSet: fset,
packageName: "example",
}
ast.Walk(v, f)
p.ProcessResults()
if len(p.strs) != tt.expectStrings {
t.Errorf("expected %d strings, got %d", tt.expectStrings, len(p.strs))
for str, positions := range p.strs {
t.Logf(" found: %q (%d occurrences)", str, len(positions))
}
}
})
}
}