-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathvisitor_test.go
247 lines (230 loc) · 5.73 KB
/
visitor_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
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: "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{},
},
}
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_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: "raw string literal",
str: "`test`",
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")
}
}
})
}
}