forked from terraform-linters/tflint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_test.go
82 lines (76 loc) · 2.25 KB
/
json_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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package formatter
import (
"bytes"
"errors"
"fmt"
"testing"
hcl "github.com/hashicorp/hcl/v2"
"github.com/terraform-linters/tflint/tflint"
)
func Test_jsonPrint(t *testing.T) {
cases := []struct {
Name string
Issues tflint.Issues
Error error
Stdout string
}{
{
Name: "no issues",
Issues: tflint.Issues{},
Stdout: `{"issues":[],"errors":[]}`,
},
{
Name: "error",
Error: fmt.Errorf("Failed to work; %w", errors.New("I don't feel like working")),
Stdout: `{"issues":[],"errors":[{"message":"Failed to work; I don't feel like working","severity":"error"}]}`,
},
{
Name: "diagnostics",
Error: fmt.Errorf(
"babel fish confused; %w",
hcl.Diagnostics{
&hcl.Diagnostic{
Severity: hcl.DiagWarning,
Summary: "summary",
Detail: "detail",
Subject: &hcl.Range{
Filename: "filename",
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
End: hcl.Pos{Line: 5, Column: 1, Byte: 4},
},
},
},
),
Stdout: `{"issues":[],"errors":[{"summary":"summary","message":"detail","severity":"warning","range":{"filename":"filename","start":{"line":1,"column":1},"end":{"line":5,"column":1}}}]}`,
},
{
Name: "joined errors",
Error: errors.Join(
errors.New("an error occurred"),
errors.New("failed"),
hcl.Diagnostics{
&hcl.Diagnostic{
Severity: hcl.DiagWarning,
Summary: "summary",
Detail: "detail",
Subject: &hcl.Range{
Filename: "filename",
Start: hcl.Pos{Line: 1, Column: 1, Byte: 0},
End: hcl.Pos{Line: 5, Column: 1, Byte: 4},
},
},
},
),
Stdout: `{"issues":[],"errors":[{"message":"an error occurred","severity":"error"},{"message":"failed","severity":"error"},{"summary":"summary","message":"detail","severity":"warning","range":{"filename":"filename","start":{"line":1,"column":1},"end":{"line":5,"column":1}}}]}`,
},
}
for _, tc := range cases {
stdout := &bytes.Buffer{}
stderr := &bytes.Buffer{}
formatter := &Formatter{Stdout: stdout, Stderr: stderr, Format: "json"}
formatter.Print(tc.Issues, tc.Error, map[string][]byte{})
if stdout.String() != tc.Stdout {
t.Fatalf("Failed %s test: expected=%s, stdout=%s", tc.Name, tc.Stdout, stdout.String())
}
}
}