1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <vector>
#include "base/files/file_enumerator.h"
#include "base/files/file_path.h"
#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/autofill/content/browser/content_autofill_driver.h"
#include "components/autofill/content/browser/content_autofill_driver_factory.h"
#include "components/autofill/core/browser/autofill_manager.h"
#include "components/autofill/core/browser/data_driven_test.h"
#include "components/autofill/core/browser/form_structure.h"
#include "url/gurl.h"
#if defined(OS_MACOSX)
#include "base/mac/foundation_util.h"
#endif
namespace autofill {
namespace {
const base::FilePath::CharType kTestName[] = FILE_PATH_LITERAL("heuristics");
// Convert the |html| snippet to a data URI.
GURL HTMLToDataURI(const std::string& html) {
// GURL requires data URLs to be UTF-8 and will fail below if it's not.
CHECK(base::IsStringUTF8(html)) << "Input file is not UTF-8.";
return GURL(std::string("data:text/html;charset=utf-8,") + html);
}
const base::FilePath& GetTestDataDir() {
CR_DEFINE_STATIC_LOCAL(base::FilePath, dir, ());
if (dir.empty())
PathService::Get(chrome::DIR_TEST_DATA, &dir);
return dir;
}
const std::vector<base::FilePath> GetTestFiles() {
static const base::FilePath::CharType* const kFilesToSkip[] = {
FILE_PATH_LITERAL("bug_459132.html"),
FILE_PATH_LITERAL("bug_454366b.html"),
FILE_PATH_LITERAL("bug_454366.html"),
FILE_PATH_LITERAL("25_checkout_m_llbean.com.html"),
};
std::set<base::FilePath> set_of_files_to_skip;
for (size_t i = 0; i < arraysize(kFilesToSkip); ++i)
set_of_files_to_skip.insert(base::FilePath(kFilesToSkip[i]));
base::FilePath dir;
CHECK(PathService::Get(base::DIR_SOURCE_ROOT, &dir));
dir = dir.AppendASCII("chrome/test/data/autofill")
.Append(kTestName)
.AppendASCII("input");
base::FileEnumerator input_files(dir, false, base::FileEnumerator::FILES);
std::vector<base::FilePath> files;
for (base::FilePath input_file = input_files.Next(); !input_file.empty();
input_file = input_files.Next()) {
if (!ContainsKey(set_of_files_to_skip, input_file.BaseName()))
files.push_back(input_file);
}
#if defined(OS_MACOSX)
base::mac::ClearAmIBundledCache();
#endif // defined(OS_MACOSX)
return files;
}
} // namespace
// A data-driven test for verifying Autofill heuristics. Each input is an HTML
// file that contains one or more forms. The corresponding output file lists the
// heuristically detected type for eachfield.
class FormStructureBrowserTest
: public InProcessBrowserTest,
public DataDrivenTest,
public ::testing::WithParamInterface<base::FilePath> {
protected:
FormStructureBrowserTest();
~FormStructureBrowserTest() override;
// DataDrivenTest:
void GenerateResults(const std::string& input, std::string* output) override;
// Serializes the given |forms| into a string.
std::string FormStructuresToString(const std::vector<FormStructure*>& forms);
private:
DISALLOW_COPY_AND_ASSIGN(FormStructureBrowserTest);
};
FormStructureBrowserTest::FormStructureBrowserTest()
: DataDrivenTest(GetTestDataDir()) {
}
FormStructureBrowserTest::~FormStructureBrowserTest() {
}
void FormStructureBrowserTest::GenerateResults(const std::string& input,
std::string* output) {
ASSERT_NO_FATAL_FAILURE(ui_test_utils::NavigateToURL(browser(),
HTMLToDataURI(input)));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ContentAutofillDriver* autofill_driver =
ContentAutofillDriverFactory::FromWebContents(web_contents)
->DriverForFrame(web_contents->GetMainFrame());
ASSERT_NE(static_cast<ContentAutofillDriver*>(NULL), autofill_driver);
AutofillManager* autofill_manager = autofill_driver->autofill_manager();
ASSERT_NE(static_cast<AutofillManager*>(NULL), autofill_manager);
std::vector<FormStructure*> forms = autofill_manager->form_structures_.get();
*output = FormStructuresToString(forms);
}
std::string FormStructureBrowserTest::FormStructuresToString(
const std::vector<FormStructure*>& forms) {
std::string forms_string;
for (const FormStructure* form : forms) {
for (const AutofillField* field : *form) {
forms_string += field->Type().ToString();
forms_string += " | " + base::UTF16ToUTF8(field->name);
forms_string += " | " + base::UTF16ToUTF8(field->label);
forms_string += " | " + base::UTF16ToUTF8(field->value);
forms_string += " | " + field->section();
forms_string += "\n";
}
}
return forms_string;
}
IN_PROC_BROWSER_TEST_P(FormStructureBrowserTest, DataDrivenHeuristics) {
RunOneDataDrivenTest(GetParam(), GetOutputDirectory(kTestName));
}
INSTANTIATE_TEST_CASE_P(AllForms,
FormStructureBrowserTest,
testing::ValuesIn(GetTestFiles()));
} // namespace autofill
|