| 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 #ifndef NET_CERT_INTERNAL_TEST_HELPERS_H_ | 5 #ifndef NET_CERT_INTERNAL_TEST_HELPERS_H_ |
| 6 #define NET_CERT_INTERNAL_TEST_HELPERS_H_ | 6 #define NET_CERT_INTERNAL_TEST_HELPERS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <ostream> | 10 #include <ostream> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "net/cert/internal/parsed_certificate.h" |
| 15 #include "net/cert/internal/trust_store.h" |
| 14 #include "net/der/input.h" | 16 #include "net/der/input.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 18 |
| 17 namespace net { | 19 namespace net { |
| 18 | 20 |
| 19 namespace der { | 21 namespace der { |
| 20 | 22 |
| 21 // This function is used by GTest to support EXPECT_EQ() for der::Input. | 23 // This function is used by GTest to support EXPECT_EQ() for der::Input. |
| 22 void PrintTo(const Input& data, ::std::ostream* os); | 24 void PrintTo(const Input& data, ::std::ostream* os); |
| 23 | 25 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 // This is the same as the variant above, however it uses template magic so an | 69 // This is the same as the variant above, however it uses template magic so an |
| 68 // mappings array can be passed in directly (and the correct length is | 70 // mappings array can be passed in directly (and the correct length is |
| 69 // inferred). | 71 // inferred). |
| 70 template <size_t N> | 72 template <size_t N> |
| 71 ::testing::AssertionResult ReadTestDataFromPemFile( | 73 ::testing::AssertionResult ReadTestDataFromPemFile( |
| 72 const std::string& file_path_ascii, | 74 const std::string& file_path_ascii, |
| 73 const PemBlockMapping(&mappings)[N]) { | 75 const PemBlockMapping(&mappings)[N]) { |
| 74 return ReadTestDataFromPemFile(file_path_ascii, mappings, N); | 76 return ReadTestDataFromPemFile(file_path_ascii, mappings, N); |
| 75 } | 77 } |
| 76 | 78 |
| 79 // Reads a test case from |file_name|. Test cases are comprised of a |
| 80 // certificate chain, trust anchor, a timestamp to validate at, and the |
| 81 // expected result of verification. |
| 82 void ReadVerifyCertChainTestFromFile(const std::string& file_name, |
| 83 ParsedCertificateList* chain, |
| 84 scoped_refptr<TrustAnchor>* trust_anchor, |
| 85 der::GeneralizedTime* time, |
| 86 bool* verify_result); |
| 87 |
| 88 // Reads a data file relative to the src root directory. |
| 89 std::string ReadTestFileToString(const std::string& file_name); |
| 90 |
| 77 } // namespace net | 91 } // namespace net |
| 78 | 92 |
| 79 #endif // NET_CERT_INTERNAL_TEST_HELPERS_H_ | 93 #endif // NET_CERT_INTERNAL_TEST_HELPERS_H_ |
| OLD | NEW |