1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/sync/test/integration/sync_test.h"
#include <utility>
#include "base/auto_reset.h"
#include "base/check_deref.h"
#include "base/command_line.h"
#include "base/containers/to_vector.h"
#include "base/files/scoped_temp_dir.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/notreached.h"
#include "base/path_service.h"
#include "base/rand_util.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/task_traits.h"
#include "base/task/thread_pool.h"
#include "base/test/test_timeouts.h"
#include "build/build_config.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/browser_process_platform_part.h"
#include "chrome/browser/chrome_browser_main.h"
#include "chrome/browser/chrome_browser_main_extra_parts.h"
#include "chrome/browser/gcm/gcm_profile_service_factory.h"
#include "chrome/browser/gcm/instance_id/instance_id_profile_service_factory.h"
#include "chrome/browser/net/system_network_context_manager.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/profiles/profile_test_util.h"
#include "chrome/browser/profiles/profiles_state.h"
#include "chrome/browser/signin/chrome_signin_client_factory.h"
#include "chrome/browser/signin/chrome_signin_client_test_util.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/browser/sync/test/integration/committed_all_nudged_changes_checker.h"
#include "chrome/browser/sync/test/integration/device_info_helper.h"
#include "chrome/browser/sync/test/integration/fake_sync_gcm_driver_for_instance_id.h"
#include "chrome/browser/sync/test/integration/session_hierarchy_match_checker.h"
#include "chrome/browser/sync/test/integration/sync_datatype_helper.h"
#include "chrome/browser/sync/test/integration/sync_disabled_checker.h"
#include "chrome/browser/sync/test/integration/sync_integration_test_util.h"
#include "chrome/browser/sync/test/integration/sync_service_impl_harness.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "components/bookmarks/test/bookmark_test_helpers.h"
#include "components/browser_sync/browser_sync_switches.h"
#include "components/commerce/core/commerce_feature_list.h"
#include "components/data_sharing/public/features.h"
#include "components/gcm_driver/fake_gcm_profile_service.h"
#include "components/gcm_driver/gcm_profile_service.h"
#include "components/gcm_driver/instance_id/instance_id.h"
#include "components/gcm_driver/instance_id/instance_id_driver.h"
#include "components/gcm_driver/instance_id/instance_id_profile_service.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/os_crypt/sync/os_crypt_mocker.h"
#include "components/password_manager/core/browser/password_manager_buildflags.h"
#include "components/plus_addresses/features.h"
#include "components/prefs/scoped_user_pref_update.h"
#include "components/signin/public/base/consent_level.h"
#include "components/signin/public/base/signin_switches.h"
#include "components/sync/base/command_line_switches.h"
#include "components/sync/base/data_type.h"
#include "components/sync/base/features.h"
#include "components/sync/engine/sync_protocol_error.h"
#include "components/sync/engine/sync_scheduler_impl.h"
#include "components/sync/invalidations/sync_invalidations_service_impl.h"
#include "components/sync/service/glue/sync_transport_data_prefs.h"
#include "components/sync/service/sync_service_impl.h"
#include "components/sync/service/sync_user_settings.h"
#include "components/sync/test/fake_server_network_resources.h"
#include "content/public/browser/browser_main_parts.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/network_service_instance.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/browser/web_contents.h"
#include "extensions/buildflags/buildflags.h"
#include "google_apis/gaia/gaia_urls.h"
#include "net/base/port_util.h"
#include "net/dns/mock_host_resolver.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "services/network/public/cpp/features.h"
#include "services/network/public/cpp/weak_wrapper_shared_url_loader_factory.h"
#include "services/network/public/mojom/url_response_head.mojom.h"
#include "url/gurl.h"
#include "url/url_constants.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "ash/constants/ash_features.h"
#include "ash/constants/ash_switches.h"
#include "chrome/browser/ash/app_list/arc/arc_app_list_prefs_factory.h"
#include "chrome/browser/ash/app_list/test/fake_app_list_model_updater.h"
#include "chrome/browser/sync/test/integration/sync_arc_package_helper.h"
#include "chromeos/ash/components/account_manager/account_manager_factory.h"
#include "chromeos/ash/experiences/arc/test/arc_util_test_support.h"
#include "components/account_manager_core/chromeos/account_manager.h"
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/password_manager/android/password_manager_util_bridge.h"
#include "chrome/browser/sync/test/integration/sync_test_utils_android.h"
#else // BUILDFLAG(IS_ANDROID)
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_list_observer.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/webui/signin/login_ui_service.h"
#include "chrome/browser/ui/webui/signin/login_ui_service_factory.h"
#include "components/trusted_vault/command_line_switches.h"
#endif // BUILDFLAG(IS_ANDROID)
using syncer::SyncServiceImpl;
namespace {
// A small ChromeBrowserMainExtraParts that invokes a callback when threads are
// ready.
class ChromeBrowserMainExtraPartsThreadNotifier final
: public ChromeBrowserMainExtraParts {
public:
explicit ChromeBrowserMainExtraPartsThreadNotifier(
base::OnceClosure threads_ready_closure)
: threads_ready_closure_(std::move(threads_ready_closure)) {}
// ChromeBrowserMainExtraParts:
void PostCreateThreads() final { std::move(threads_ready_closure_).Run(); }
private:
base::OnceClosure threads_ready_closure_;
};
int GetNumClients(SyncTest::TestType test_type) {
switch (test_type) {
case SyncTest::SINGLE_CLIENT:
return 1;
case SyncTest::TWO_CLIENT:
return 2;
}
NOTREACHED();
}
} // namespace
#if !BUILDFLAG(IS_ANDROID)
class SyncTest::ClosedBrowserObserver : public BrowserListObserver {
public:
using OnBrowserRemovedCallback =
base::RepeatingCallback<void(Browser* browser)>;
explicit ClosedBrowserObserver(OnBrowserRemovedCallback callback)
: browser_remove_callback_(std::move(callback)) {
BrowserList::AddObserver(this);
}
~ClosedBrowserObserver() override { BrowserList::RemoveObserver(this); }
// BrowserListObserver overrides.
void OnBrowserRemoved(Browser* browser) override {
browser_remove_callback_.Run(browser);
}
private:
OnBrowserRemovedCallback browser_remove_callback_;
};
#endif
SyncTest::SyncTest(TestType test_type)
: test_type_(test_type),
server_type_(base::CommandLine::ForCurrentProcess()->HasSwitch(
syncer::kSyncServiceURL)
? EXTERNAL_LIVE_SERVER
: IN_PROCESS_FAKE_SERVER),
test_construction_time_(base::Time::Now()),
num_clients_(GetNumClients(test_type_)),
sync_run_loop_timeout(FROM_HERE, TestTimeouts::action_max_timeout()),
previous_profile_(nullptr) {
// Any RunLoop timeout will by default result in test failure.
sync_run_loop_timeout.SetAddGTestFailureOnTimeout();
sync_datatype_helper::AssociateWithTest(this);
#if !BUILDFLAG(IS_ANDROID)
browser_list_observer_ = std::make_unique<ClosedBrowserObserver>(
base::BindRepeating(&SyncTest::OnBrowserRemoved, base::Unretained(this)));
#endif
}
SyncTest::~SyncTest() = default;
void SyncTest::SetUp() {
#if BUILDFLAG(IS_ANDROID)
if (server_type_ == IN_PROCESS_FAKE_SERVER) {
sync_test_utils_android::SetUpFakeAuthForTesting();
}
#endif
// Mock the Mac Keychain service. The real Keychain can block on user input.
OSCryptMocker::SetUp();
// Yield control back to the PlatformBrowserTest framework.
PlatformBrowserTest::SetUp();
LOG(INFO) << "SyncTest::SetUp() completed; elapsed time since construction: "
<< (base::Time::Now() - test_construction_time_);
}
void SyncTest::TearDown() {
// Clear any mock gaia responses that might have been set.
ClearMockGaiaResponses();
// Allow the PlatformBrowserTest framework to perform its tear down.
PlatformBrowserTest::TearDown();
// Return OSCrypt to its real behaviour
OSCryptMocker::TearDown();
}
void SyncTest::PostRunTestOnMainThread() {
PlatformBrowserTest::PostRunTestOnMainThread();
#if BUILDFLAG(IS_ANDROID)
// TODO(crbug.com/368091420): Consider moving into SyncSigninDelegateAndroid.
switch (server_type_) {
case EXTERNAL_LIVE_SERVER:
sync_test_utils_android::ShutdownLiveAuthForTesting();
break;
case IN_PROCESS_FAKE_SERVER:
sync_test_utils_android::TearDownFakeAuthForTesting();
break;
}
#endif
}
void SyncTest::CreatedBrowserMainParts(content::BrowserMainParts* parts) {
static_cast<ChromeBrowserMainParts*>(parts)->AddParts(
std::make_unique<ChromeBrowserMainExtraPartsThreadNotifier>(
base::BindOnce(&SyncTest::PostCreateThreads,
weak_ptr_factory_.GetWeakPtr())));
PlatformBrowserTest::CreatedBrowserMainParts(parts);
}
void SyncTest::SetUpCommandLine(base::CommandLine* cl) {
// Disable non-essential access of external network resources.
if (!cl->HasSwitch(switches::kDisableBackgroundNetworking)) {
cl->AppendSwitch(switches::kDisableBackgroundNetworking);
}
if (!cl->HasSwitch(syncer::kSyncShortInitialRetryOverride)) {
cl->AppendSwitch(syncer::kSyncShortInitialRetryOverride);
}
if (!cl->HasSwitch(syncer::kSyncShortNudgeDelayForTest)) {
cl->AppendSwitch(syncer::kSyncShortNudgeDelayForTest);
}
if (!cl->HasSwitch(
switches::kBypassAccountAlreadyUsedByAnotherProfileCheck)) {
cl->AppendSwitch(switches::kBypassAccountAlreadyUsedByAnotherProfileCheck);
}
if (server_type_ == EXTERNAL_LIVE_SERVER &&
!cl->HasSwitch(switches::kDisableSyncInvalidationOptimizations)) {
// This flag is required because multiple devices in tests become active at
// the same time, and they may populate a single client optimization flag
// incorrectly resulting in missed invalidations.
cl->AppendSwitch(switches::kDisableSyncInvalidationOptimizations);
}
#if BUILDFLAG(IS_CHROMEOS)
cl->AppendSwitch(ash::switches::kIgnoreUserProfileMappingForTests);
cl->AppendSwitch(ash::switches::kDisableArcOptInVerification);
arc::SetArcAvailableCommandLineForTesting(cl);
#endif
}
void SyncTest::BeforeSetupClient(int index,
const base::FilePath& profile_path) {}
base::FilePath SyncTest::GetProfileBaseName(int index) {
return base::FilePath::FromASCII("SyncIntegrationTestClient" +
base::NumberToString(index));
}
void SyncTest::PostCreateThreads() {
CHECK(g_browser_process);
CHECK(g_browser_process->profile_manager());
profile_manager_observation_.Observe(g_browser_process->profile_manager());
switch (server_type_) {
case EXTERNAL_LIVE_SERVER: {
// Allows google.com as well as country-specific TLDs.
host_resolver()->AllowDirectLookup("*.google.com");
host_resolver()->AllowDirectLookup("accounts.google.*");
host_resolver()->AllowDirectLookup("*.googleusercontent.com");
// Allow connection to googleapis.com for oauth token requests in E2E
// tests.
host_resolver()->AllowDirectLookup("*.googleapis.com");
// On Linux, we use Chromium's NSS implementation which uses the following
// hosts for certificate verification. Without these overrides, running
// the integration tests on Linux causes error as we make external DNS
// lookups.
host_resolver()->AllowDirectLookup("*.thawte.com");
host_resolver()->AllowDirectLookup("*.geotrust.com");
host_resolver()->AllowDirectLookup("*.gstatic.com");
break;
}
case IN_PROCESS_FAKE_SERVER: {
// Start up a sync test server and setup mock gaia responses.
// Note: This must be done prior to the call to SetUpOnMainThread()
// because PlatformBrowserTest creates a default profile early, shortly
// after the threadpool is initialized.
base::FilePath user_data_dir;
base::PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
fake_server_ = std::make_unique<fake_server::FakeServer>(
user_data_dir.AppendASCII("FakeServer"));
fake_server_sync_invalidation_sender_ =
std::make_unique<fake_server::FakeServerSyncInvalidationSender>(
fake_server_.get());
SetupMockGaiaResponses();
break;
}
}
}
bool SyncTest::CreateProfile(int index) {
base::FilePath profile_path;
// For Android, we don't create profile because Clank doesn't support
// multiple profiles.
#if !BUILDFLAG(IS_ANDROID)
base::ScopedAllowBlockingForTesting allow_blocking;
base::FilePath user_data_dir;
base::PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
// Instead of creating a new directory, use a deterministic name such that
// PRE_ tests (i.e. tests that span browser restarts) can reuse the same
// directory and carry over state.
profile_path = user_data_dir.Append(GetProfileBaseName(index));
#endif
BeforeSetupClient(index, profile_path);
#if BUILDFLAG(IS_ANDROID)
DCHECK_EQ(index, 0);
Profile* profile = ProfileManager::GetLastUsedProfile();
#else // BUILDFLAG(IS_ANDROID)
Profile* profile =
g_browser_process->profile_manager()->GetProfile(profile_path);
#endif // BUILDFLAG(IS_ANDROID)
InitializeProfile(index, profile);
// Once profile initialization has kicked off, wait for it to finish.
WaitForDataModels(GetProfile(index));
return true;
}
Profile* SyncTest::GetProfile(int index) const {
DCHECK(!profiles_.empty()) << "SetupClients() has not yet been called.";
DCHECK(index >= 0 && index < static_cast<int>(profiles_.size()))
<< "GetProfile(): Index is out of bounds: " << index;
Profile* profile = profiles_[index];
DCHECK(profile) << "No profile found at index: " << index;
return profile;
}
std::vector<raw_ptr<Profile, VectorExperimental>> SyncTest::GetAllProfiles() {
std::vector<raw_ptr<Profile, VectorExperimental>> profiles;
if (UseVerifier()) {
profiles.push_back(verifier());
}
for (int i = 0; i < num_clients(); ++i) {
profiles.push_back(GetProfile(i));
}
return profiles;
}
#if !BUILDFLAG(IS_ANDROID)
Browser* SyncTest::GetBrowser(int index) {
DCHECK(!browsers_.empty()) << "SetupClients() has not yet been called.";
DCHECK(index >= 0 && index < static_cast<int>(browsers_.size()))
<< "GetBrowser(): Index is out of bounds: " << index;
Browser* browser = browsers_[index];
DCHECK(browser);
return browser;
}
Browser* SyncTest::AddBrowser(int profile_index) {
Profile* profile = GetProfile(profile_index);
browsers_.push_back(Browser::Create(Browser::CreateParams(profile, true)));
profiles_.push_back(profile);
DCHECK_EQ(browsers_.size(), profiles_.size());
return browsers_[browsers_.size() - 1];
}
void SyncTest::OnBrowserRemoved(Browser* browser) {
for (size_t i = 0; i < browsers_.size(); ++i) {
if (browsers_[i] == browser) {
browsers_[i] = nullptr;
break;
}
}
}
#endif
SyncServiceImplHarness* SyncTest::GetClient(int index) {
return const_cast<SyncServiceImplHarness*>(
std::as_const(*this).GetClient(index));
}
const SyncServiceImplHarness* SyncTest::GetClient(int index) const {
if (clients_.empty()) {
LOG(FATAL) << "SetupClients() has not yet been called.";
}
if (index < 0 || index >= static_cast<int>(clients_.size())) {
LOG(FATAL) << "GetClient(): Index is out of bounds.";
}
return clients_[index].get();
}
std::vector<SyncServiceImplHarness*> SyncTest::GetSyncClients() {
return base::ToVector(clients_,
&std::unique_ptr<SyncServiceImplHarness>::get);
}
SyncServiceImpl* SyncTest::GetSyncService(int index) const {
return SyncServiceFactory::GetAsSyncServiceImplForProfileForTesting(
GetProfile(index));
}
syncer::UserSelectableTypeSet SyncTest::GetRegisteredSelectableTypes(
int index) {
return GetSyncService(index)
->GetUserSettings()
->GetRegisteredSelectableTypes();
}
std::vector<raw_ptr<SyncServiceImpl, VectorExperimental>>
SyncTest::GetSyncServices() {
std::vector<raw_ptr<SyncServiceImpl, VectorExperimental>> services;
for (int i = 0; i < num_clients(); ++i) {
services.push_back(GetSyncService(i));
}
return services;
}
Profile* SyncTest::verifier() {
if (!UseVerifier()) {
LOG(FATAL) << "Verifier account is disabled.";
}
if (verifier_ == nullptr) {
LOG(FATAL) << "SetupClients() has not yet been called.";
}
return verifier_;
}
bool SyncTest::UseVerifier() {
return false;
}
bool SyncTest::SetupClients() {
previous_profile_ =
g_browser_process->profile_manager()->GetLastUsedProfile();
base::ScopedAllowBlockingForTesting allow_blocking;
if (num_clients_ <= 0) {
LOG(FATAL) << "num_clients_ incorrectly initialized.";
}
bool has_any_browser = false;
#if !BUILDFLAG(IS_ANDROID)
has_any_browser = !browsers_.empty();
#endif
if (!profiles_.empty() || has_any_browser || !clients_.empty()) {
LOG(FATAL) << "SetupClients() has already been called.";
}
// Create the required number of sync profiles, browsers and clients.
profiles_.resize(num_clients_);
clients_.resize(num_clients_);
auto* cl = base::CommandLine::ForCurrentProcess();
if (!cl->HasSwitch(syncer::kSyncDeferredStartupTimeoutSeconds)) {
cl->AppendSwitchASCII(syncer::kSyncDeferredStartupTimeoutSeconds, "0");
}
#if BUILDFLAG(IS_CHROMEOS)
// Sets Arc flags, need to be called before create test profiles.
ArcAppListPrefsFactory::SetFactoryForSyncTest();
// Uses a fake app list model updater to avoid interacting with Ash.
model_updater_factory_scope_ =
app_list::AppListSyncableService::SetScopedModelUpdaterFactoryForTest(
base::BindRepeating(
[](app_list::reorder::AppListReorderDelegate* reorder_delegate)
-> std::unique_ptr<AppListModelUpdater> {
return std::make_unique<FakeAppListModelUpdater>(
/*profile=*/nullptr, reorder_delegate);
}));
#endif
for (int i = 0; i < num_clients_; ++i) {
if (!CreateProfile(i)) {
return false;
}
LOG(INFO) << "SyncTest::SetupClients() created profile " << i
<< "; elapsed time since construction: "
<< (base::Time::Now() - test_construction_time_);
}
// Verifier account is not useful when running against external servers.
DCHECK(server_type_ != EXTERNAL_LIVE_SERVER || !UseVerifier());
// Verifier needs to create a test profile. But Clank doesn't support multiple
// profiles.
#if BUILDFLAG(IS_ANDROID)
DCHECK(!UseVerifier());
#endif
// Create the verifier profile.
if (UseVerifier()) {
base::FilePath user_data_dir;
base::PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
verifier_ = g_browser_process->profile_manager()->GetProfile(
user_data_dir.Append(FILE_PATH_LITERAL("Verifier")));
WaitForDataModels(verifier());
}
#if BUILDFLAG(IS_CHROMEOS)
if (ArcAppListPrefsFactory::IsFactorySetForSyncTest()) {
// Init SyncArcPackageHelper to ensure that the arc services are initialized
// for each Profile, only can be called after test profiles are created.
if (!sync_arc_helper()) {
return false;
}
}
#endif
LOG(INFO)
<< "SyncTest::SetupClients() completed; elapsed time since construction: "
<< (base::Time::Now() - test_construction_time_);
return true;
}
void SyncTest::InitializeProfile(int index, Profile* profile) {
CHECK(profile);
CHECK(!profiles_[index]) << " for index " << index;
profiles_[index] = profile;
profile->AddObserver(this);
#if !BUILDFLAG(IS_ANDROID)
browsers_.push_back(Browser::Create(Browser::CreateParams(profile, true)));
DCHECK_EQ(static_cast<size_t>(index), browsers_.size() - 1);
#endif
if (server_type_ == IN_PROCESS_FAKE_SERVER) {
// Make sure that an instance of GCMProfileService has been created. This is
// required for some tests which only call SetupClients().
gcm::GCMProfileServiceFactory::GetForProfile(profile);
DCHECK(profile_to_fake_gcm_driver_.contains(profile));
fake_server_sync_invalidation_sender_->AddFakeGCMDriver(
profile_to_fake_gcm_driver_[profile]);
}
SyncServiceImplHarness::SigninType signin_type =
server_type_ == EXTERNAL_LIVE_SERVER
? SyncServiceImplHarness::SigninType::UI_SIGNIN
: SyncServiceImplHarness::SigninType::FAKE_SIGNIN;
DCHECK(!clients_[index]);
clients_[index] =
SyncServiceImplHarness::Create(GetProfile(index), signin_type);
EXPECT_NE(nullptr, GetClient(index)) << "Could not create Client " << index;
}
bool SyncTest::SetupSyncInternal(SetupSyncMode setup_mode,
SyncTestAccount account) {
// Create sync profiles and clients if they haven't already been created.
if (profiles_.empty()) {
if (!SetupClients()) {
ADD_FAILURE() << "SetupClients() failed.";
return false;
}
}
if (server_type_ == EXTERNAL_LIVE_SERVER) {
LOG(ERROR) << "WARNING: Running against external servers with an existing "
"account. If there is any pre-existing data in the account, "
"things will likely break.";
}
// Sync each of the profiles.
for (int client_index = 0; client_index < num_clients_; client_index++) {
SyncServiceImplHarness* client = GetClient(client_index);
DVLOG(1) << "Setting up " << client_index << " client";
if (!client->SetupSyncNoWaitForCompletion(account)) {
ADD_FAILURE() << "SetupSync() failed.";
return false;
}
if (TestUsesSelfNotifications()) {
// On Android, invalidations for Session data type are disabled by
// default. This may result in test flakiness when using when using
// AwaitQuiescence() because Android commits Session for "about:blank"
// page, hence AwaitQuiescence() would wait for downloading updates
// forever.
// TODO(crbug.com/40173160): remove this workaround once SetupSync doesn't
// rely on self-notifications.
DCHECK(GetSyncService(client_index)->IsEngineInitialized());
GetSyncService(client_index)->SetInvalidationsForSessionsEnabled(true);
}
// It's important to wait for each client before setting up the next one,
// otherwise multi-client tests get flaky. This may happen in some tests
// which have local data before sync is enabled. In such tests it's
// important (and this is closer to real behavior) that the initial merge is
// happening sequentially in two clients, otherwise both clients can upload
// their data simultaneously, e.g. resulting in duplicates (most prominent
// for bookmarks).
switch (setup_mode) {
case NO_WAITING:
break;
case WAIT_FOR_SYNC_SETUP_TO_COMPLETE:
if (!client->AwaitSyncSetupCompletion()) {
ADD_FAILURE() << "AwaitSyncSetupCompletion() failed";
return false;
}
if (!client->AwaitInvalidationsStatus(/*expected_status=*/true)) {
ADD_FAILURE() << "AwaitInvalidationsStatus() failed";
return false;
}
break;
case WAIT_FOR_COMMITS_TO_COMPLETE:
if (!client->AwaitSyncSetupCompletion()) {
ADD_FAILURE() << "AwaitSyncSetupCompletion() failed";
return false;
}
if (!client->AwaitInvalidationsStatus(/*expected_status=*/true)) {
ADD_FAILURE() << "AwaitInvalidationsStatus() failed";
return false;
}
if (!WaitForAsyncChangesToBeCommitted(client_index)) {
ADD_FAILURE() << "WaitForAsyncChangesToBeCommitted() failed";
return false;
}
break;
}
LOG(INFO) << "SetupSync for client " << client_index << " finished, "
<< "cache guid: " << GetCacheGuid(client_index);
}
return true;
}
bool SyncTest::SetupSync(SetupSyncMode setup_mode) {
return SetupSync(SyncTestAccount::kDefaultAccount, setup_mode);
}
bool SyncTest::SetupSync(SyncTestAccount account, SetupSyncMode setup_mode) {
#if BUILDFLAG(IS_ANDROID)
// For Android, currently the framework only supports one client.
// The client uses the default profile.
CHECK(num_clients_ == 1)
<< "For Android, currently it only supports one client.";
#endif
base::ScopedAllowBlockingForTesting allow_blocking;
if (!SetupSyncInternal(setup_mode, account)) {
return false;
}
// Because clients may modify sync data as part of startup (for example
// local session-related data is rewritten), we need to ensure all
// startup-based changes have propagated between the clients.
//
// Tests that don't use self-notifications can't await quiescence. They'll
// have to find their own way of waiting for an initial state if they really
// need such guarantees.
if (setup_mode != NO_WAITING && TestUsesSelfNotifications()) {
if (!AwaitQuiescence()) {
ADD_FAILURE() << "AwaitQuiescence() failed.";
return false;
}
}
#if !BUILDFLAG(IS_ANDROID)
if (server_type_ == EXTERNAL_LIVE_SERVER) {
// OneClickSigninSyncStarter observer is created with a real user sign in.
// It is deleted on certain conditions which are not satisfied by our tests,
// and this causes the SigninTracker observer to stay hanging at shutdown.
// Calling LoginUIService::SyncConfirmationUIClosed forces the observer to
// be removed. http://crbug.com/484388
for (int i = 0; i < num_clients_; ++i) {
LoginUIServiceFactory::GetForProfile(GetProfile(i))
->SyncConfirmationUIClosed(
LoginUIService::SYNC_WITH_DEFAULT_SETTINGS);
}
}
#endif
DLOG(INFO) << "SyncTest::SetupSync() completed.";
return true;
}
void SyncTest::TearDownOnMainThread() {
// Verify that there are no data type failures after the test.
for (size_t client_index = 0; client_index < clients_.size();
++client_index) {
if (!GetClient(client_index)) {
// This may happen if the last tab and hence a browser has been closed.
continue;
}
CheckForDataTypeFailures(client_index);
}
// Workaround for https://crbug.com/801569: |prefs::kProfileLastUsed| stores
// the profile path relative to the user dir, but our testing profiles are
// outside the user dir (see CreateProfile). So code trying to access the last
// used profile by path will fail. To work around that, set the last used
// profile back to the originally created default profile (which does live in
// the user data dir, and which we don't use otherwise).
if (previous_profile_) {
profiles::SetLastUsedProfile(previous_profile_->GetBaseName());
previous_profile_ = nullptr;
}
if (fake_server_.get()) {
fake_server_sync_invalidation_sender_.reset();
fake_server_.reset();
}
for (size_t index = 0; index < profiles_.size(); ++index) {
// Profile could be removed earlier.
if (profiles_[index]) {
profiles_[index]->RemoveObserver(this);
#if BUILDFLAG(IS_ANDROID)
if (server_type_ == EXTERNAL_LIVE_SERVER) {
// A profile could have backend tasks from the associate sync engine.
// In browser tests, on non-Android platforms, these tasks are cancelled
// during the browser process shutdown.
// On Android, however, browser process is not shutdown after test run.
// As a result, these backend tasks could keep running and cause timeout
// error during test shutdown.
// To fix this issue, we explicitly mimic a dashboard reset to cancel
// any ongoing sync engine's backend tasks.
GetSyncService(index)->OnActionableProtocolError(
{.error_type = syncer::NOT_MY_BIRTHDAY,
.action = syncer::DISABLE_SYNC_ON_CLIENT});
}
#endif // BUILDFLAG(IS_ANDROID)
}
}
clients_.clear();
// Note: Closing all the browsers (see above) may destroy the Profiles, if
// kDestroyProfileOnBrowserClose is enabled. So clear them out here, to make
// sure they're not used anymore.
profiles_.clear();
profile_to_fake_gcm_driver_.clear();
// TODO(crbug.com/40798524): There are various other Profile-related members
// around like profile_to_*_map_ - those should probably be cleaned up too.
#if !BUILDFLAG(IS_ANDROID)
// Closing all browsers created by this test. The calls here block until
// they are closed. Other browsers created outside SyncTest setup should be
// closed by the creator of that browser.
for (Browser* browser : browsers_) {
if (browser) {
CloseBrowserSynchronously(browser);
}
}
browsers_.clear();
#endif
PlatformBrowserTest::TearDownOnMainThread();
}
void SyncTest::OnProfileWillBeDestroyed(Profile* profile) {
profile->RemoveObserver(this);
for (size_t index = 0; index < profiles_.size(); ++index) {
if (profiles_[index] != profile) {
continue;
}
CheckForDataTypeFailures(/*client_index=*/index);
// |profile_to_fake_gcm_driver_| may be empty when using an external server.
if (profile_to_fake_gcm_driver_.contains(profile)) {
fake_server_sync_invalidation_sender_->RemoveFakeGCMDriver(
profile_to_fake_gcm_driver_[profile]);
profile_to_fake_gcm_driver_.erase(profile);
}
profiles_[index] = nullptr;
clients_[index].reset();
#if !BUILDFLAG(IS_ANDROID)
DCHECK(!browsers_[index]);
#endif // !BUILDFLAG(IS_ANDROID)
}
}
void SyncTest::OnProfileAdded(Profile* profile) {
#if BUILDFLAG(IS_CHROMEOS)
// This cannot run in OnProfileCreationStarted() because it would be too
// early, and ProfileImpl's constructor would override it once again when
// invoking ash::InitializeAccountManager().
if (server_type_ == IN_PROCESS_FAKE_SERVER) {
ash::AccountManagerFactory* factory =
g_browser_process->platform_part()->GetAccountManagerFactory();
account_manager::AccountManager* account_manager =
factory->GetAccountManager(profile->GetPath().value());
account_manager->SetUrlLoaderFactoryForTests(
test_url_loader_factory_.GetSafeWeakWrapper());
}
#endif // BUILDFLAG(IS_CHROMEOS)
}
void SyncTest::OnProfileManagerDestroying() {
profile_manager_observation_.Reset();
}
void SyncTest::OnProfileCreationStarted(Profile* profile) {
if (server_type_ == EXTERNAL_LIVE_SERVER) {
// DO NOTHING. External live sync servers use real factories without quirks
// or overrides.
return;
}
CHECK(GetFakeServer());
gcm::GCMProfileServiceFactory::GetInstance()->SetTestingFactory(
profile, base::BindRepeating(&SyncTest::CreateGCMProfileService,
base::Unretained(this)));
SyncServiceFactory::GetInstance()->SetTestingFactory(
profile, SyncServiceFactory::GetDefaultFactory(
fake_server::CreateFakeServerHttpPostProviderFactory(
GetFakeServer()->AsWeakPtr())));
ChromeSigninClientFactory::GetInstance()->SetTestingFactory(
profile, base::BindRepeating(&BuildChromeSigninClientWithURLLoader,
&test_url_loader_factory_));
}
std::unique_ptr<KeyedService> SyncTest::CreateGCMProfileService(
content::BrowserContext* context) {
scoped_refptr<base::SequencedTaskRunner> blocking_task_runner(
base::ThreadPool::CreateSequencedTaskRunner(
{base::MayBlock(), base::TaskPriority::BEST_EFFORT,
base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN}));
Profile* profile = Profile::FromBrowserContext(context);
auto fake_gcm_driver =
std::make_unique<FakeSyncGCMDriver>(profile, blocking_task_runner);
profile_to_fake_gcm_driver_[profile] = fake_gcm_driver.get();
fake_gcm_driver->WaitForAppIdBeforeConnection(
fake_server::FakeServerSyncInvalidationSender::kSyncInvalidationsAppId);
return std::make_unique<gcm::FakeGCMProfileService>(
std::move(fake_gcm_driver));
}
bool SyncTest::ResetSyncForPrimaryAccount() {
if (server_type_ != EXTERNAL_LIVE_SERVER) {
// No-op for anything other than when external servers are used.
return true;
}
// For external server testing, we need to have a clean account. The following
// code will sign in one chrome browser, get the client id and access token,
// then clean the server data.
#if BUILDFLAG(IS_ANDROID)
Profile& profile = CHECK_DEREF(ProfileManager::GetLastUsedProfile());
#else // BUILDFLAG(IS_ANDROID)
base::ScopedAllowBlockingForTesting allow_blocking;
Profile& profile = profiles::testing::CreateProfileSync(
g_browser_process->profile_manager(),
g_browser_process->profile_manager()->GenerateNextProfileDirectoryPath());
#endif // BUILDFLAG(IS_ANDROID)
std::unique_ptr<SyncServiceImplHarness> client =
SyncServiceImplHarness::Create(
&profile, SyncServiceImplHarness::SigninType::UI_SIGNIN);
CHECK(client);
if (!client->SignInPrimaryAccount()) {
LOG(ERROR) << "Failed to sign in primary account";
return false;
}
if (!client->AwaitSyncTransportActive()) {
return false;
}
if (!client->ResetSyncForPrimaryAccount()) {
LOG(ERROR) << "Failed to reset sync for primary account";
return false;
}
#if !BUILDFLAG(IS_CHROMEOS)
client->SignOutPrimaryAccount();
#endif // !BUILDFLAG(IS_CHROMEOS)
// After reset, this client will disable sync. It may log some messages that
// do not contribute to test failures. It includes:
// PostClientToServerMessage with SERVER_RETURN_NOT_MY_BIRTHDAY
// PostClientToServerMessage with NETWORK_CONNECTION_UNAVAILABLE
// mcs_client fails with 401.
LOG(WARNING) << "Finished reset account. Warning logs before "
<< "this log may be safe to ignore.";
return true;
}
void SyncTest::WaitForDataModels(Profile* profile) {
// Ideally the waiting for bookmarks should be done exclusively for
// bookmark-related tests, but there are several tests that use bookmarks as
// a way to generally check if sync is working, although the test is not
// really about bookmarks.
bookmarks::test::WaitForBookmarkModelToLoad(
BookmarkModelFactory::GetForBrowserContext(profile));
}
void SyncTest::SetupMockGaiaResponses() {
test_url_loader_factory_.AddResponse(
GaiaUrls::GetInstance()->oauth2_token_url().spec(),
R"({
"refresh_token": "rt1",
"access_token": "at1",
"expires_in": 3600,
"token_type": "Bearer"
})");
test_url_loader_factory_.AddResponse(
GaiaUrls::GetInstance()->oauth_user_info_url().spec(),
"{ \"id\": \"12345\" }");
test_url_loader_factory_.AddResponse(
GaiaUrls::GetInstance()->oauth2_revoke_url().spec(), "");
}
void SyncTest::SetOAuth2TokenResponse(const std::string& response_data,
net::HttpStatusCode status_code,
net::Error net_error) {
network::URLLoaderCompletionStatus completion_status(net_error);
completion_status.decoded_body_length = response_data.size();
std::string response = base::StringPrintf("HTTP/1.1 %d %s\r\n", status_code,
GetHttpReasonPhrase(status_code));
mojo::StructPtr<network::mojom::URLResponseHead> response_head =
network::mojom::URLResponseHead::New();
response_head->headers =
base::MakeRefCounted<net::HttpResponseHeaders>(response);
test_url_loader_factory_.AddResponse(
GaiaUrls::GetInstance()->oauth2_token_url(), std::move(response_head),
response_data, completion_status);
base::RunLoop().RunUntilIdle();
}
void SyncTest::ClearMockGaiaResponses() {
// Clear any mock gaia responses that might have been set.
test_url_loader_factory_.ClearResponses();
}
bool SyncTest::TestUsesSelfNotifications() {
// Default is True unless we are running against external servers.
return server_type_ != EXTERNAL_LIVE_SERVER;
}
bool SyncTest::AwaitQuiescence() {
return SyncServiceImplHarness::AwaitQuiescence(GetSyncClients());
}
void SyncTest::TriggerMigrationDoneError(syncer::DataTypeSet data_types) {
ASSERT_TRUE(server_type_ == IN_PROCESS_FAKE_SERVER);
fake_server_->TriggerMigrationDoneError(data_types);
}
fake_server::FakeServer* SyncTest::GetFakeServer() const {
return fake_server_.get();
}
void SyncTest::TriggerSyncForDataTypes(int index,
syncer::DataTypeSet data_types) {
GetSyncService(index)->TriggerRefresh(data_types);
}
arc::SyncArcPackageHelper* SyncTest::sync_arc_helper() {
#if BUILDFLAG(IS_CHROMEOS)
return arc::SyncArcPackageHelper::GetInstance();
#else
return nullptr;
#endif
}
std::string SyncTest::GetCacheGuid(size_t profile_index) const {
syncer::SyncTransportDataPrefs prefs(
GetProfile(profile_index)->GetPrefs(),
GetClient(profile_index)->GetGaiaIdHashForPrimaryAccount());
return prefs.GetCacheGuid();
}
bool SyncTest::WaitForAsyncChangesToBeCommitted(size_t profile_index) const {
// This is a workaround for E2E tests because currently there is no a good way
// to wait for asynchronous commits to the external servers. Although
// CommittedAllNudgedChangesChecker will wait for all the local changes to be
// committed, it doesn't cover all the cases.
if (server_type_ != EXTERNAL_LIVE_SERVER) {
// Wait for committing DeviceInfo with sharing_fields, it may happen
// asynchronously due to FCM token registration.
if (GetSyncService(profile_index)
->GetPreferredDataTypes()
.Has(syncer::SHARING_MESSAGE)) {
if (!device_info_helper::WaitForFullDeviceInfoCommitted(
GetCacheGuid(profile_index))) {
return false;
}
}
#if BUILDFLAG(IS_ANDROID)
// On Android, default about:blank page is loaded by default. Wait for
// Session to be committed to prevent unexpected commit requests during
// test. It shouldn't be called when custom passphrase is enabled because
// SessionHierarchyMatchChecker doesn't support custom passphrases.
if (!SessionHierarchyMatchChecker(
fake_server::SessionsHierarchy({{url::kAboutBlankURL}}),
GetSyncService(profile_index), GetFakeServer())
.Wait()) {
return false;
}
#endif // BUILDFLAG(IS_ANDROID)
}
// Wait for any other locally nudged changes to be committed.
if (!CommittedAllNudgedChangesChecker(GetSyncService(profile_index)).Wait()) {
return false;
}
return true;
}
void SyncTest::CheckForDataTypeFailures(size_t client_index) const {
DCHECK(GetClient(client_index));
auto* service = GetClient(client_index)->service();
syncer::DataTypeSet types_to_check = service->GetRegisteredDataTypesForTest();
types_to_check.RemoveAll(excluded_types_from_check_for_data_type_failures_);
ASSERT_FALSE(service->HasAnyModelErrorForTest(types_to_check))
<< " for client " << client_index << " and types "
<< syncer::DataTypeSetToDebugString(types_to_check);
}
void SyncTest::ExcludeDataTypesFromCheckForDataTypeFailures(
syncer::DataTypeSet types) {
excluded_types_from_check_for_data_type_failures_ = types;
}
// The set of types that *can* run in transport mode. Doesn't mean they are all
// enabled by default, e.g. HISTORY requires a dedicated opt-in via
// SyncUserSettings::SetSelectedTypes().
syncer::DataTypeSet AllowedTypesInStandaloneTransportMode() {
static_assert(55 == syncer::GetNumDataTypes(),
"Add new types below if they can run in transport mode");
#if BUILDFLAG(IS_ANDROID)
// On Android, `kReplaceSyncPromosWithSignInPromos` has been enabled by
// default for a long time, so it is not expected to be exercised in tests.
CHECK(
base::FeatureList::IsEnabled(syncer::kReplaceSyncPromosWithSignInPromos));
#endif // BUILDFLAG(IS_ANDROID)
// Only some types will run by default in transport mode (i.e. without their
// own separate opt-in).
syncer::DataTypeSet allowed_types = {syncer::AUTOFILL_WALLET_CREDENTIAL,
syncer::AUTOFILL_WALLET_DATA,
syncer::AUTOFILL_WALLET_USAGE,
syncer::DEVICE_INFO,
syncer::SECURITY_EVENTS,
syncer::SEND_TAB_TO_SELF,
syncer::SHARING_MESSAGE,
syncer::USER_CONSENTS};
allowed_types.PutAll(syncer::ControlTypes());
#if BUILDFLAG(IS_CHROMEOS)
// OS sync types run in transport mode.
allowed_types.PutAll({syncer::APP_LIST, syncer::ARC_PACKAGE,
syncer::OS_PREFERENCES,
syncer::OS_PRIORITY_PREFERENCES});
#endif // BUILDFLAG(IS_CHROMEOS)
allowed_types.Put(syncer::CONTACT_INFO);
if (base::FeatureList::IsEnabled(
switches::kEnablePreferencesAccountStorage)) {
allowed_types.Put(syncer::PREFERENCES);
allowed_types.Put(syncer::PRIORITY_PREFERENCES);
}
if (base::FeatureList::IsEnabled(
switches::kSyncEnableBookmarksInTransportMode)) {
allowed_types.Put(syncer::BOOKMARKS);
}
if (syncer::IsReadingListAccountStorageEnabled()) {
allowed_types.Put(syncer::READING_LIST);
}
if (base::FeatureList::IsEnabled(
syncer::kReplaceSyncPromosWithSignInPromos)) {
allowed_types.Put(syncer::AUTOFILL_WALLET_METADATA);
allowed_types.Put(syncer::AUTOFILL_WALLET_OFFER);
allowed_types.Put(syncer::HISTORY);
allowed_types.Put(syncer::HISTORY_DELETE_DIRECTIVES);
allowed_types.Put(syncer::SAVED_TAB_GROUP);
allowed_types.Put(syncer::SESSIONS);
allowed_types.Put(syncer::USER_EVENTS);
if (data_sharing::features::IsDataSharingFunctionalityEnabled()) {
allowed_types.Put(syncer::SHARED_TAB_GROUP_DATA);
allowed_types.Put(syncer::COLLABORATION_GROUP);
if (base::FeatureList::IsEnabled(
syncer::kSyncSharedTabGroupAccountData)) {
allowed_types.Put(syncer::SHARED_TAB_GROUP_ACCOUNT_DATA);
}
}
if (base::FeatureList::IsEnabled(commerce::kProductSpecifications)) {
allowed_types.Put(syncer::PRODUCT_COMPARISON);
}
#if BUILDFLAG(ENABLE_EXTENSIONS)
if (base::FeatureList::IsEnabled(
switches::kEnableExtensionsExplicitBrowserSignin)) {
allowed_types.Put(syncer::EXTENSIONS);
allowed_types.Put(syncer::EXTENSION_SETTINGS);
}
#endif // BUILDFLAG(ENABLE_EXTENSIONS)
}
if (base::FeatureList::IsEnabled(syncer::kSyncAutofillLoyaltyCard)) {
allowed_types.Put(syncer::AUTOFILL_VALUABLE);
}
#if BUILDFLAG(IS_ANDROID) && !BUILDFLAG(USE_LOGIN_DATABASE_AS_BACKEND)
// On Android, PASSWORDS require that Google Play Services is present.
password_manager_android_util::PasswordManagerUtilBridge util_bridge;
if (util_bridge.IsInternalBackendPresent()) {
allowed_types.Put(syncer::PASSWORDS);
}
#else // BUILDFLAG(IS_ANDROID) && !BUILDFLAG(USE_LOGIN_DATABASE_AS_BACKEND)
allowed_types.Put(syncer::PASSWORDS);
#endif // BUILDFLAG(IS_ANDROID) && !BUILDFLAG(USE_LOGIN_DATABASE_AS_BACKEND)
#if BUILDFLAG(IS_ANDROID)
// TODO(crbug.com/420912307): Allow `syncer::WEB_APKS` if
// `syncer::kWebApkBackupAndRestoreBackend` is enabled.
#else // BUILDFLAG(IS_ANDROID)
if (base::FeatureList::IsEnabled(syncer::kSeparateLocalAndAccountThemes)) {
allowed_types.Put(syncer::THEMES);
}
if (base::FeatureList::IsEnabled(
syncer::kSeparateLocalAndAccountSearchEngines)) {
allowed_types.Put(syncer::SEARCH_ENGINES);
}
// These types are excluded on Android as they run outside Chrome.
allowed_types.Put(syncer::INCOMING_PASSWORD_SHARING_INVITATION);
allowed_types.Put(syncer::OUTGOING_PASSWORD_SHARING_INVITATION);
allowed_types.Put(syncer::WEBAUTHN_CREDENTIAL);
#endif // BUILDFLAG(IS_ANDROID)
if (base::FeatureList::IsEnabled(
plus_addresses::features::kPlusAddressesEnabled) &&
!plus_addresses::features::kEnterprisePlusAddressServerUrl.Get()
.empty()) {
allowed_types.Put(syncer::PLUS_ADDRESS);
allowed_types.Put(syncer::PLUS_ADDRESS_SETTING);
}
return allowed_types;
}
|