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
66
67
68
69
70
71
72
73
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/net/x509_certificate_model.h"
#include "base/file_path.h"
#include "base/file_util.h"
#include "base/path_service.h"
#include "net/base/cert_database.h"
#include "net/base/cert_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
TEST(X509CertificateModelTest, GetTypeCA) {
scoped_refptr<net::X509Certificate> cert(
net::ImportCertFromFile(net::GetTestCertsDirectory(),
"root_ca_cert.crt"));
ASSERT_TRUE(cert.get());
#if defined(USE_OPENSSL)
// Remove this when OpenSSL build implements the necessary functions.
EXPECT_EQ(net::UNKNOWN_CERT,
x509_certificate_model::GetType(cert->os_cert_handle()));
#else
EXPECT_EQ(net::CA_CERT,
x509_certificate_model::GetType(cert->os_cert_handle()));
// Test that explicitly distrusted CA certs are still returned as CA_CERT
// type. See http://crbug.com/96654.
net::CertDatabase cert_db;
// TODO(mattm): This depends on the implementation details of SetCertTrust
// where calling with SERVER_CERT and UNTRUSTED causes a cert to be explicitly
// distrusted (trust set to CERTDB_TERMINAL_RECORD). See
// http://crbug.com/116411. When I fix that bug I'll also add a way to set
// this directly.
EXPECT_TRUE(cert_db.SetCertTrust(cert, net::SERVER_CERT,
net::CertDatabase::UNTRUSTED));
EXPECT_EQ(net::CA_CERT,
x509_certificate_model::GetType(cert->os_cert_handle()));
#endif
}
TEST(X509CertificateModelTest, GetTypeServer) {
scoped_refptr<net::X509Certificate> cert(
net::ImportCertFromFile(net::GetTestCertsDirectory(),
"google.single.der"));
ASSERT_TRUE(cert.get());
#if defined(USE_OPENSSL)
// Remove this when OpenSSL build implements the necessary functions.
EXPECT_EQ(net::UNKNOWN_CERT,
x509_certificate_model::GetType(cert->os_cert_handle()));
#else
// TODO(mattm): make GetCertType smarter so we can tell server certs even if
// they have no trust bits set.
EXPECT_EQ(net::UNKNOWN_CERT,
x509_certificate_model::GetType(cert->os_cert_handle()));
net::CertDatabase cert_db;
EXPECT_TRUE(cert_db.SetCertTrust(cert, net::SERVER_CERT,
net::CertDatabase::TRUSTED_SSL));
EXPECT_EQ(net::SERVER_CERT,
x509_certificate_model::GetType(cert->os_cert_handle()));
EXPECT_TRUE(cert_db.SetCertTrust(cert, net::SERVER_CERT,
net::CertDatabase::UNTRUSTED));
EXPECT_EQ(net::SERVER_CERT,
x509_certificate_model::GetType(cert->os_cert_handle()));
#endif
}
|