Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / ui / autofill / country_combobox_model_unittest.cc
blobedb06379e3fe6df3363501fc9fa7edc39fdc73f9
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
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/autofill/country_combobox_model.h"
7 #include "components/autofill/core/browser/autofill_country.h"
8 #include "components/autofill/core/browser/test_personal_data_manager.h"
9 #include "testing/gmock/include/gmock/gmock.h"
10 #include "testing/gmock_mutant.h"
11 #include "testing/gtest/include/gtest/gtest.h"
12 #include "ui/base/models/combobox_model_observer.h"
14 namespace autofill {
16 namespace {
18 const char kTestCountry[] = "AQ";
20 class MockObserver : public ui::ComboboxModelObserver {
21 public:
22 MOCK_METHOD1(OnComboboxModelChanged, void(ui::ComboboxModel* model));
25 } // namespace
27 TEST(CountryComboboxModel, SetAndResetDefaultCountry) {
28 TestPersonalDataManager manager;
29 CountryComboboxModel model(manager);
31 MockObserver observer;
32 model.AddObserver(&observer);
33 EXPECT_CALL(observer, OnComboboxModelChanged(&model)).Times(2);
35 std::string default_country = model.GetDefaultCountryCode();
36 ASSERT_NE(default_country, kTestCountry);
38 model.SetDefaultCountry(kTestCountry);
39 EXPECT_EQ(kTestCountry, model.GetDefaultCountryCode());
41 model.ResetDefault();
42 EXPECT_EQ(default_country, model.GetDefaultCountryCode());
45 TEST(CountryComboboxModel, RespectsManagerDefaultCountry) {
46 TestPersonalDataManager manager;
47 manager.set_timezone_country_code(kTestCountry);
49 CountryComboboxModel model(manager);
50 EXPECT_EQ(kTestCountry, model.GetDefaultCountryCode());
53 } // namespace autofill