forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiff.go
116 lines (102 loc) · 3.26 KB
/
diff.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
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
// Copyright 2017 Istio Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package util
import (
"errors"
"io/ioutil"
"os"
"strings"
"testing"
"github.com/pmezard/go-difflib/difflib"
)
// Refresh controls whether to update the golden artifacts instead.
// It is set using the environment variable REFRESH_GOLDEN.
func Refresh() bool {
v, exists := os.LookupEnv("REFRESH_GOLDEN")
return exists && v == "true"
}
// Compare compares two byte slices. It returns an error with a
// contextual diff if they are not equal.
func Compare(content, golden []byte) error {
data := strings.TrimSpace(string(content))
expected := strings.TrimSpace(string(golden))
if data != expected {
diff := difflib.UnifiedDiff{
A: difflib.SplitLines(expected),
B: difflib.SplitLines(data),
Context: 2,
}
text, err := difflib.GetUnifiedDiffString(diff)
if err != nil {
return err
}
return errors.New(text)
}
return nil
}
// CompareYAML compares a file "x" against a golden file "x.golden"
func CompareYAML(filename string, t *testing.T) {
t.Helper()
content, err := ioutil.ReadFile(filename)
if err != nil {
t.Fatalf(err.Error())
}
goldenFile := filename + ".golden"
if Refresh() {
t.Logf("Refreshing golden file for %s", filename)
if err = ioutil.WriteFile(goldenFile, content, 0644); err != nil {
t.Errorf(err.Error())
}
}
golden, err := ioutil.ReadFile(goldenFile)
if err != nil {
t.Fatalf(err.Error())
}
if err = Compare(content, golden); err != nil {
t.Errorf("Failed validating artifact %s:\n%v", filename, err)
}
}
// CompareContent compares the content value against the golden file and fails the test if they differ
func CompareContent(content []byte, goldenFile string, t *testing.T) {
t.Helper()
golden := ReadGoldenFile(content, goldenFile, t)
CompareBytes(content, golden, goldenFile, t)
}
// ReadGoldenFile reads the content of the golden file and fails the test if an error is encountered
func ReadGoldenFile(content []byte, goldenFile string, t *testing.T) []byte {
t.Helper()
if Refresh() {
t.Logf("Refreshing golden file %s", goldenFile)
if err := ioutil.WriteFile(goldenFile, content, 0644); err != nil {
t.Errorf(err.Error())
}
}
return ReadFile(goldenFile, t)
}
// ReadFile reads the content of the given file or fails the test if an error is encountered.
func ReadFile(file string, t *testing.T) []byte {
t.Helper()
golden, err := ioutil.ReadFile(file)
if err != nil {
t.Fatalf(err.Error())
}
return golden
}
// CompareBytes compares the content value against the golden bytes and fails the test if they differ
func CompareBytes(content []byte, golden []byte, name string, t *testing.T) {
t.Helper()
if err := Compare(content, golden); err != nil {
t.Fatalf("Failed validating golden file %s:\n%v", name, err)
}
}