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

Side by Side Diff: chrome/browser/sync/test/integration/single_client_wallet_sync_test.cc

Issue 2379433002: [Sync] Refactoring of sync integration test checkers to remove boilerplate await methods. (Closed)
Patch Set: Rebase Created 4 years, 2 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
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/macros.h" 6 #include "base/macros.h"
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/chrome_notification_types.h" 8 #include "chrome/browser/chrome_notification_types.h"
9 #include "chrome/browser/sync/test/integration/autofill_helper.h" 9 #include "chrome/browser/sync/test/integration/autofill_helper.h"
10 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" 10 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
11 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h" 11 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h"
12 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h" 12 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h"
13 #include "chrome/browser/sync/test/integration/sync_test.h" 13 #include "chrome/browser/sync/test/integration/sync_test.h"
14 #include "chrome/browser/web_data_service_factory.h" 14 #include "chrome/browser/web_data_service_factory.h"
15 #include "components/autofill/core/browser/credit_card.h" 15 #include "components/autofill/core/browser/credit_card.h"
16 #include "components/autofill/core/browser/field_types.h" 16 #include "components/autofill/core/browser/field_types.h"
17 #include "components/autofill/core/browser/personal_data_manager.h" 17 #include "components/autofill/core/browser/personal_data_manager.h"
18 #include "components/autofill/core/common/autofill_pref_names.h" 18 #include "components/autofill/core/common/autofill_pref_names.h"
19 #include "components/browser_sync/profile_sync_service.h" 19 #include "components/browser_sync/profile_sync_service.h"
20 #include "components/prefs/pref_service.h" 20 #include "components/prefs/pref_service.h"
21 #include "components/sync/base/model_type.h" 21 #include "components/sync/base/model_type.h"
22 #include "components/sync/test/fake_server/fake_server_entity.h" 22 #include "components/sync/test/fake_server/fake_server_entity.h"
23 #include "components/sync/test/fake_server/unique_client_entity.h" 23 #include "components/sync/test/fake_server/unique_client_entity.h"
24 #include "content/public/browser/notification_service.h" 24 #include "content/public/browser/notification_service.h"
25 25
26 using autofill_helper::GetPersonalDataManager; 26 using autofill_helper::GetPersonalDataManager;
27 using sync_integration_test_util::AwaitCommitActivityCompletion;
28 27
29 namespace { 28 namespace {
30 29
31 const char kDefaultCardID[] = "wallet entity ID"; 30 const char kDefaultCardID[] = "wallet entity ID";
32 const int kDefaultCardExpMonth = 8; 31 const int kDefaultCardExpMonth = 8;
33 const int kDefaultCardExpYear = 2087; 32 const int kDefaultCardExpYear = 2087;
34 const char kDefaultCardLastFour[] = "1234"; 33 const char kDefaultCardLastFour[] = "1234";
35 const char kDefaultCardName[] = "Patrick Valenzuela"; 34 const char kDefaultCardName[] = "Patrick Valenzuela";
36 const sync_pb::WalletMaskedCreditCard_WalletCardType kDefaultCardType = 35 const sync_pb::WalletMaskedCreditCard_WalletCardType kDefaultCardType =
37 sync_pb::WalletMaskedCreditCard::AMEX; 36 sync_pb::WalletMaskedCreditCard::AMEX;
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 std::vector<autofill::CreditCard*> cards = pdm->GetCreditCards(); 182 std::vector<autofill::CreditCard*> cards = pdm->GetCreditCards();
184 ASSERT_EQ(1uL, cards.size()); 183 ASSERT_EQ(1uL, cards.size());
185 184
186 // Turn off the wallet autofill pref, the card should be gone as a side 185 // Turn off the wallet autofill pref, the card should be gone as a side
187 // effect of the wallet data type controller noticing. 186 // effect of the wallet data type controller noticing.
188 GetProfile(0)->GetPrefs()->SetBoolean( 187 GetProfile(0)->GetPrefs()->SetBoolean(
189 autofill::prefs::kAutofillWalletImportEnabled, false); 188 autofill::prefs::kAutofillWalletImportEnabled, false);
190 cards = pdm->GetCreditCards(); 189 cards = pdm->GetCreditCards();
191 ASSERT_EQ(0uL, cards.size()); 190 ASSERT_EQ(0uL, cards.size());
192 } 191 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698