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

Side by Side Diff: chrome/browser/ui/autofill/country_combobox_model_unittest.cc

Issue 386873002: Reland "Use upstream libaddressinput in Chrome." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix iOS compile. Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/ui/autofill/country_combobox_model.h" 5 #include "chrome/browser/ui/autofill/country_combobox_model.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "chrome/browser/browser_process.h" 8 #include "chrome/browser/browser_process.h"
9 #include "chrome/test/base/testing_profile.h" 9 #include "chrome/test/base/testing_profile.h"
10 #include "components/autofill/core/browser/autofill_country.h" 10 #include "components/autofill/core/browser/autofill_country.h"
11 #include "components/autofill/core/browser/test_personal_data_manager.h" 11 #include "components/autofill/core/browser/test_personal_data_manager.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre ss_ui.h" 13 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_ui .h"
14 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre ss_ui_component.h" 14 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_ui _component.h"
15 #include "third_party/libaddressinput/src/cpp/include/libaddressinput/localizati on.h"
15 16
16 namespace autofill { 17 namespace autofill {
17 18
18 class CountryComboboxModelTest : public testing::Test { 19 class CountryComboboxModelTest : public testing::Test {
19 public: 20 public:
20 CountryComboboxModelTest() { 21 CountryComboboxModelTest() {
21 manager_.Init(NULL, profile_.GetPrefs(), false); 22 manager_.Init(NULL, profile_.GetPrefs(), false);
22 manager_.set_timezone_country_code("KR"); 23 manager_.set_timezone_country_code("KR");
23 model_.reset(new CountryComboboxModel()); 24 model_.reset(new CountryComboboxModel());
24 model_->SetCountries(manager_, base::Callback<bool(const std::string&)>()); 25 model_->SetCountries(manager_, base::Callback<bool(const std::string&)>());
(...skipping 12 matching lines...) Expand all
37 TEST_F(CountryComboboxModelTest, DefaultCountryCode) { 38 TEST_F(CountryComboboxModelTest, DefaultCountryCode) {
38 std::string default_country = model()->GetDefaultCountryCode(); 39 std::string default_country = model()->GetDefaultCountryCode();
39 EXPECT_EQ(manager()->GetDefaultCountryCodeForNewAddress(), default_country); 40 EXPECT_EQ(manager()->GetDefaultCountryCodeForNewAddress(), default_country);
40 41
41 AutofillCountry country(default_country, 42 AutofillCountry country(default_country,
42 g_browser_process->GetApplicationLocale()); 43 g_browser_process->GetApplicationLocale());
43 EXPECT_EQ(country.name(), model()->GetItemAt(0)); 44 EXPECT_EQ(country.name(), model()->GetItemAt(0));
44 } 45 }
45 46
46 TEST_F(CountryComboboxModelTest, AllCountriesHaveComponents) { 47 TEST_F(CountryComboboxModelTest, AllCountriesHaveComponents) {
48 ::i18n::addressinput::Localization localization;
49 std::string unused;
47 for (int i = 0; i < model()->GetItemCount(); ++i) { 50 for (int i = 0; i < model()->GetItemCount(); ++i) {
48 if (model()->IsItemSeparatorAt(i)) 51 if (model()->IsItemSeparatorAt(i))
49 continue; 52 continue;
50 53
51 std::string country_code = model()->countries()[i]->country_code(); 54 std::string country_code = model()->countries()[i]->country_code();
52 std::vector< ::i18n::addressinput::AddressUiComponent> components = 55 std::vector< ::i18n::addressinput::AddressUiComponent> components =
53 ::i18n::addressinput::BuildComponents( 56 ::i18n::addressinput::BuildComponents(
54 country_code, std::string(), NULL); 57 country_code, localization, std::string(), &unused);
55 EXPECT_FALSE(components.empty()); 58 EXPECT_FALSE(components.empty());
56 } 59 }
57 } 60 }
58 61
59 } // namespace autofill 62 } // namespace autofill
OLDNEW
« no previous file with comments | « chrome/browser/ui/autofill/country_combobox_model.cc ('k') | chrome/browser/ui/autofill/data_model_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698