aboutsummaryrefslogtreecommitdiff
path: root/assert/equal.go
blob: 122520bac400ae27f1815d5f494c5ba70272b144 (plain)
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// SPDX-FileCopyrightText: 2026 Stefan Majewsky <majewsky@gmx.net>
// SPDX-License-Identifier: Apache-2.0

package assert

import (
	"fmt"
	"reflect"
	"slices"

	"go.xyrillian.de/gg/internal/path"
)

// Equal checks whether both supplied values are equal according to the rules of [reflect.DeepEqual].
//
// If there is a difference within a structured data type,
// this function will try to be smart about reporting only the most specific pieces that differ,
// but this is done on a best-effort basis.
// The error messages produced by this assertion should be expected to change between releases
// as additional effort is expended to establish a new level of best effort.
func Equal[V any](t TestingTB, actual, expected V) bool {
	if reflect.DeepEqual(actual, expected) {
		return true
	}
	t.Helper()

	// NOTE: consider the warning in the docstring of [path.Path]
	p := path.NewPath()
	result := findInequalities(p, reflect.ValueOf(actual), reflect.ValueOf(expected))

	// serialize results into strings first in order to print in sorted order (for deterministic behavior in this package's own tests)
	errors := make([]string, len(result))
	for idx, ineq := range result {
		if ineq.Pointer == "actual" {
			errors[idx] = fmt.Sprintf("expected %s, but got %s", ineq.Expected, ineq.Actual)
		} else {
			errors[idx] = fmt.Sprintf("at %s: expected %s, but got %s", ineq.Pointer, ineq.Expected, ineq.Actual)
		}
	}
	slices.Sort(errors)
	for _, err := range errors {
		t.Error(err)
	}

	return false
}

// NOTE: Several notes on the implementation of Equal().
//
// - All findInequalities...() functions assume that `actual` and `expected` are definitely unequal,
//   and so may only be called if reflect.Equal() on these same arguments has returned false.
//
// - All findInequalities...() functions further assume that `actual.Type() == expected.Type()`.
//   This is ensured at the API boundary through the type signature of assert.Equal(),
//   and then only needs to be re-established when recursing into values of kind Interface.
//
// - When nonempty diffs are generated, running a full DeepEqual() at each level is indeed extremely inefficient.
//   However, reflect.DeepEqual() is more likely to handle bizarre corner cases
//   and new type system features better than our implementation,
//   so we rely on it as a source of ground truth.
//
//   Furthermore, in the vastly more important case of an empty diff (i.e. a passing test),
//   reflect.DeepEqual() is likely to be more efficient than what we do because of
//   having both been around and scrutinized for much longer than our implementation,
//   so doing it first will usually be faster.

type inequality struct {
	Pointer  string
	Actual   string
	Expected string
}

func formatValue(v reflect.Value) string {
	return fmt.Sprintf("%#v", v)
}

func findInequalities(p path.Path, actual, expected reflect.Value) (result []inequality) {
	// try to recurse into structured type to find the specific location of the inequality
	// (thus producing a more succinct error message esp. with large and deeply nested structures)
	switch actual.Kind() { //nolint:exhaustive
	case reflect.Array, reflect.Slice:
		result = findInequalitiesInArrayOrSlice(p, actual, expected)
	case reflect.Map:
		result = findInequalitiesInMap(p, actual, expected)
	case reflect.Struct:
		result = findInequalitiesInStruct(p, actual, expected)
	case reflect.Pointer:
		result = findInequalitiesInPointer(p, actual, expected)
	case reflect.Interface:
		if !actual.IsNil() && !expected.IsNil() {
			// can only recurse if the invariant of this function is upheld: both sides must be of equal types
			actualElem := actual.Elem()
			expectedElem := expected.Elem()
			if actualElem.Type() == expectedElem.Type() {
				subpath := append(p, path.TypeCastElement(fmt.Sprintf("%T", actualElem.Interface())))
				result = findInequalities(subpath, actualElem, expectedElem)
			}
		}
	}

	// if we do not have a recursion method for the type in question,
	// or if our own implementation somehow fails to find the inequality,
	// the safe fallback is to report the entire value as unequal
	if len(result) == 0 {
		return []inequality{{p.AsGoExpression("actual"), formatValue(actual), formatValue(expected)}}
	}
	return result
}

