| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chrome/browser/safe_browsing/binary_feature_extractor.h" | 5 #include "chrome/browser/safe_browsing/binary_feature_extractor.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/base_paths.h" | 10 #include "base/base_paths.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/path_service.h" | 13 #include "base/path_service.h" |
| 14 #include "chrome/common/chrome_paths.h" | 14 #include "chrome/common/chrome_paths.h" |
| 15 #include "chrome/common/safe_browsing/csd.pb.h" | 15 #include "chrome/common/safe_browsing/csd.pb.h" |
| 16 #include "net/cert/x509_cert_types.h" | 16 #include "net/cert/x509_cert_types.h" |
| 17 #include "net/cert/x509_certificate.h" | 17 #include "net/cert/x509_certificate.h" |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 19 | 19 |
| 20 namespace safe_browsing { | 20 namespace safe_browsing { |
| 21 | 21 |
| 22 class BinaryFeatureExtractorWinTest : public testing::Test { | 22 class BinaryFeatureExtractorWinTest : public testing::Test { |
| 23 protected: | 23 protected: |
| 24 virtual void SetUp() OVERRIDE { | 24 virtual void SetUp() override { |
| 25 base::FilePath source_path; | 25 base::FilePath source_path; |
| 26 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &source_path)); | 26 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &source_path)); |
| 27 testdata_path_ = source_path | 27 testdata_path_ = source_path |
| 28 .AppendASCII("safe_browsing") | 28 .AppendASCII("safe_browsing") |
| 29 .AppendASCII("download_protection"); | 29 .AppendASCII("download_protection"); |
| 30 | 30 |
| 31 binary_feature_extractor_ = new BinaryFeatureExtractor(); | 31 binary_feature_extractor_ = new BinaryFeatureExtractor(); |
| 32 } | 32 } |
| 33 | 33 |
| 34 // Given a certificate chain protobuf, parse it into X509Certificates. | 34 // Given a certificate chain protobuf, parse it into X509Certificates. |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 EXPECT_TRUE(pe_headers.has_dos_header()); | 152 EXPECT_TRUE(pe_headers.has_dos_header()); |
| 153 EXPECT_TRUE(pe_headers.has_file_header()); | 153 EXPECT_TRUE(pe_headers.has_file_header()); |
| 154 EXPECT_TRUE(pe_headers.has_optional_headers32()); | 154 EXPECT_TRUE(pe_headers.has_optional_headers32()); |
| 155 EXPECT_FALSE(pe_headers.has_optional_headers64()); | 155 EXPECT_FALSE(pe_headers.has_optional_headers64()); |
| 156 EXPECT_NE(0, pe_headers.section_header_size()); | 156 EXPECT_NE(0, pe_headers.section_header_size()); |
| 157 EXPECT_TRUE(pe_headers.has_export_section_data()); | 157 EXPECT_TRUE(pe_headers.has_export_section_data()); |
| 158 EXPECT_EQ(1U, pe_headers.debug_data_size()); | 158 EXPECT_EQ(1U, pe_headers.debug_data_size()); |
| 159 } | 159 } |
| 160 | 160 |
| 161 } // namespace safe_browsing | 161 } // namespace safe_browsing |
| OLD | NEW |