2015-01-05 15:29:10 +09:00
|
|
|
// Copyright 2013 The Go Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
2013-12-18 10:57:07 -05:00
|
|
|
package x509
|
|
|
|
|
|
2015-02-27 09:08:35 -05:00
|
|
|
import (
|
|
|
|
|
"runtime"
|
|
|
|
|
"testing"
|
|
|
|
|
)
|
2013-12-18 10:57:07 -05:00
|
|
|
|
|
|
|
|
func TestSystemRoots(t *testing.T) {
|
2015-04-11 19:30:37 -04:00
|
|
|
switch runtime.GOARCH {
|
|
|
|
|
case "arm", "arm64":
|
|
|
|
|
t.Skipf("skipping on %s/%s, no system root", runtime.GOOS, runtime.GOARCH)
|
2015-02-27 09:08:35 -05:00
|
|
|
}
|
|
|
|
|
|
2013-12-18 10:57:07 -05:00
|
|
|
sysRoots := systemRootsPool() // actual system roots
|
|
|
|
|
execRoots, err := execSecurityRoots() // non-cgo roots
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("failed to read system roots: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, tt := range []*CertPool{sysRoots, execRoots} {
|
|
|
|
|
if tt == nil {
|
|
|
|
|
t.Fatal("no system roots")
|
|
|
|
|
}
|
|
|
|
|
// On Mavericks, there are 212 bundled certs; require only
|
|
|
|
|
// 150 here, since this is just a sanity check, and the
|
|
|
|
|
// exact number will vary over time.
|
|
|
|
|
if want, have := 150, len(tt.certs); have < want {
|
|
|
|
|
t.Fatalf("want at least %d system roots, have %d", want, have)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check that the two cert pools are roughly the same;
|
|
|
|
|
// |A∩B| > max(|A|, |B|) / 2 should be a reasonably robust check.
|
|
|
|
|
|
|
|
|
|
isect := make(map[string]bool, len(sysRoots.certs))
|
|
|
|
|
for _, c := range sysRoots.certs {
|
|
|
|
|
isect[string(c.Raw)] = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
have := 0
|
|
|
|
|
for _, c := range execRoots.certs {
|
|
|
|
|
if isect[string(c.Raw)] {
|
|
|
|
|
have++
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var want int
|
|
|
|
|
if nsys, nexec := len(sysRoots.certs), len(execRoots.certs); nsys > nexec {
|
|
|
|
|
want = nsys / 2
|
|
|
|
|
} else {
|
|
|
|
|
want = nexec / 2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if have < want {
|
2016-02-24 11:55:20 +01:00
|
|
|
t.Errorf("insufficient overlap between cgo and non-cgo roots; want at least %d, have %d", want, have)
|
2013-12-18 10:57:07 -05:00
|
|
|
}
|
|
|
|
|
}
|