generated from terraform-linters/tflint-ruleset-template
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathaws_api_gateway_model_invalid_name_test.go
57 lines (50 loc) · 1.15 KB
/
aws_api_gateway_model_invalid_name_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 rules
import (
"testing"
hcl "github.com/hashicorp/hcl/v2"
"github.com/terraform-linters/tflint-plugin-sdk/helper"
)
func Test_AwsAPIGatewayModelInvalidName(t *testing.T) {
cases := []struct {
Name string
Content string
Expected helper.Issues
}{
{
Name: "underscore",
Content: `
resource "aws_api_gateway_model" "demo" {
name = "demo_model"
}
`,
Expected: helper.Issues{
{
Rule: NewAwsAPIGatewayModelInvalidNameRule(),
Message: `demo_model does not match valid pattern ^[a-zA-Z0-9]+$`,
Range: hcl.Range{
Filename: "resource.tf",
Start: hcl.Pos{Line: 3, Column: 10},
End: hcl.Pos{Line: 3, Column: 22},
},
},
},
},
{
Name: "alphanumeric",
Content: `
resource "aws_api_gateway_model" "demo" {
name = "user"
}
`,
Expected: helper.Issues{},
},
}
rule := NewAwsAPIGatewayModelInvalidNameRule()
for _, tc := range cases {
runner := helper.TestRunner(t, map[string]string{"resource.tf": tc.Content})
if err := rule.Check(runner); err != nil {
t.Fatalf("Unexpected error occurred: %s", err)
}
helper.AssertIssues(t, tc.Expected, runner.Issues)
}
}