mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-27 04:36:19 +08:00
crypto/x509: add CertPool.Equal
This commit is contained in:
parent
a61731e0e2
commit
bd9ba93ffe
@ -245,3 +245,16 @@ func (s *CertPool) Subjects() [][]byte {
|
|||||||
}
|
}
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Equal reports whether s and other are equal.
|
||||||
|
func (s *CertPool) Equal(other *CertPool) bool {
|
||||||
|
if s.systemPool != other.systemPool || len(s.haveSum) != len(other.haveSum) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
for h := range s.haveSum {
|
||||||
|
if !other.haveSum[h] {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
54
smx509/cert_pool_test.go
Normal file
54
smx509/cert_pool_test.go
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
package smx509
|
||||||
|
|
||||||
|
import "testing"
|
||||||
|
|
||||||
|
func TestCertPoolEqual(t *testing.T) {
|
||||||
|
a, b := NewCertPool(), NewCertPool()
|
||||||
|
if !a.Equal(b) {
|
||||||
|
t.Error("two empty pools not equal")
|
||||||
|
}
|
||||||
|
|
||||||
|
tc := &Certificate{Raw: []byte{1, 2, 3}, RawSubject: []byte{2}}
|
||||||
|
a.AddCert(tc)
|
||||||
|
if a.Equal(b) {
|
||||||
|
t.Error("empty pool equals non-empty pool")
|
||||||
|
}
|
||||||
|
|
||||||
|
b.AddCert(tc)
|
||||||
|
if !a.Equal(b) {
|
||||||
|
t.Error("two non-empty pools not equal")
|
||||||
|
}
|
||||||
|
|
||||||
|
otherTC := &Certificate{Raw: []byte{9, 8, 7}, RawSubject: []byte{8}}
|
||||||
|
a.AddCert(otherTC)
|
||||||
|
if a.Equal(b) {
|
||||||
|
t.Error("non-equal pools equal")
|
||||||
|
}
|
||||||
|
|
||||||
|
systemA, err := SystemCertPool()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to load system cert pool: %s", err)
|
||||||
|
}
|
||||||
|
systemB, err := SystemCertPool()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to load system cert pool: %s", err)
|
||||||
|
}
|
||||||
|
if !systemA.Equal(systemB) {
|
||||||
|
t.Error("two empty system pools not equal")
|
||||||
|
}
|
||||||
|
|
||||||
|
systemA.AddCert(tc)
|
||||||
|
if systemA.Equal(systemB) {
|
||||||
|
t.Error("empty system pool equals non-empty system pool")
|
||||||
|
}
|
||||||
|
|
||||||
|
systemB.AddCert(tc)
|
||||||
|
if !systemA.Equal(systemB) {
|
||||||
|
t.Error("two non-empty system pools not equal")
|
||||||
|
}
|
||||||
|
|
||||||
|
systemA.AddCert(otherTC)
|
||||||
|
if systemA.Equal(systemB) {
|
||||||
|
t.Error("non-equal system pools equal")
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user