Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(575)

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_i18n_input_unittest.cc

Issue 1931043002: Remove requestAutocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/autofill/autofill_dialog_i18n_input_unittest.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_i18n_input_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_i18n_input_unittest.cc
deleted file mode 100644
index a58eed03775db0b16ef80769fc5167926f1835a0..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/autofill/autofill_dialog_i18n_input_unittest.cc
+++ /dev/null
@@ -1,80 +0,0 @@
-// Copyright 2014 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 "chrome/browser/ui/autofill/autofill_dialog_i18n_input.h"
-
-#include <stddef.h>
-
-#include "components/autofill/core/browser/field_types.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_ui.h"
-
-namespace autofill {
-namespace i18ninput {
-
-namespace {
-
-const size_t kNumberOfAddressLinesUS = 6;
-
-} // namespace
-
-TEST(AutofillDialogI18nInput, USShippingAddress) {
- DetailInputs inputs;
- std::string language_code;
- BuildAddressInputs(common::ADDRESS_TYPE_SHIPPING, "US", &inputs,
- &language_code);
-
- ASSERT_EQ(kNumberOfAddressLinesUS, inputs.size());
- EXPECT_EQ(NAME_FULL, inputs[0].type);
- EXPECT_EQ(ADDRESS_HOME_COUNTRY, inputs[kNumberOfAddressLinesUS - 1].type);
- EXPECT_EQ("en", language_code);
-}
-
-TEST(AutofillDialogI18nInput, USBillingAddress) {
- DetailInputs inputs;
- BuildAddressInputs(common::ADDRESS_TYPE_BILLING, "US", &inputs, NULL);
-
- ASSERT_EQ(kNumberOfAddressLinesUS, inputs.size());
- EXPECT_EQ(NAME_BILLING_FULL, inputs[0].type);
- EXPECT_EQ(ADDRESS_BILLING_COUNTRY, inputs[kNumberOfAddressLinesUS - 1].type);
-}
-
-TEST(AutofillDialogI18nInput, USCityStateAndZipCodeShareInputRow) {
- DetailInputs inputs;
- BuildAddressInputs(common::ADDRESS_TYPE_SHIPPING, "US", &inputs, NULL);
- ASSERT_EQ(kNumberOfAddressLinesUS, inputs.size());
-
- int input_index = 2;
-
- // Inputs before or after [ City ] [ State ] [ Zip ] should be on other lines.
- EXPECT_NE(inputs[input_index - 1].length, DetailInput::SHORT);
-
- const DetailInput& city = inputs[input_index++];
- EXPECT_EQ(ADDRESS_HOME_CITY, city.type);
- EXPECT_EQ(city.length, DetailInput::SHORT);
-
- const DetailInput& state = inputs[input_index++];
- EXPECT_EQ(ADDRESS_HOME_STATE, state.type);
- EXPECT_EQ(state.length, DetailInput::SHORT);
-
- const DetailInput& zip = inputs[input_index++];
- EXPECT_EQ(ADDRESS_HOME_ZIP, zip.type);
- EXPECT_EQ(zip.length, DetailInput::SHORT);
-
- EXPECT_NE(inputs[input_index].length, DetailInput::SHORT);
-}
-
-TEST(AutofillDialogI18nInput, IvoryCoastNoStreetLine2) {
- DetailInputs inputs;
- std::string language_code;
- BuildAddressInputs(common::ADDRESS_TYPE_SHIPPING, "CI", &inputs,
- &language_code);
- for (size_t i = 0; i < inputs.size(); ++i) {
- EXPECT_NE(ADDRESS_HOME_LINE2, inputs[i].type);
- }
- EXPECT_EQ("fr", language_code);
-}
-
-} // namespace i18ninput
-} // namespace autofill
« no previous file with comments | « chrome/browser/ui/autofill/autofill_dialog_i18n_input.cc ('k') | chrome/browser/ui/autofill/autofill_dialog_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698