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
|
package testing
import (
"bytes"
"encoding/json"
"fmt"
"sort"
"strings"
"github.com/aws/smithy-go/testing/xml"
"github.com/google/go-cmp/cmp"
)
// JSONEqual compares two JSON documents and identifies if the documents contain
// the same values. Returns an error if the two documents are not equal.
func JSONEqual(expectBytes, actualBytes []byte) error {
var expect interface{}
if err := json.Unmarshal(expectBytes, &expect); err != nil {
return fmt.Errorf("failed to unmarshal expected bytes, %v", err)
}
var actual interface{}
if err := json.Unmarshal(actualBytes, &actual); err != nil {
return fmt.Errorf("failed to unmarshal actual bytes, %v", err)
}
if diff := cmp.Diff(expect, actual); len(diff) != 0 {
return fmt.Errorf("JSON mismatch (-expect +actual):\n%s", diff)
}
return nil
}
// AssertJSONEqual compares two JSON documents and identifies if the documents
// contain the same values. Emits a testing error, and returns false if the
// documents are not equal.
func AssertJSONEqual(t T, expect, actual []byte) bool {
t.Helper()
if err := JSONEqual(expect, actual); err != nil {
t.Errorf("expect JSON documents to be equal, %v", err)
return false
}
return true
}
// XMLEqual asserts two xml documents by sorting the XML and comparing the strings
// It returns an error in case of mismatch or in case of malformed xml found while sorting.
// In case of mismatched XML, the error string will contain the diff between the two XMLs.
func XMLEqual(expectBytes, actualBytes []byte) error {
actualString, err := xml.SortXML(bytes.NewBuffer(actualBytes), true)
if err != nil {
return err
}
expectedString, err := xml.SortXML(bytes.NewBuffer(expectBytes), true)
if err != nil {
return err
}
if diff := cmp.Diff(actualString, expectedString); len(diff) != 0 {
return fmt.Errorf("XML mismatch (-expect +actual):\n%s", diff)
}
return nil
}
// AssertXMLEqual compares two XML documents and identifies if the documents
// contain the same values. Emits a testing error, and returns false if the
// documents are not equal.
func AssertXMLEqual(t T, expect, actual []byte) bool {
t.Helper()
if err := XMLEqual(expect, actual); err != nil {
t.Errorf("expect XML documents to be equal, %v", err)
return false
}
return true
}
// URLFormEqual compares two URLForm documents and identifies if the documents
// contain the same values. Returns an error if the two documents are not
// equal.
func URLFormEqual(expectBytes, actualBytes []byte) error {
if diff := cmp.Diff(parseFormBody(expectBytes), parseFormBody(actualBytes)); len(diff) != 0 {
return fmt.Errorf("Query mismatch (-expect +actual):\n%s", diff)
}
return nil
}
func parseFormBody(bytes []byte) []QueryItem {
str := string(bytes)
// Strip out any whitespace. Significant whitespace will be encoded, and so
// won't be stripped.
str = strings.Join(strings.Fields(str), "")
parsed := ParseRawQuery(str)
sort.SliceStable(parsed, func(i, j int) bool {
return parsed[i].Key < parsed[j].Key
})
return parsed
}
// AssertURLFormEqual compares two URLForm documents and identifies if the
// documents contain the same values. Emits a testing error, and returns false
// if the documents are not equal.
func AssertURLFormEqual(t T, expect, actual []byte) bool {
t.Helper()
if err := URLFormEqual(expect, actual); err != nil {
t.Errorf("expect URLForm documents to be equal, %v", err)
return false
}
return true
}
|