-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcopyloopvar_test.go
57 lines (47 loc) · 1 KB
/
copyloopvar_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
package copyloopvar
import (
"testing"
"golang.org/x/tools/go/analysis/analysistest"
)
func TestAnalyzer(t *testing.T) {
testCases := []struct {
desc string
dir string
options map[string]string
}{
{
desc: "basic",
dir: "basic",
},
{
desc: "check-alias",
dir: "checkalias",
options: map[string]string{
"check-alias": "true",
},
},
}
for _, test := range testCases {
t.Run(test.desc, func(t *testing.T) {
analyzer := NewAnalyzer()
for k, v := range test.options {
if err := analyzer.Flags.Set(k, v); err != nil {
t.Error(err)
}
}
results := analysistest.RunWithSuggestedFixes(t, analysistest.TestData(), analyzer, test.dir)
hasSuggestedFixes(t, results)
})
}
}
func hasSuggestedFixes(t *testing.T, results []*analysistest.Result) {
t.Helper()
for _, result := range results {
for _, diagnostic := range result.Diagnostics {
if len(diagnostic.SuggestedFixes) > 0 {
return
}
}
}
t.Errorf("no suggested fixes found")
}