| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/cert/internal/verify_certificate_chain.h" | 5 #include "net/cert/internal/verify_certificate_chain.h" |
| 6 | 6 |
| 7 #include "net/cert/internal/signature_policy.h" | 7 #include "net/cert/internal/signature_policy.h" |
| 8 #include "net/cert/internal/trust_store.h" | 8 #include "net/cert/internal/trust_store.h" |
| 9 #include "net/cert/internal/verify_certificate_chain_typed_unittest.h" | 9 #include "net/cert/internal/verify_certificate_chain_typed_unittest.h" |
| 10 | 10 |
| 11 namespace net { | 11 namespace net { |
| 12 | 12 |
| 13 namespace { | 13 namespace { |
| 14 | 14 |
| 15 class VerifyCertificateChainDelegate { | 15 class VerifyCertificateChainDelegate { |
| 16 public: | 16 public: |
| 17 static void Verify(const VerifyCertChainTest& test, | 17 static void Verify(const VerifyCertChainTest& test, |
| 18 const std::string& test_file_path) { | 18 const std::string& test_file_path) { |
| 19 SimpleSignaturePolicy signature_policy(1024); | 19 SimpleSignaturePolicy signature_policy(1024); |
| 20 | 20 |
| 21 CertPathErrors errors; | 21 CertPathErrors errors; |
| 22 VerifyCertificateChain(test.chain, test.last_cert_trust, &signature_policy, | 22 VerifyCertificateChain(test.chain, test.last_cert_trust, &signature_policy, |
| 23 test.time, test.key_purpose, &errors); | 23 test.time, test.key_purpose, &errors); |
| 24 bool result = !errors.ContainsHighSeverityErrors(); | |
| 25 EXPECT_EQ(test.expected_result, result); | |
| 26 EXPECT_EQ(test.expected_errors, errors.ToDebugString(test.chain)) | 24 EXPECT_EQ(test.expected_errors, errors.ToDebugString(test.chain)) |
| 27 << "Test file: " << test_file_path; | 25 << "Test file: " << test_file_path; |
| 28 } | 26 } |
| 29 }; | 27 }; |
| 30 | 28 |
| 31 } // namespace | 29 } // namespace |
| 32 | 30 |
| 33 INSTANTIATE_TYPED_TEST_CASE_P(VerifyCertificateChain, | 31 INSTANTIATE_TYPED_TEST_CASE_P(VerifyCertificateChain, |
| 34 VerifyCertificateChainSingleRootTest, | 32 VerifyCertificateChainSingleRootTest, |
| 35 VerifyCertificateChainDelegate); | 33 VerifyCertificateChainDelegate); |
| 36 | 34 |
| 37 } // namespace net | 35 } // namespace net |
| OLD | NEW |