Chromium Code Reviews| Index: net/cert/internal/cert_issuer_source_static_unittest.cc |
| diff --git a/net/cert/internal/cert_issuer_source_static_unittest.cc b/net/cert/internal/cert_issuer_source_static_unittest.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..09dc01524fa4158aa5efe3c91e69f2aa8acb36c5 |
| --- /dev/null |
| +++ b/net/cert/internal/cert_issuer_source_static_unittest.cc |
| @@ -0,0 +1,141 @@ |
| +// Copyright 2016 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 "net/cert/internal/cert_issuer_source_static.h" |
| + |
| +#include "base/bind.h" |
| +#include "net/cert/internal/parsed_certificate.h" |
| +#include "net/cert/internal/test_helpers.h" |
| +#include "testing/gtest/include/gtest/gtest.h" |
| + |
| +namespace net { |
| + |
| +namespace { |
| + |
| +void NotCalled(CertIssuerSource::Request* req) { |
| + ADD_FAILURE() << "NotCalled was called"; |
| +} |
| + |
| +::testing::AssertionResult ReadTestPem(const std::string& file_name, |
| + const std::string& block_name, |
| + std::string* result) { |
| + const PemBlockMapping mappings[] = { |
| + {block_name.c_str(), result}, |
| + }; |
| + |
| + return ReadTestDataFromPemFile(file_name, mappings); |
| +} |
| + |
| +::testing::AssertionResult ReadTestCert( |
| + const std::string& file_name, |
| + scoped_refptr<ParsedCertificate>* result) { |
| + std::string der; |
| + ::testing::AssertionResult r = |
| + ReadTestPem("net/data/cert_issuer_source_static_unittest/" + file_name, |
| + "CERTIFICATE", &der); |
| + if (!r) |
| + return r; |
| + *result = ParsedCertificate::CreateFromCertificateCopy(der); |
| + if (!*result) |
| + return ::testing::AssertionFailure() << "CreateFromCertificateCopy failed"; |
| + return ::testing::AssertionSuccess(); |
| +} |
| + |
| +class CertIssuerSourceStaticTest : public ::testing::Test { |
| + public: |
| + void SetUp() override { |
| + ASSERT_TRUE(ReadTestCert("root.pem", &root_)); |
| + ASSERT_TRUE(ReadTestCert("i1_1.pem", &i1_1_)); |
| + ASSERT_TRUE(ReadTestCert("i1_2.pem", &i1_2_)); |
| + ASSERT_TRUE(ReadTestCert("i2.pem", &i2_)); |
| + ASSERT_TRUE(ReadTestCert("c1.pem", &c1_)); |
| + ASSERT_TRUE(ReadTestCert("c2.pem", &c2_)); |
| + ASSERT_TRUE(ReadTestCert("d.pem", &d_)); |
| + } |
| + |
| + void AddAllCerts(CertIssuerSourceStatic* source) { |
|
eroman
2016/06/01 23:30:23
optional: might read more easily as StaticCertIssu
mattm
2016/06/01 23:48:33
Reads easier, but I like the suffix since it sorts
|
| + source->AddCert(root_); |
| + source->AddCert(i1_1_); |
| + source->AddCert(i1_2_); |
| + source->AddCert(i2_); |
| + source->AddCert(c1_); |
| + source->AddCert(c2_); |
| + source->AddCert(d_); |
| + } |
| + |
| + protected: |
| + scoped_refptr<ParsedCertificate> root_; |
| + scoped_refptr<ParsedCertificate> i1_1_; |
| + scoped_refptr<ParsedCertificate> i1_2_; |
| + scoped_refptr<ParsedCertificate> i2_; |
| + scoped_refptr<ParsedCertificate> c1_; |
| + scoped_refptr<ParsedCertificate> c2_; |
| + scoped_refptr<ParsedCertificate> d_; |
| +}; |
| + |
| +TEST_F(CertIssuerSourceStaticTest, NoMatch) { |
| + CertIssuerSourceStatic source; |
| + source.AddCert(root_); |
| + |
| + std::vector<scoped_refptr<ParsedCertificate>> issuers; |
| + source.SyncGetIssuersOf(c1_.get(), &issuers); |
| + ASSERT_EQ(0U, issuers.size()); |
| +} |
| + |
| +TEST_F(CertIssuerSourceStaticTest, OneMatch) { |
| + CertIssuerSourceStatic source; |
| + AddAllCerts(&source); |
| + |
| + std::vector<scoped_refptr<ParsedCertificate>> issuers; |
| + source.SyncGetIssuersOf(i1_1_.get(), &issuers); |
| + ASSERT_EQ(1U, issuers.size()); |
| + EXPECT_TRUE(issuers[0] == root_); |
| + |
| + issuers.clear(); |
| + source.SyncGetIssuersOf(d_.get(), &issuers); |
| + ASSERT_EQ(1U, issuers.size()); |
| + EXPECT_TRUE(issuers[0] == i2_); |
| +} |
| + |
| +TEST_F(CertIssuerSourceStaticTest, MultipleMatches) { |
| + CertIssuerSourceStatic source; |
| + AddAllCerts(&source); |
| + |
| + std::vector<scoped_refptr<ParsedCertificate>> issuers; |
| + source.SyncGetIssuersOf(c1_.get(), &issuers); |
| + |
| + ASSERT_EQ(2U, issuers.size()); |
| + EXPECT_TRUE(std::find(issuers.begin(), issuers.end(), i1_1_) != |
| + issuers.end()); |
| + EXPECT_TRUE(std::find(issuers.begin(), issuers.end(), i1_2_) != |
| + issuers.end()); |
| +} |
| + |
| +// Searching for the issuer of a self-issued cert returns the same cert if it |
| +// happens to be in the CertIssuerSourceStatic. |
| +// Conceptually this makes sense, though probably not very useful in practice. |
| +// Doesn't hurt anything though. |
| +TEST_F(CertIssuerSourceStaticTest, SelfIssued) { |
| + CertIssuerSourceStatic source; |
| + AddAllCerts(&source); |
| + |
| + std::vector<scoped_refptr<ParsedCertificate>> issuers; |
| + source.SyncGetIssuersOf(root_.get(), &issuers); |
| + |
| + ASSERT_EQ(1U, issuers.size()); |
| + EXPECT_TRUE(issuers[0] == root_); |
| +} |
| + |
| +// CertIssuerSourceStatic never returns results asynchronously. |
| +TEST_F(CertIssuerSourceStaticTest, IsNotAsync) { |
| + CertIssuerSourceStatic source; |
| + source.AddCert(i1_1_); |
| + std::unique_ptr<CertIssuerSource::Request> request; |
| + source.AsyncGetIssuersOf(c1_.get(), base::Bind(&NotCalled), &request); |
|
eroman
2016/06/01 23:30:23
Note because there is no indication of whether an
mattm
2016/06/01 23:48:33
request being null is the indication that no async
eroman
2016/06/01 23:53:06
I missed the |request| test, per my earlier stupid
|
| + EXPECT_EQ(nullptr, request); |
| +} |
| + |
| +} // namespace |
| + |
| +} // namespace net |