| // Copyright 2016 The Chromium Authors | 
 | // | 
 | // Licensed under the Apache License, Version 2.0 (the "License"); | 
 | // you may not use this file except in compliance with the License. | 
 | // You may obtain a copy of the License at | 
 | // | 
 | //     https://www.apache.org/licenses/LICENSE-2.0 | 
 | // | 
 | // Unless required by applicable law or agreed to in writing, software | 
 | // distributed under the License is distributed on an "AS IS" BASIS, | 
 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
 | // See the License for the specific language governing permissions and | 
 | // limitations under the License. | 
 |  | 
 | #include "path_builder.h" | 
 |  | 
 | #include "cert_issuer_source_static.h" | 
 | #include "simple_path_builder_delegate.h" | 
 | #include "trust_store_in_memory.h" | 
 | #include "verify_certificate_chain_typed_unittest.h" | 
 |  | 
 | BSSL_NAMESPACE_BEGIN | 
 |  | 
 | namespace { | 
 |  | 
 | class PathBuilderTestDelegate { | 
 |  public: | 
 |   static void Verify(const VerifyCertChainTest &test, | 
 |                      const std::string &test_file_path) { | 
 |     SimplePathBuilderDelegate path_builder_delegate(1024, test.digest_policy); | 
 |     ASSERT_FALSE(test.chain.empty()); | 
 |  | 
 |     TrustStoreInMemory trust_store; | 
 |     trust_store.AddCertificate(test.chain.back(), test.last_cert_trust); | 
 |  | 
 |     CertIssuerSourceStatic intermediate_cert_issuer_source; | 
 |     for (size_t i = 1; i < test.chain.size(); ++i) { | 
 |       intermediate_cert_issuer_source.AddCert(test.chain[i]); | 
 |     } | 
 |  | 
 |     // First cert in the |chain| is the target. | 
 |     CertPathBuilder path_builder( | 
 |         test.chain.front(), &trust_store, &path_builder_delegate, test.time, | 
 |         test.key_purpose, test.initial_explicit_policy, | 
 |         test.user_initial_policy_set, test.initial_policy_mapping_inhibit, | 
 |         test.initial_any_policy_inhibit); | 
 |     path_builder.AddCertIssuerSource(&intermediate_cert_issuer_source); | 
 |  | 
 |     CertPathBuilder::Result result = path_builder.Run(); | 
 |     EXPECT_EQ(!test.HasHighSeverityErrors(), result.HasValidPath()); | 
 |     if (result.HasValidPath()) { | 
 |       VerifyUserConstrainedPolicySet( | 
 |           test.expected_user_constrained_policy_set, | 
 |           result.GetBestValidPath()->user_constrained_policy_set, | 
 |           test_file_path); | 
 |     } | 
 |   } | 
 | }; | 
 |  | 
 | }  // namespace | 
 |  | 
 | INSTANTIATE_TYPED_TEST_SUITE_P(PathBuilder, | 
 |                                VerifyCertificateChainSingleRootTest, | 
 |                                PathBuilderTestDelegate); | 
 |  | 
 | BSSL_NAMESPACE_END |