-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathequal_method.go
65 lines (61 loc) · 1.66 KB
/
equal_method.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
package assertions
import "reflect"
type equalityMethodSpecification struct{}
func (this equalityMethodSpecification) assertable(a, b any) bool {
if !bothAreSameType(a, b) {
return false
}
if !typeHasEqualMethod(a) {
return false
}
if !equalMethodReceivesSameTypeForComparison(a) {
return false
}
if !equalMethodReturnsBool(a) {
return false
}
return true
}
func bothAreSameType(a, b any) bool {
aType := reflect.TypeOf(a)
if aType == nil {
return false
}
if aType.Kind() == reflect.Ptr {
aType = aType.Elem()
}
bType := reflect.TypeOf(b)
return aType == bType
}
func typeHasEqualMethod(a any) bool {
aInstance := reflect.ValueOf(a)
equalMethod := aInstance.MethodByName("Equal")
return equalMethod != reflect.Value{}
}
func equalMethodReceivesSameTypeForComparison(a any) bool {
aType := reflect.TypeOf(a)
if aType.Kind() == reflect.Ptr {
aType = aType.Elem()
}
aInstance := reflect.ValueOf(a)
equalMethod := aInstance.MethodByName("Equal")
signature := equalMethod.Type()
return signature.NumIn() == 1 && signature.In(0) == aType
}
func equalMethodReturnsBool(a any) bool {
aInstance := reflect.ValueOf(a)
equalMethod := aInstance.MethodByName("Equal")
signature := equalMethod.Type()
return signature.NumOut() == 1 && signature.Out(0) == reflect.TypeOf(true)
}
func (this equalityMethodSpecification) passes(A, B any) bool {
a := reflect.ValueOf(A)
b := reflect.ValueOf(B)
return areEqual(a, b) && areEqual(b, a)
}
func areEqual(receiver reflect.Value, argument reflect.Value) bool {
equalMethod := receiver.MethodByName("Equal")
argumentList := []reflect.Value{argument}
result := equalMethod.Call(argumentList)
return result[0].Bool()
}