func findInequalitiesInArrayOrSlice(p path.Path, actual, expected reflect.Value) (result []inequality) {
	// recurse into all elements
	for idx := range max(actual.Len(), expected.Len()) {
		subpath := append(p, path.IndexElement(idx))
		switch {
		case idx >= actual.Len():
			result = append(result, inequality{
				Pointer:  subpath.AsGoExpression("actual"),
				Actual:   "<missing>",
				Expected: formatValue(expected.Index(idx)),
			})
		case idx >= expected.Len():
			result = append(result, inequality{
				Pointer:  subpath.AsGoExpression("actual"),
				Actual:   formatValue(actual.Index(idx)),
				Expected: "<missing>",
			})
		default:
			actualElem := actual.Index(idx)
			expectedElem := expected.Index(idx)
			if !reflect.DeepEqual(actualElem.Interface(), expectedElem.Interface()) {
				result = append(result, findInequalities(subpath, actualElem, expectedElem)...)
			}
		}
	}

	// if multiple elements differ, check if reporting the whole slice as different is more compact
	// (this helps with slices of simple types, e.g. []int,
	// but will not be used for large records where only a single field differs in all of them)
	if len(result) > 4 {
		overallTextLength := 0
		for _, ineq := range result {
			overallTextLength += len(ineq.Pointer) + len(ineq.Actual) + len(ineq.Expected)
		}
		ineq := inequality{
			Pointer:  p.AsGoExpression("actual"),
			Actual:   formatValue(actual),
			Expected: formatValue(expected),
		}
		if len(ineq.Pointer)+len(ineq.Actual)+len(ineq.Expected) < overallTextLength {
			return []inequality{ineq}
		}
	}

	return result
}

func findInequalitiesInMap(p path.Path, actual, expected reflect.Value) (result []inequality) {
	// recurse into all keys of `actual`
	iter := actual.MapRange()
	for iter.Next() {
		key, actualElem := iter.Key(), iter.Value()
		subpath := append(p, path.MapKeyElement(key.Interface()))
		expectedElem := expected.MapIndex(key)
		if expectedElem.IsValid() {
			if !reflect.DeepEqual(actualElem.Interface(), expectedElem.Interface()) {
				result = append(result, findInequalities(subpath, actualElem, expectedElem)...)
			}
		} else {
			result = append(result, inequality{
				Pointer:  subpath.AsGoExpression("actual"),
				Actual:   formatValue(actualElem),
				Expected: "<missing>",
			})
		}
	}

	// recurse into all keys of `expected` (but consider only those missing in `actual` to avoid duplicate reports)
	iter = expected.MapRange()
	for iter.Next() {
		key, expectedElem := iter.Key(), iter.Value()
		subpath := append(p, path.MapKeyElement(key.Interface()))
		if !actual.MapIndex(key).IsValid() {
			result = append(result, inequality{
				Pointer:  subpath.AsGoExpression("actual"),
				Actual:   "<missing>",
				Expected: formatValue(expectedElem),
			})
		}
	}

	return result
}

func findInequalitiesInStruct(p path.Path, actual, expected reflect.Value) (result []inequality) {
	// recurse into all addressable fields
	//
	// If only values in unexported fields differ, this function will return nothing,
	// but that's fine because of the fallback behavior in findInequalities().
	for field := range actual.Type().Fields() {
		if !field.IsExported() {
			continue
		}
		subpath := append(p, path.KeyElement(field.Name))
		actualElem := actual.FieldByIndex(field.Index)
		expectedElem := expected.FieldByIndex(field.Index)
		if !reflect.DeepEqual(actualElem.Interface(), expectedElem.Interface()) {
			result = append(result, findInequalities(subpath, actualElem, expectedElem)...)
		}
	}
	return result
}

func findInequalitiesInPointer(p path.Path, actual, expected reflect.Value) []inequality {
	if actual.IsNil() {
		if expected.IsNil() {
			// defense in depth: should not be reachable -> use the fallback behavior in findInequalities()
			return nil
		} else {
			return []inequality{{
				Pointer:  p.AsGoExpression("actual"),
				Actual:   "nil",
				Expected: "pointer to " + formatValue(expected.Elem()),
			}}
		}
	} else {
		if expected.IsNil() {
			return []inequality{{
				Pointer:  p.AsGoExpression("actual"),
				Actual:   "pointer to " + formatValue(actual.Elem()),
				Expected: "nil",
			}}
		} else {
			subpath := append(p, path.DereferenceElement())
			return findInequalities(subpath, actual.Elem(), expected.Elem())
		}
	}
}