forked from terraform-linters/tflint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckstyle_test.go
59 lines (53 loc) · 1.29 KB
/
checkstyle_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
package formatter
import (
"bytes"
"testing"
hcl "github.com/hashicorp/hcl/v2"
"github.com/terraform-linters/tflint/tflint"
)
func Test_checkstylePrint(t *testing.T) {
cases := []struct {
Name string
Issues tflint.Issues
Error error
Stdout string
}{
{
Name: "no issues",
Issues: tflint.Issues{},
Stdout: `<?xml version="1.0" encoding="UTF-8"?>
<checkstyle></checkstyle>`,
},
{
Name: "issues",
Issues: tflint.Issues{
{
Rule: &testRule{},
Message: "test",
Range: hcl.Range{
Filename: "test.tf",
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
End: hcl.Pos{Line: 1, Column: 4, Byte: 3},
},
},
},
Stdout: `<?xml version="1.0" encoding="UTF-8"?>
<checkstyle>
<file name="test.tf">
<error source="test_rule" line="1" column="1" severity="error" message="test" link="https://github.com" rule="test_rule"></error>
</file>
</checkstyle>`,
},
}
for _, tc := range cases {
t.Run(tc.Name, func(t *testing.T) {
stdout := &bytes.Buffer{}
stderr := &bytes.Buffer{}
formatter := &Formatter{Stdout: stdout, Stderr: stderr}
formatter.checkstylePrint(tc.Issues, tc.Error, map[string][]byte{})
if stdout.String() != tc.Stdout {
t.Fatalf("expected=%s, stdout=%s", tc.Stdout, stdout.String())
}
})
}
}