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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// The purpose of this file is to perform end-to-end form classifications for
// form structures that were recorded as JSON files. These tests currently don't
// produce 100% fidelity compared to real browsing. E.g. we don't support
// invisible fields, yet. Still, they are helpful for tuning heuristics and
// rationalization against a corpus of observed forms.
//
// Test files are located components/test/data/autofill/heuristics-json/
// and describe the status quo. Not necessarily the correct, expected behavior.
// If the classification changes (for the better or worse), a new file is
// written into this directory and the test fails. You can compare the results
// with `diff -U5 $old_file $new_file`.
//
// The structure of the input files is as follows:
// {
// "config": {
// // 2 letter country code, used to mock the user's current location.
// "country": "US",
// // 2 letter language code, used to mock the website's language.
// "language": "en",
// // List of fields for which the expected type is verified. Fields not
// // listed here are presented to the local heuristics but the outputs
// // are not checked and mismatches are not reported.
// "fields_in_scope": [
// "UNKNOWN_TYPE",
// "ADDRESS_HOME_CITY",
// ...
// ],
// },
// "sites": [
// {
// // URL of the website from which the form was recoreded, useful for
// // debugging.
// "site_url": "https://www.example.com",
// // List of forms recorded for the website (e.g. a website can have an
// // address form and a payment form).
// "forms": [
// {
// "form_signature": "1234567",
// "fields": [
// {
// // "{form_sig}_{field_sig}_{field_rank_in_signature_group}
// "id": "15461699092647468671_1855613035_0",
// "field_signature": "1855613035",
// // Absolute position of the field in the form. Fields should
// // be sorted by "field_position". Fields are presented to the
// // heuristics in the order they appear in the JSON file.
// // This field is only used for debugging purposes.
// "field_position": 0,
// // <label>{label_attr}
// // <input id="{id_attr}" name="{name_attr}"
// // type="{type_attr}"
// // autocomplete="{autocomplete_attr}">
// // </label>
// "id_attr": "first",
// "name_attr": "firstName",
// "label_attr": "First name",
// "type_attr": "text",
// "autocomplete_attr": "given-name",
// // The field types a human tester considered correct.
// // Currently only the first type is considered.
// "tester_type": [
// "NAME_FIRST"
// ],
// // Correctness of the last classification. The value can be
// // one of:
// // - "correct" if the last classification matched the first
// // "tester_type".
// // - "not_recognized: {tester_type}, chosen_instead: {type2}"
// // if {tester_type} was not recognized but the heuristics
// // but classification and rationalization produced
// // {type2} instead.
// // - "ignored: {tester_type}" if the field type is not in
// // scope of the test.
// "last_correctness": "correct|not_recognized: ...",
// // ^^^^^^ THIS GETS UPDATED BY RUNNING THE TEST.
// // The last field type predicted by the heuristics and
// // rationalization.
// "last_classification": "NAME_FIRST"
// // ^^^^^^ THIS GETS UPDATED BY RUNNING THE TEST.
// }
// ]
// }
// ]
// ],
// // Summary of the classification.
// "stats": {
// // ^^^^^^ THIS GETS UPDATED BY RUNNING THE TEST
// "high_level_stats": {
// // Which fraction of fields had the heuristic type match the tester
// // type.
// "fraction_matches": 0.7258244384259996,
// // Number of fields for which the heuristic type matched the tester
// // type or did not match.
// "matches": 9112,
// "mismatches": 3442
// },
// // Same staistics as above, drilled down by tester type.
// "per_type_stats": {
// "{tester_type}": {
// "fraction_matches": 0.9132743362831859,
// "matches": 1032,
// "mismatches": 98
// },
// ...
// },
// "ignored_types_stats": {
// "{tester_type}": 1
// }
// }
// }
#include <iomanip>
#include <ranges>
#include <sstream>
#include <string_view>
#include "base/command_line.h"
#include "base/containers/contains.h"
#include "base/containers/flat_map.h"
#include "base/containers/flat_set.h"
#include "base/feature_list.h"
#include "base/files/file_enumerator.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/json/json_reader.h"
#include "base/json/json_writer.h"
#include "base/logging.h"
#include "base/no_destructor.h"
#include "base/path_service.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/bind.h"
#include "base/test/scoped_command_line.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/test/test_timeouts.h"
#include "base/values.h"
#include "build/build_config.h"
#include "components/autofill/core/browser/form_structure.h"
#include "components/autofill/core/browser/heuristic_source.h"
#include "components/autofill/core/browser/logging/log_manager.h"
#include "components/autofill/core/browser/logging/log_router.h"
#include "components/autofill/core/browser/ml_model/field_classification_model_handler.h"
#include "components/autofill/core/common/autocomplete_parsing_util.h"
#include "components/autofill/core/common/autofill_features.h"
#include "components/autofill/core/common/autofill_test_utils.h"
#include "components/autofill/core/common/form_data_test_api.h"
#include "components/autofill/core/common/language_code.h"
#include "components/optimization_guide/core/test_model_info_builder.h"
#include "components/optimization_guide/core/test_optimization_guide_model_provider.h"
#include "components/optimization_guide/machine_learning_tflite_buildflags.h"
#include "components/optimization_guide/proto/models.pb.h"
#include "components/variations/variations_switches.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#if BUILDFLAG(IS_MAC)
#include "base/apple/foundation_util.h"
#endif
using ::testing::AssertionFailure;
using ::testing::AssertionResult;
using ::testing::AssertionSuccess;
namespace autofill {
namespace {
bool EnableMLClassification() {
static bool enable_ml_classification =
base::CommandLine::ForCurrentProcess()->HasSwitch(
"enable-ml-classification");
return enable_ml_classification;
}
bool TesterAndHeuristicTypeMatch(std::string_view tester_type,
std::string_view heuristic_type) {
// Testers don't distinguish between standalone CVC fields and other CVC
// fields.
if (tester_type == "CREDIT_CARD_VERIFICATION_CODE" &&
heuristic_type == "CREDIT_CARD_STANDALONE_VERIFICATION_CODE") {
return true;
}
return tester_type == heuristic_type;
}
// Returns a/b or -1 in case b is 0.
double SafeFraction(double a, double b) {
return b != 0 ? a / b : -1.0;
}
// Helper class that aggregates metrics and diagnostic data about field
// classifications that matched or mismatched the expecations.
class ResultAnalyzer {
public:
// Uppercase string serializations of types. Eg. "ADDRES_HOME_CITY."
using TesterTypeAsString = std::string;
using HeuristicTypeAsString = std::string;
explicit ResultAnalyzer(std::vector<std::string> fields_in_scope)
: fields_in_scope_(std::move(fields_in_scope)) {}
// Records metrics for all fields after classification. `form_structure`
// stores the result of the classification. `form_dict` corresponds to the
// section in the JSON file for the form. This may be updated if field
// classifications diverge from the last run.
void AnalyzeClassification(const FormStructure& form_structure,
base::Value::Dict& form_dict);
// Returns a dictionary that can be embedded in the output summarizing quality
// metrics (see "stats" above).
base::Value GetResult();
protected:
// Field types not in `fields_in_scope_` are ignored during the statistics
// collection.
const base::flat_set<TesterTypeAsString> fields_in_scope_;
// Number of fields that matched or mismatched the classification by a human
// tester.
int matches_{0};
int mismatches_{0};
// As above but keyed by the type a human tester assigned to the field.
base::flat_map<TesterTypeAsString, int> match_by_type_count_;
base::flat_map<TesterTypeAsString, int> mismatch_by_type_count_;
// Frequency at which tester types were ignored because they were out of
// scope.
base::flat_map<TesterTypeAsString, int> ignored_by_type_count_;
};
void ResultAnalyzer::AnalyzeClassification(const FormStructure& form_structure,
base::Value::Dict& form_dict) {
base::Value::List& json_fields = *form_dict.FindList("fields");
for (size_t i = 0; i < json_fields.size(); ++i) {
base::Value::List* tester_types =
json_fields[i].GetDict().FindList("tester_type");
// Determine the type assigned to the field by a tester.
std::string tester_type;
if (tester_types && tester_types->size() >= 1) {
ASSERT_TRUE((*tester_types)[0].is_string());
tester_type = (*tester_types)[0].GetString();
}
// Determine the type assigned to the field by the heuristic classification.
std::string heuristic_type =
FieldTypeToString(form_structure.field(i)->Type().GetStorableType());
// Record metrics on the divergence between tester and heuristics.
if (fields_in_scope_.contains(tester_type)) {
if (TesterAndHeuristicTypeMatch(tester_type, heuristic_type)) {
++matches_;
++match_by_type_count_[tester_type];
json_fields[i].GetDict().Set("last_correctness", "correct");
} else {
++mismatches_;
++mismatch_by_type_count_[tester_type];
json_fields[i].GetDict().Set("last_correctness",
"not_recognized: " + tester_type +
", chosen_instead: " + heuristic_type);
}
} else {
++ignored_by_type_count_[tester_type];
json_fields[i].GetDict().Set("last_correctness",
"ignored: " + tester_type);
}
json_fields[i].GetDict().Set("last_classification", heuristic_type);
}
}
base::Value ResultAnalyzer::GetResult() {
// Dictionary that summarizes the results of all field classifications for all
// forms.
base::Value::Dict result;
// Highlevel statistics.
base::Value::Dict high_level_stats;
high_level_stats.Set("matches", matches_);
high_level_stats.Set("mismatches", mismatches_);
high_level_stats.Set("fraction_matches",
SafeFraction(matches_, matches_ + mismatches_));
result.Set("high_level_stats", std::move(high_level_stats));
// Per type stats.
base::Value::Dict per_type_stats;
for (const std::string& type : fields_in_scope_) {
if (match_by_type_count_.contains(type) ||
mismatch_by_type_count_.contains(type)) {
int matches = match_by_type_count_[type];
int mismatches = mismatch_by_type_count_[type];
base::Value::Dict tester_type_stats;
tester_type_stats.Set("matches", matches);
tester_type_stats.Set("mismatches", mismatches);
tester_type_stats.Set("fraction_matches",
SafeFraction(matches, matches + mismatches));
per_type_stats.Set(type, std::move(tester_type_stats));
}
}
result.Set("per_type_stats", std::move(per_type_stats));
// Stats for ignored field types.
base::Value::Dict ignored_types_stats;
for (auto it : ignored_by_type_count_) {
ignored_types_stats.Set(it.first, it.second);
}
result.Set("ignored_types_stats", std::move(ignored_types_stats));
return base::Value(std::move(result));
}
// Returns the path containing test input files,
// components/test/data/autofill/heuristics-json/.
const base::FilePath& GetInputDir() {
static base::NoDestructor<base::FilePath> dir([] {
base::FilePath dir;
base::PathService::Get(base::DIR_SRC_TEST_DATA_ROOT, &dir);
return dir.AppendASCII("components")
.AppendASCII("test")
.AppendASCII("data")
.AppendASCII("autofill")
.AppendASCII("heuristics-json");
}());
return *dir;
}
// Returns all "*.json" files in `GetInputDir()`.
std::vector<base::FilePath> GetTestFiles() {
base::FileEnumerator input_files(
GetInputDir(), /*recursive=*/true, base::FileEnumerator::FILES,
FILE_PATH_LITERAL("*.json"),
base::FileEnumerator::FolderSearchPolicy::ALL);
std::vector<base::FilePath> files;
input_files.ForEach(
[&files](const base::FilePath& item) { files.push_back(item); });
std::sort(files.begin(), files.end());
#if BUILDFLAG(IS_MAC)
base::apple::ClearAmIBundledCache();
#endif // BUILDFLAG(IS_MAC)
return files;
}
// Extracts data of a single field from `field_dict` using the Form `form_data`
// as contextual information.
// `field_dict` corresponds to an entry of `.sites[].forms[].fields[]` in the
// JSON input file in jq syntax (https://jqlang.github.io/jq/).
FormFieldData ParseFieldFromJsonDict(const base::Value::Dict& field_dict,
const FormData& form_data) {
FormFieldData field;
if (const std::string* id = field_dict.FindString("id_attr")) {
field.set_id_attribute(base::UTF8ToUTF16(*id));
}
if (const std::string* name = field_dict.FindString("name_attr")) {
field.set_name_attribute(base::UTF8ToUTF16(*name));
}
// `FormFieldData::name` is used for form signature calculation and a fallback
// from a field's name to the field's id.
field.set_name(std::u16string(
base::TrimWhitespace(field.name_attribute(), base::TRIM_ALL)));
if (field.name().empty()) {
field.set_name(std::u16string(
base::TrimWhitespace(field.id_attribute(), base::TRIM_ALL)));
}
if (const std::string* label = field_dict.FindString("label_attr")) {
field.set_label(base::UTF8ToUTF16(*label));
// Unfortunately, the data doesn't include the label source.
field.set_label_source(FormFieldData::LabelSource::kForId);
}
field.set_form_control_type(FormControlType::kInputText);
if (const std::string* json_type = field_dict.FindString("type_attr")) {
std::string type = *json_type == "select" ? "select-one" : *json_type;
field.set_form_control_type(
StringToFormControlTypeDiscouraged(type).value_or(
FormControlType::kInputText));
}
if (const std::string* autocomplete =
field_dict.FindString("autocomplete_attr")) {
field.set_autocomplete_attribute(*autocomplete);
field.set_parsed_autocomplete(ParseAutocompleteAttribute(*autocomplete));
}
if (const std::string* placeholder =
field_dict.FindString("placeholder_attr")) {
field.set_placeholder(base::UTF8ToUTF16(*placeholder));
}
if (const std::string* maxlength = field_dict.FindString("maxlength_attr")) {
uint64_t max_length = 0;
base::StringToUint64(*maxlength, &max_length);
field.set_max_length(max_length);
}
field.set_is_focusable(true);
field.set_role(FormFieldData::RoleAttribute::kOther);
field.set_origin(form_data.main_frame_origin());
field.set_host_frame(form_data.host_frame());
field.set_host_form_id(form_data.renderer_id());
field.set_renderer_id(test::MakeFieldRendererId());
std::vector<SelectOption> options;
if (const base::Value::List* select_options =
field_dict.FindList("select_options")) {
for (const base::Value& option : *select_options) {
const base::Value::Dict& option_dict = option.GetDict();
options.push_back(SelectOption{
.value = base::UTF8ToUTF16(*option_dict.FindString("value")),
.text = base::UTF8ToUTF16(*option_dict.FindString("label"))});
}
}
field.set_options(std::move(options));
return field;
}
[[nodiscard]] AssertionResult ParseFormFromJsonDict(
const base::Value::Dict& form_dict,
const std::string& site_url,
FormData& form_data) {
form_data.set_url(GURL(site_url));
form_data.set_main_frame_origin(url::Origin::Create(form_data.url()));
form_data.set_host_frame(test::MakeLocalFrameToken());
form_data.set_renderer_id(test::MakeFormRendererId());
const base::Value::List* fields = form_dict.FindList("fields");
if (!fields) {
return AssertionFailure() << "A form has no fields in " << site_url;
}
for (const base::Value& field_json : *fields) {
if (!field_json.is_dict()) {
return AssertionFailure() << "A field is no dict in " << site_url;
}
test_api(form_data).Append(
ParseFieldFromJsonDict(field_json.GetDict(), form_data));
}
return AssertionSuccess();
}
// Tests classifications of a site. The returned test result expresses whether
// the test data could be parsed and the fields could be classified. It does
// not make an assessment of whether the heuristics generated the expected data.
// That is recorded via `result_analyzer`.
// Test field classification resutls are updated in `site` in the
// `.sites[].forms[].fields[].last_classification` field. This is why the `site`
// is a mutable parameter.
// `site` corresponds to an entry of `.sites[]` in the JSON input file in jq
// syntax (https://jqlang.github.io/jq/)
// If `ml_predictions_handler` is null, heuristics with regular expressions
// are used for parsing. If it's non-null, the ML model is applied.
[[nodiscard]] AssertionResult ClassifyFieldsOfSite(
base::Value::Dict& site,
const GeoIpCountryCode& client_country,
LanguageCode page_language,
FieldClassificationModelHandler* ml_predictions_handler,
ResultAnalyzer& result_analyzer,
LogManager* log_manager) {
const std::string* site_url = site.FindString("site_url");
if (!site_url) {
return AssertionFailure() << "Missing attribute 'site_url' in" << site;
}
base::Value::List* forms = site.FindList("forms");
if (!forms) {
return AssertionFailure() << "No 'forms' in " << site;
}
for (base::Value& form : *forms) {
if (!form.is_dict()) {
return AssertionFailure() << "A form is not a dictionary in " << site;
}
FormData form_data;
if (AssertionResult result =
ParseFormFromJsonDict(form.GetDict(), *site_url, form_data);
!result) {
return result;
}
auto form_structure = std::make_unique<FormStructure>(form_data);
form_structure->set_current_page_language(page_language);
if (ml_predictions_handler) {
base::RunLoop run_loop;
ml_predictions_handler->GetModelPredictionsForForm(
std::move(form_structure),
base::BindLambdaForTesting(
[&form_structure,
&run_loop](std::unique_ptr<FormStructure> result_form) {
form_structure = std::move(result_form);
run_loop.Quit();
}));
run_loop.Run();
}
// Similarly to AutofillManager::ParseFormsAsync, the heuristics are
// executed after the ML model. If ML predictions are enabled, this does
// not override the heuristic types but performs rationalization.
form_structure->DetermineHeuristicTypes(client_country, log_manager);
result_analyzer.AnalyzeClassification(*form_structure, form.GetDict());
}
return AssertionSuccess();
}
// Creates a textual description of the statistics. This is good for a quick
// view in the delta for an EXPECT_EQ().
[[nodiscard]] std::string SummarizeStatistics(
const base::Value::Dict& json_file) {
std::ostringstream result;
const base::Value::Dict* stats = json_file.FindDict("stats");
if (!stats) {
return std::string();
}
auto summarize_sub_section = [](const std::string& caption,
const base::Value::Dict& dict) {
std::ostringstream result;
result << caption << ": Fraction matches " << std::fixed
<< std::setprecision(2)
<< (*dict.FindDouble("fraction_matches") * 100.0) << "%, "
<< "Matches: " << *dict.FindInt("matches") << ", "
<< "Mismatches: " << *dict.FindInt("mismatches") << std::endl;
return result.str();
};
if (const auto* high_level_stats = stats->FindDict("high_level_stats");
high_level_stats) {
result << summarize_sub_section("Summary", *high_level_stats);
}
if (const auto* per_type_stats = stats->FindDict("per_type_stats");
per_type_stats) {
for (const auto it : *per_type_stats) {
result << summarize_sub_section(it.first, it.second.GetDict());
}
}
return result.str();
}
class HeuristicClassificationTests
: public testing::Test,
public testing::WithParamInterface<base::FilePath> {
public:
void SetUp() override;
protected:
base::test::TaskEnvironment task_environment_;
test::AutofillUnitTestEnvironment autofill_test_environment_;
LogRouter log_router_;
std::unique_ptr<LogManager> log_manager_;
// Infrastructure for ML classifications.
optimization_guide::TestOptimizationGuideModelProvider model_provider_;
FieldClassificationModelHandler ml_predictions_handler_{
&model_provider_, optimization_guide::proto::OptimizationTarget::
OPTIMIZATION_TARGET_AUTOFILL_FIELD_CLASSIFICATION};
};
void HeuristicClassificationTests::SetUp() {
if (base::FeatureList::IsEnabled(features::test::kAutofillLogToTerminal)) {
log_router_.LogToTerminal();
}
log_manager_ = LogManager::Create(&log_router_, base::NullCallback());
// Set up ML model.
if (EnableMLClassification()) {
base::FilePath model_path =
GetInputDir().AppendASCII("internal").AppendASCII("mlmodel");
ASSERT_TRUE(base::PathExists(model_path));
std::string proto_content;
ASSERT_TRUE(base::ReadFileToString(model_path.AppendASCII("model-info.pb"),
&proto_content));
optimization_guide::proto::ModelInfo model_metadata;
ASSERT_TRUE(model_metadata.ParseFromString(proto_content));
std::unique_ptr<optimization_guide::ModelInfo> model_info =
optimization_guide::TestModelInfoBuilder()
.SetModelMetadata(/*any_metadata*/ model_metadata.model_metadata())
.SetModelFilePath(model_path.AppendASCII("model.tflite"))
.Build();
ml_predictions_handler_.OnModelUpdated(
optimization_guide::proto::
OPTIMIZATION_TARGET_AUTOFILL_FIELD_CLASSIFICATION,
*model_info);
}
}
TEST_P(HeuristicClassificationTests, EndToEnd) {
base::FilePath input_file = GetParam();
SCOPED_TRACE(::testing::Message() << input_file);
if (input_file.DirName().BaseName().MaybeAsASCII() == "internal") {
if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
"run-internal-tests")) {
GTEST_SKIP()
<< "You have internal tests in your checkout but they are skipped by "
"default because they are expensive to execute. Start the "
"components_unittests with "
"--run-internal-tests --test-launcher-timeout 100000 "
"to execute these tests.";
}
ASSERT_TRUE(BUILDFLAG(USE_INTERNAL_AUTOFILL_PATTERNS))
<< "Internal tests are only supported with internal parsing patterns";
ASSERT_GE(TestTimeouts::test_launcher_timeout().InSeconds(), 100)
<< "This is a long-running test; you must specify "
"--test-launcher-timeout to have a value of at least 100000.";
}
// Read input file.
std::string input_json_text;
ASSERT_TRUE(base::ReadFileToString(input_file, &input_json_text));
// Convert to JSON dictionary.
std::optional<base::Value> opt_json_file =
base::JSONReader::Read(input_json_text);
ASSERT_TRUE(opt_json_file);
base::Value::Dict* json_file = opt_json_file->GetIfDict();
ASSERT_TRUE(json_file);
std::string old_stats = SummarizeStatistics(*json_file);
base::Value::Dict* config = json_file->FindDict("config");
ASSERT_TRUE(config);
// Configure IP based location.
const std::string* country = config->FindString("country");
ASSERT_TRUE(country);
base::test::ScopedCommandLine command_line;
command_line.GetProcessCommandLine()->AppendSwitchASCII(
variations::switches::kVariationsOverrideCountry, *country);
std::vector<base::test::FeatureRef> enabled_features = {
// Support for new field types.
features::kAutofillUseFRAddressModel,
features::kAutofillUseNLAddressModel,
features::kAutofillUseINAddressModel,
features::kAutofillSupportPhoneticNameForJP,
features::kAutofillEnableExpirationDateImprovements,
features::kAutofillSupportLastNamePrefix,
features::kAutofillEnableLoyaltyCardsFilling,
// Other improvements.
features::kAutofillEnableCacheForRegexMatching,
features::kAutofillEnableSupportForParsingWithSharedLabels,
features::kAutofillImproveCityFieldClassification,
features::kAutofillUseNegativePatternForAllAttributes,
};
std::vector<base::test::FeatureRef> disabled_features = {
// TODO(crbug.com/320965828): Understand the changes to the expectations
// caused by this feature.
features::kAutofillBetterLocalHeuristicPlaceholderSupport,
};
auto init_feature_to_value = [&](base::test::FeatureRef feature, bool value) {
if (value) {
enabled_features.push_back(feature);
} else {
disabled_features.push_back(feature);
}
};
std::vector<std::string> structured_fields_disable_address_lines = {
"BR", "MX", "IN"};
init_feature_to_value(
features::kAutofillStructuredFieldsDisableAddressLines,
base::Contains(structured_fields_disable_address_lines, *country));
base::test::ScopedFeatureList scoped_feature_list;
scoped_feature_list.InitWithFeatures(enabled_features, disabled_features);
base::test::ScopedFeatureList ml_scoped_feature_list;
if (EnableMLClassification()) {
ASSERT_TRUE(BUILDFLAG(BUILD_WITH_TFLITE_LIB));
ASSERT_TRUE(base::CommandLine::ForCurrentProcess()->HasSwitch(
"optimization-guide-model-override"))
<< "No model specified.";
base::FieldTrialParams params;
params.emplace(features::kAutofillModelPredictionsAreActive.name, "true");
ml_scoped_feature_list.InitAndEnableFeatureWithParameters(
features::kAutofillModelPredictions, params);
}
// Configure page language.
const std::string* language = config->FindString("language");
ASSERT_TRUE(language);
LanguageCode page_language(*language);
// Configure list of fields that are in scope for reporting.
const base::Value::List* fields_in_scope_json =
config->FindList("fields_in_scope");
ASSERT_TRUE(fields_in_scope_json);
std::vector<std::string> fields_in_scope;
for (const base::Value& field : *fields_in_scope_json) {
ASSERT_TRUE(field.is_string());
fields_in_scope.push_back(field.GetString());
}
// Test all sites.
base::Value::List* sites = json_file->FindList("sites");
ASSERT_TRUE(sites);
ResultAnalyzer result_analyzer(std::move(fields_in_scope));
for (base::Value& site : *sites) {
ASSERT_TRUE(site.is_dict());
ASSERT_TRUE(ClassifyFieldsOfSite(
site.GetDict(), GeoIpCountryCode(*country), page_language,
EnableMLClassification() ? &ml_predictions_handler_ : nullptr,
result_analyzer, log_manager_.get()));
}
// Update statistics
json_file->Set("stats", result_analyzer.GetResult());
std::string new_stats = SummarizeStatistics(*json_file);
// Serialize the result.
std::optional<std::string> output_json_text =
base::WriteJsonWithOptions(*opt_json_file, base::OPTIONS_PRETTY_PRINT);
ASSERT_TRUE(output_json_text);
// Replace \r\n on windows with \n to get a canonical representation.
base::RemoveChars(*output_json_text, "\r", &(*output_json_text));
base::FilePath output_file =
GetParam().AddExtension(FILE_PATH_LITERAL(".new"));
if (input_json_text != output_json_text) {
// Write output if and only if it is different.
LOG(ERROR) << "Classifications changed. Writing new file " << output_file;
EXPECT_TRUE(base::WriteFile(output_file, *output_json_text));
} else {
// If output is as expected, delete stale .new files.
if (base::PathExists(output_file)) {
base::DeleteFile(output_file);
}
}
EXPECT_EQ(old_stats, new_stats);
// Too large inputs crash the test.
if (input_json_text.size() < 20000) {
EXPECT_EQ(input_json_text, *output_json_text);
} else {
EXPECT_EQ(input_json_text.length(), output_json_text->length());
auto mismatch = std::ranges::mismatch(input_json_text, *output_json_text);
if (mismatch.in1 != input_json_text.end()) {
int offset = mismatch.in1 - input_json_text.begin();
offset = std::max(offset - 128, 0);
EXPECT_TRUE(input_json_text == *output_json_text)
<< "input_json_text, output_json_text differ but are too large to be "
"printed\ninput_json_text and output_json_text are:\n"
<< "..." << input_json_text.substr(offset, 256) << "...\n"
<< "..." << output_json_text->substr(offset, 256) << "...";
}
}
}
// Maps a test file name to a short string that is used in the test name.
// E.g. a file "internal/DE.json" becomes "DE" such that the test is called
// AllForms/HeuristicClassificationTests.EndToEnd/DE.
std::string GenerateTestName(
const testing::TestParamInfo<base::FilePath>& info) {
std::string name = info.param.BaseName()
.ReplaceExtension(FILE_PATH_LITERAL(""))
.MaybeAsASCII();
std::ranges::replace_if(name, [](char c) { return !std::isalnum(c); }, '_');
return name;
}
INSTANTIATE_TEST_SUITE_P(AllForms,
HeuristicClassificationTests,
testing::ValuesIn(GetTestFiles()),
GenerateTestName);
} // namespace
} // namespace autofill
|