-
Notifications
You must be signed in to change notification settings - Fork 261
Expand file tree
/
Copy pathformatter_test.go
More file actions
132 lines (115 loc) · 3.06 KB
/
Copy pathformatter_test.go
File metadata and controls
132 lines (115 loc) · 3.06 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package formatter
import (
"flag"
"fmt"
"github.com/google/go-jsonnet/internal/testutils"
"io"
"io/ioutil"
"path/filepath"
"regexp"
"strings"
"testing"
)
var update = flag.Bool("update", false, "update .golden files")
// ErrorWriter encapsulates a writer and an error state indicating when at least
// one error has been written to the writer.
type ErrorWriter struct {
ErrorsFound bool
Writer io.Writer
}
type formatterTest struct {
name string
input string
output string
}
type ChangedGoldensList struct {
changedGoldens []string
}
func runTest(t *testing.T, test *formatterTest, changedGoldensList *ChangedGoldensList) {
read := func(file string) []byte {
bytz, err := ioutil.ReadFile(file)
if err != nil {
t.Fatalf("reading file: %s: %v", file, err)
}
return bytz
}
input := read(test.input)
var outBuilder strings.Builder
output, err := Format(test.name, string(input), Options{})
if err != nil {
errWriter := ErrorWriter{
Writer: &outBuilder,
ErrorsFound: false,
}
_, writeErr := errWriter.Writer.Write([]byte(err.Error()))
if writeErr != nil {
panic(writeErr)
}
} else {
outBuilder.Write([]byte(output))
}
outData := outBuilder.String()
if *update {
changed, err := testutils.UpdateGoldenFile(test.output, []byte(outData), 0666)
if err != nil {
t.Error(err)
}
if changed {
changedGoldensList.changedGoldens = append(changedGoldensList.changedGoldens, test.output)
}
} else {
golden, err := ioutil.ReadFile(test.output)
if err != nil {
t.Error(err)
return
}
if diff, hasDiff := testutils.CompareWithGolden(outData, golden); hasDiff {
if strings.HasPrefix(outData, string(golden)) ||
strings.HasPrefix(string(golden), outData) {
// The difference can be a trailing newline, invisible in text format.
fmt.Printf("actual:\n%v\n", []byte(outData))
fmt.Printf("expected:\n%v\n", golden)
}
t.Error(fmt.Errorf("golden file for %v has diff:\n%v", test.input, diff))
}
}
}
func TestFormatter(t *testing.T) {
flag.Parse()
var tests []*formatterTest
match, err := filepath.Glob("testdata/*.jsonnet")
if err != nil {
t.Fatal(err)
}
jsonnetExtRE := regexp.MustCompile(`\.jsonnet$`)
for _, input := range match {
// Skip escaped filenames.
if strings.ContainsRune(input, '%') {
continue
}
name := jsonnetExtRE.ReplaceAllString(input, "")
golden := jsonnetExtRE.ReplaceAllString(input, ".fmt.golden")
tests = append(tests, &formatterTest{
name: name,
input: input,
output: golden,
})
}
changedGoldensList := ChangedGoldensList{}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
runTest(t, test, &changedGoldensList)
})
}
if *update {
// Little hack: a failed test which prints update stats.
t.Run("Goldens Updated", func(t *testing.T) {
t.Logf("Expected failure, for printing update stats. Does not appear without `-update`.")
t.Logf("%d formatter goldens updated:\n", len(changedGoldensList.changedGoldens))
for _, golden := range changedGoldensList.changedGoldens {
t.Log(golden)
}
t.Fail()
})
}
}