diff options
author | Tianon Gravi <admwiggin@gmail.com> | 2015-01-15 11:54:00 -0700 |
---|---|---|
committer | Tianon Gravi <admwiggin@gmail.com> | 2015-01-15 11:54:00 -0700 |
commit | f154da9e12608589e8d5f0508f908a0c3e88a1bb (patch) | |
tree | f8255d51e10c6f1e0ed69702200b966c9556a431 /src/pkg/crypto/x509/root_darwin_test.go | |
parent | 8d8329ed5dfb9622c82a9fbec6fd99a580f9c9f6 (diff) | |
download | golang-upstream/1.4.tar.gz |
Imported Upstream version 1.4upstream/1.4
Diffstat (limited to 'src/pkg/crypto/x509/root_darwin_test.go')
-rw-r--r-- | src/pkg/crypto/x509/root_darwin_test.go | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/src/pkg/crypto/x509/root_darwin_test.go b/src/pkg/crypto/x509/root_darwin_test.go deleted file mode 100644 index 87ea4e344..000000000 --- a/src/pkg/crypto/x509/root_darwin_test.go +++ /dev/null @@ -1,50 +0,0 @@ -package x509 - -import "testing" - -func TestSystemRoots(t *testing.T) { - 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 { - t.Errorf("insufficent overlap between cgo and non-cgo roots; want at least %d, have %d", want, have) - } -} |