-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathAT004.go
59 lines (47 loc) · 1.4 KB
/
AT004.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
// Package AT004 defines an Analyzer that checks for
// TestStep Config containing provider configuration
package AT004
import (
"go/ast"
"go/token"
"strings"
"github.com/bflad/tfproviderlint/passes/commentignore"
"golang.org/x/tools/go/analysis"
"golang.org/x/tools/go/analysis/passes/inspect"
"golang.org/x/tools/go/ast/inspector"
)
const Doc = `check for TestStep Config containing provider configuration
The AT004 analyzer reports likely incorrect uses of TestStep
Config which define a provider configuration. Provider configurations should
be handled outside individual test configurations (e.g. environment variables).`
const analyzerName = "AT004"
var Analyzer = &analysis.Analyzer{
Name: analyzerName,
Doc: Doc,
Requires: []*analysis.Analyzer{
commentignore.Analyzer,
inspect.Analyzer,
},
Run: run,
}
func run(pass *analysis.Pass) (interface{}, error) {
ignorer := pass.ResultOf[commentignore.Analyzer].(*commentignore.Ignorer)
inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
nodeFilter := []ast.Node{
(*ast.BasicLit)(nil),
}
inspect.Preorder(nodeFilter, func(n ast.Node) {
x := n.(*ast.BasicLit)
if ignorer.ShouldIgnore(analyzerName, x) {
return
}
if x.Kind != token.STRING {
return
}
if !strings.Contains(x.Value, `provider "`) {
return
}
pass.Reportf(x.ValuePos, "%s: provider declaration should be omitted", analyzerName)
})
return nil, nil
}