mirror of https://github.com/status-im/consul.git
testing: slightly better comparison for x509.CertPool
This commit is contained in:
parent
f5afed82c8
commit
0624c75c56
|
@ -7,7 +7,6 @@ import (
|
|||
"testing"
|
||||
|
||||
"github.com/google/go-cmp/cmp"
|
||||
"github.com/google/go-cmp/cmp/cmpopts"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/hashicorp/consul/agent"
|
||||
|
@ -295,11 +294,11 @@ func requireEqualTLSConfig(t *testing.T, expect, got *tls.Config) {
|
|||
require.Equal(expectLeaf, gotLeaf)
|
||||
}
|
||||
|
||||
// lazyCerts has a func field which can't be compared.
|
||||
var cmpCertPool = cmp.Options{
|
||||
cmpopts.IgnoreFields(x509.CertPool{}, "lazyCerts"),
|
||||
cmp.AllowUnexported(x509.CertPool{}),
|
||||
}
|
||||
// cmpCertPool is a custom comparison for x509.CertPool, because CertPool.lazyCerts
|
||||
// has a func field which can't be compared.
|
||||
var cmpCertPool = cmp.Comparer(func(x, y *x509.CertPool) bool {
|
||||
return cmp.Equal(x.Subjects(), y.Subjects())
|
||||
})
|
||||
|
||||
func assertDeepEqual(t *testing.T, x, y interface{}, opts ...cmp.Option) {
|
||||
t.Helper()
|
||||
|
|
Loading…
Reference in New Issue