-
Notifications
You must be signed in to change notification settings - Fork 25
/
S022.go
56 lines (44 loc) · 1.54 KB
/
S022.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
// Package S022 defines an Analyzer that checks for
// Schema of TypeMap with invalid Elem of *schema.Resource
package S022
import (
"github.com/bflad/tfproviderlint/helper/terraformtype/helper/schema"
"github.com/bflad/tfproviderlint/passes/commentignore"
"github.com/bflad/tfproviderlint/passes/helper/schema/schemainfo"
"golang.org/x/tools/go/analysis"
)
const Doc = `check for Schema of TypeMap with invalid Elem of *schema.Resource
The S022 analyzer reports cases of schema that declare Elem of *schema.Resource
with TypeMap, which has undefined behavior. Only TypeList and TypeSet can be
used for configuration block attributes.`
const analyzerName = "S022"
var Analyzer = &analysis.Analyzer{
Name: analyzerName,
Doc: Doc,
Requires: []*analysis.Analyzer{
schemainfo.Analyzer,
commentignore.Analyzer,
},
Run: run,
}
func run(pass *analysis.Pass) (interface{}, error) {
ignorer := pass.ResultOf[commentignore.Analyzer].(*commentignore.Ignorer)
schemaInfos := pass.ResultOf[schemainfo.Analyzer].([]*schema.SchemaInfo)
for _, schemaInfo := range schemaInfos {
if ignorer.ShouldIgnore(analyzerName, schemaInfo.AstCompositeLit) {
continue
}
if !schemaInfo.IsType(schema.SchemaValueTypeMap) {
continue
}
if !schemaInfo.DeclaresField(schema.SchemaFieldElem) {
continue
}
elem := schemaInfo.Fields[schema.SchemaFieldElem].Value
if !schema.IsTypeResource(pass.TypesInfo.TypeOf(elem)) {
continue
}
pass.Reportf(elem.Pos(), "%s: schema of TypeMap should not use Elem of *schema.Resource", analyzerName)
}
return nil, nil
}