| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "components/autofill/core/browser/data_driven_test.h" | 5 #include "components/autofill/core/browser/data_driven_test.h" |
| 6 | 6 |
| 7 #include "base/files/file_enumerator.h" | 7 #include "base/files/file_enumerator.h" |
| 8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 11 |
| 12 namespace autofill { | 12 namespace autofill { |
| 13 namespace { | 13 namespace { |
| 14 | 14 |
| 15 // Reads |file| into |content|, and converts Windows line-endings to Unix ones. | 15 // Reads |file| into |content|, and converts Windows line-endings to Unix ones. |
| 16 // Returns true on success. | 16 // Returns true on success. |
| 17 bool ReadFile(const base::FilePath& file, std::string* content) { | 17 bool ReadFile(const base::FilePath& file, std::string* content) { |
| 18 if (!base::ReadFileToString(file, content)) | 18 if (!base::ReadFileToString(file, content)) |
| 19 return false; | 19 return false; |
| 20 | 20 |
| 21 ReplaceSubstringsAfterOffset(content, 0, "\r\n", "\n"); | 21 base::ReplaceSubstringsAfterOffset(content, 0, "\r\n", "\n"); |
| 22 return true; | 22 return true; |
| 23 } | 23 } |
| 24 | 24 |
| 25 // Write |content| to |file|. Returns true on success. | 25 // Write |content| to |file|. Returns true on success. |
| 26 bool WriteFile(const base::FilePath& file, const std::string& content) { | 26 bool WriteFile(const base::FilePath& file, const std::string& content) { |
| 27 int write_size = base::WriteFile(file, content.c_str(), | 27 int write_size = base::WriteFile(file, content.c_str(), |
| 28 static_cast<int>(content.length())); | 28 static_cast<int>(content.length())); |
| 29 return write_size == static_cast<int>(content.length()); | 29 return write_size == static_cast<int>(content.length()); |
| 30 } | 30 } |
| 31 | 31 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 } | 96 } |
| 97 | 97 |
| 98 DataDrivenTest::DataDrivenTest(const base::FilePath& test_data_directory) | 98 DataDrivenTest::DataDrivenTest(const base::FilePath& test_data_directory) |
| 99 : test_data_directory_(test_data_directory) { | 99 : test_data_directory_(test_data_directory) { |
| 100 } | 100 } |
| 101 | 101 |
| 102 DataDrivenTest::~DataDrivenTest() { | 102 DataDrivenTest::~DataDrivenTest() { |
| 103 } | 103 } |
| 104 | 104 |
| 105 } // namespace autofill | 105 } // namespace autofill |
| OLD | NEW |