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

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

Issue 13625002: Change the behavior of the [X] Save details to Wallet checkbox notification to: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 8 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_models_unittest.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_models_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_models_unittest.cc
index f361db1208e5ee88e758b269ae7d03ea54de034a..726fd52e47cfd077ef7c22ae05fda884ff31f41b 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_models_unittest.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_models_unittest.cc
@@ -39,52 +39,64 @@ class AccountChooserModelTest : public testing::Test {
} // namespace
TEST_F(AccountChooserModelTest, ObeysPref) {
- EXPECT_CALL(*delegate(), AccountChoiceChanged()).Times(2);
+ // When "Pay without wallet" is false, use Wallet by default.
+ {
+ profile()->GetPrefs()->SetBoolean(
+ prefs::kAutofillDialogPayWithoutWallet, false);
+ AccountChooserModel model(delegate(), profile()->GetPrefs());
+ EXPECT_TRUE(model.WalletIsSelected());
+ }
+ // When the user chose to "Pay without wallet", use Autofill.
+ {
+ profile()->GetPrefs()->SetBoolean(
+ prefs::kAutofillDialogPayWithoutWallet, true);
+ AccountChooserModel model(delegate(), profile()->GetPrefs());
+ EXPECT_FALSE(model.WalletIsSelected());
+ }
+}
- profile()->GetPrefs()->SetBoolean(
- prefs::kAutofillDialogPayWithoutWallet, false);
+TEST_F(AccountChooserModelTest, IgnoresPrefChanges) {
+ ASSERT_FALSE(profile()->GetPrefs()->GetBoolean(
+ prefs::kAutofillDialogPayWithoutWallet));
EXPECT_TRUE(model()->WalletIsSelected());
+ // Check that nothing changes while this dialog is running if a pref changes
+ // (this could cause subtle bugs or annoyances if a user closes another
+ // running dialog).
profile()->GetPrefs()->SetBoolean(
prefs::kAutofillDialogPayWithoutWallet, true);
- EXPECT_FALSE(model()->WalletIsSelected());
+ EXPECT_TRUE(model()->WalletIsSelected());
}
TEST_F(AccountChooserModelTest, HandlesError) {
- EXPECT_CALL(*delegate(), AccountChoiceChanged()).Times(2);
+ EXPECT_CALL(*delegate(), AccountChoiceChanged()).Times(1);
- profile()->GetPrefs()->SetBoolean(
- prefs::kAutofillDialogPayWithoutWallet, false);
- EXPECT_TRUE(model()->WalletIsSelected());
+ ASSERT_TRUE(model()->WalletIsSelected());
+ ASSERT_TRUE(model()->IsCommandIdEnabled(AccountChooserModel::kWalletItemId));
model()->SetHadWalletError();
EXPECT_FALSE(model()->WalletIsSelected());
- EXPECT_FALSE(model()->IsCommandIdEnabled(0));
+ EXPECT_FALSE(model()->IsCommandIdEnabled(AccountChooserModel::kWalletItemId));
}
TEST_F(AccountChooserModelTest, HandlesSigninError) {
- EXPECT_CALL(*delegate(), AccountChoiceChanged()).Times(2);
+ EXPECT_CALL(*delegate(), AccountChoiceChanged()).Times(1);
- profile()->GetPrefs()->SetBoolean(
- prefs::kAutofillDialogPayWithoutWallet, false);
- EXPECT_TRUE(model()->WalletIsSelected());
+ ASSERT_TRUE(model()->WalletIsSelected());
+ ASSERT_TRUE(model()->IsCommandIdEnabled(AccountChooserModel::kWalletItemId));
model()->SetHadWalletSigninError();
EXPECT_FALSE(model()->WalletIsSelected());
- EXPECT_TRUE(model()->IsCommandIdEnabled(0));
+ EXPECT_TRUE(model()->IsCommandIdEnabled(AccountChooserModel::kWalletItemId));
}
TEST_F(AccountChooserModelTest, RespectsUserChoice) {
- EXPECT_CALL(*delegate(), AccountChoiceChanged()).Times(3);
-
- profile()->GetPrefs()->SetBoolean(
- prefs::kAutofillDialogPayWithoutWallet, false);
- EXPECT_TRUE(model()->WalletIsSelected());
+ EXPECT_CALL(*delegate(), AccountChoiceChanged()).Times(2);
- model()->ExecuteCommand(1, 0);
+ model()->ExecuteCommand(AccountChooserModel::kAutofillItemId, 0);
EXPECT_FALSE(model()->WalletIsSelected());
- model()->ExecuteCommand(0, 0);
+ model()->ExecuteCommand(AccountChooserModel::kWalletItemId, 0);
EXPECT_TRUE(model()->WalletIsSelected());
}
« no previous file with comments | « chrome/browser/ui/autofill/autofill_dialog_models.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