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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// 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 <stddef.h>
#include <stdint.h>
#include <limits>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/files/scoped_temp_dir.h"
#include "base/guid.h"
#include "base/memory/ptr_util.h"
#include "base/memory/ref_counted.h"
#include "base/message_loop/message_loop.h"
#include "base/path_service.h"
#include "base/process/launch.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/synchronization/waitable_event.h"
#include "base/test/test_timeouts.h"
#include "base/threading/platform_thread.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/history/history_service_factory.h"
#include "chrome/browser/invalidation/profile_invalidation_provider_factory.h"
#include "chrome/browser/lifetime/application_lifetime.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
#include "chrome/browser/signin/signin_manager_factory.h"
#include "chrome/browser/sync/profile_sync_service_factory.h"
#include "chrome/browser/sync/test/integration/fake_server_invalidation_service.h"
#include "chrome/browser/sync/test/integration/p2p_invalidation_forwarder.h"
#include "chrome/browser/sync/test/integration/p2p_sync_refresher.h"
#include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
#include "chrome/browser/sync/test/integration/single_client_status_change_checker.h"
#include "chrome/browser/sync/test/integration/sync_datatype_helper.h"
#include "chrome/browser/sync/test/integration/sync_integration_test_util.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.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 "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/test/base/search_test_utils.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/bookmarks/test/bookmark_test_helpers.h"
#include "components/browser_sync/profile_sync_service.h"
#include "components/google/core/browser/google_url_tracker.h"
#include "components/invalidation/impl/invalidation_switches.h"
#include "components/invalidation/impl/p2p_invalidation_service.h"
#include "components/invalidation/impl/p2p_invalidator.h"
#include "components/invalidation/impl/profile_invalidation_provider.h"
#include "components/invalidation/public/invalidation_service.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/os_crypt/os_crypt_mocker.h"
#include "components/search_engines/template_url_service.h"
#include "components/signin/core/browser/profile_identity_provider.h"
#include "components/signin/core/browser/signin_manager.h"
#include "components/sync/base/invalidation_helper.h"
#include "components/sync/driver/sync_driver_switches.h"
#include "components/sync/engine_impl/sync_scheduler_impl.h"
#include "components/sync/protocol/sync.pb.h"
#include "components/sync/test/fake_server/fake_server_network_resources.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/test_browser_thread.h"
#include "google_apis/gaia/gaia_urls.h"
#include "net/base/escape.h"
#include "net/base/load_flags.h"
#include "net/base/network_change_notifier.h"
#include "net/base/port_util.h"
#include "net/url_request/test_url_fetcher_factory.h"
#include "net/url_request/url_fetcher.h"
#include "net/url_request/url_fetcher_delegate.h"
#include "url/gurl.h"
#if defined(OS_CHROMEOS)
#include "chromeos/chromeos_switches.h"
#endif
using browser_sync::ProfileSyncService;
using content::BrowserThread;
namespace switches {
const char kPasswordFileForTest[] = "password-file-for-test";
const char kSyncUserForTest[] = "sync-user-for-test";
const char kSyncPasswordForTest[] = "sync-password-for-test";
const char kSyncServerCommandLine[] = "sync-server-command-line";
}
namespace {
// Helper class to ensure a profile is registered before the manager is
// notified of creation.
class SyncProfileDelegate : public Profile::Delegate {
public:
explicit SyncProfileDelegate(
const base::Callback<void(Profile*)>& on_profile_created_callback)
: on_profile_created_callback_(on_profile_created_callback) {}
~SyncProfileDelegate() override {}
void OnProfileCreated(Profile* profile,
bool success,
bool is_new_profile) override {
g_browser_process->profile_manager()->RegisterTestingProfile(profile,
true,
false);
// Perform any custom work needed before the profile is initialized.
if (!on_profile_created_callback_.is_null())
on_profile_created_callback_.Run(profile);
g_browser_process->profile_manager()->OnProfileCreated(profile, success,
is_new_profile);
}
private:
base::Callback<void(Profile*)> on_profile_created_callback_;
DISALLOW_COPY_AND_ASSIGN(SyncProfileDelegate);
};
// Helper class that checks whether a sync test server is running or not.
class SyncServerStatusChecker : public net::URLFetcherDelegate {
public:
SyncServerStatusChecker() : running_(false) {}
void OnURLFetchComplete(const net::URLFetcher* source) override {
std::string data;
source->GetResponseAsString(&data);
running_ =
(source->GetStatus().status() == net::URLRequestStatus::SUCCESS &&
source->GetResponseCode() == 200 &&
base::StartsWith(data, "ok", base::CompareCase::SENSITIVE));
base::MessageLoop::current()->QuitWhenIdle();
}
bool running() const { return running_; }
private:
bool running_;
};
bool IsEncryptionComplete(const ProfileSyncService* service) {
return service->IsEncryptEverythingEnabled() &&
!service->encryption_pending();
}
// Helper class to wait for encryption to complete.
class EncryptionChecker : public SingleClientStatusChangeChecker {
public:
explicit EncryptionChecker(ProfileSyncService* service)
: SingleClientStatusChangeChecker(service) {}
bool IsExitConditionSatisfied() override {
return IsEncryptionComplete(service());
}
std::string GetDebugMessage() const override { return "Encryption"; }
};
std::unique_ptr<KeyedService> BuildFakeServerProfileInvalidationProvider(
content::BrowserContext* context) {
return base::MakeUnique<invalidation::ProfileInvalidationProvider>(
std::unique_ptr<invalidation::InvalidationService>(
new fake_server::FakeServerInvalidationService));
}
std::unique_ptr<KeyedService> BuildP2PProfileInvalidationProvider(
content::BrowserContext* context,
syncer::P2PNotificationTarget notification_target) {
Profile* profile = static_cast<Profile*>(context);
return base::MakeUnique<invalidation::ProfileInvalidationProvider>(
std::unique_ptr<invalidation::InvalidationService>(
new invalidation::P2PInvalidationService(
std::unique_ptr<IdentityProvider>(new ProfileIdentityProvider(
SigninManagerFactory::GetForProfile(profile),
ProfileOAuth2TokenServiceFactory::GetForProfile(profile),
LoginUIServiceFactory::GetShowLoginPopupCallbackForProfile(
profile))),
profile->GetRequestContext(), notification_target)));
}
std::unique_ptr<KeyedService> BuildSelfNotifyingP2PProfileInvalidationProvider(
content::BrowserContext* context) {
return BuildP2PProfileInvalidationProvider(context, syncer::NOTIFY_ALL);
}
std::unique_ptr<KeyedService> BuildRealisticP2PProfileInvalidationProvider(
content::BrowserContext* context) {
return BuildP2PProfileInvalidationProvider(context, syncer::NOTIFY_OTHERS);
}
} // namespace
SyncTest::SyncTest(TestType test_type)
: test_type_(test_type),
server_type_(SERVER_TYPE_UNDECIDED),
num_clients_(-1),
use_verifier_(true),
notifications_enabled_(true),
create_gaia_account_at_runtime_(false) {
sync_datatype_helper::AssociateWithTest(this);
switch (test_type_) {
case SINGLE_CLIENT:
case SINGLE_CLIENT_LEGACY: {
num_clients_ = 1;
break;
}
case TWO_CLIENT:
case TWO_CLIENT_LEGACY: {
num_clients_ = 2;
break;
}
default:
NOTREACHED() << "Invalid test type specified.";
}
}
SyncTest::~SyncTest() {}
void SyncTest::SetUp() {
// Sets |server_type_| if it wasn't specified by the test.
DecideServerType();
base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
if (cl->HasSwitch(switches::kPasswordFileForTest)) {
ReadPasswordFile();
} else {
// Decide on username to use or create one.
if (cl->HasSwitch(switches::kSyncUserForTest)) {
username_ = cl->GetSwitchValueASCII(switches::kSyncUserForTest);
} else if (UsingExternalServers()) {
// We assume the need to automatically create a Gaia account which
// requires URL navigation and needs to be done outside SetUp() function.
create_gaia_account_at_runtime_ = true;
username_ = base::GenerateGUID();
} else {
username_ = "user@gmail.com";
}
// Decide on password to use.
password_ = cl->HasSwitch(switches::kSyncPasswordForTest)
? cl->GetSwitchValueASCII(switches::kSyncPasswordForTest)
: "password";
}
if (username_.empty() || password_.empty())
LOG(FATAL) << "Cannot run sync tests without GAIA credentials.";
// Mock the Mac Keychain service. The real Keychain can block on user input.
OSCryptMocker::SetUpWithSingleton();
// Start up a sync test server if one is needed and setup mock gaia responses.
// Note: This must be done prior to the call to SetupClients() because we want
// the mock gaia responses to be available before GaiaUrls is initialized.
SetUpTestServerIfRequired();
// Yield control back to the InProcessBrowserTest framework.
InProcessBrowserTest::SetUp();
}
void SyncTest::TearDown() {
// Clear any mock gaia responses that might have been set.
ClearMockGaiaResponses();
// Allow the InProcessBrowserTest framework to perform its tear down.
InProcessBrowserTest::TearDown();
// Stop the local python test server. This is a no-op if one wasn't started.
TearDownLocalPythonTestServer();
// Stop the local sync test server. This is a no-op if one wasn't started.
TearDownLocalTestServer();
// Return OSCrypt to its real behaviour
OSCryptMocker::TearDown();
fake_server_.reset();
}
void SyncTest::SetUpCommandLine(base::CommandLine* cl) {
AddTestSwitches(cl);
AddOptionalTypesToCommandLine(cl);
#if defined(OS_CHROMEOS)
cl->AppendSwitch(chromeos::switches::kIgnoreUserProfileMappingForTests);
#endif
}
void SyncTest::AddTestSwitches(base::CommandLine* cl) {
// Disable non-essential access of external network resources.
if (!cl->HasSwitch(switches::kDisableBackgroundNetworking))
cl->AppendSwitch(switches::kDisableBackgroundNetworking);
if (!cl->HasSwitch(switches::kSyncShortInitialRetryOverride))
cl->AppendSwitch(switches::kSyncShortInitialRetryOverride);
if (!cl->HasSwitch(switches::kSyncShortNudgeDelayForTest))
cl->AppendSwitch(switches::kSyncShortNudgeDelayForTest);
}
void SyncTest::AddOptionalTypesToCommandLine(base::CommandLine* cl) {}
bool SyncTest::CreateGaiaAccount(const std::string& username,
const std::string& password) {
std::string relative_url = base::StringPrintf("/CreateUsers?%s=%s",
username.c_str(),
password.c_str());
GURL create_user_url =
GaiaUrls::GetInstance()->gaia_url().Resolve(relative_url);
// NavigateToURL blocks until the navigation finishes.
ui_test_utils::NavigateToURL(browser(), create_user_url);
content::WebContents* contents =
browser()->tab_strip_model()->GetActiveWebContents();
content::NavigationEntry* entry = contents->GetController().GetVisibleEntry();
CHECK(entry) << "Could not get a hold on NavigationEntry post URL navigate.";
DVLOG(1) << "Create Gaia account request return code = "
<< entry->GetHttpStatusCode();
return entry->GetHttpStatusCode() == 200;
}
void SyncTest::CreateProfile(int index) {
tmp_profile_paths_[index] = new base::ScopedTempDir();
if (UsingExternalServers() && num_clients_ > 1) {
// For multi profile UI signin, profile paths should be outside user data
// dir to allow signing-in multiple profiles to same account. Otherwise, we
// get an error that the profile has already signed in on this device.
CHECK(tmp_profile_paths_[index]->CreateUniqueTempDir());
} else {
// Create new profiles in user data dir so that other profiles can know
// about it. This is needed in tests such as supervised user cases which
// assume browser->profile() as the custodian profile.
base::FilePath user_data_dir;
PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
CHECK(
tmp_profile_paths_[index]->CreateUniqueTempDirUnderPath(user_data_dir));
}
base::FilePath profile_path = tmp_profile_paths_[index]->GetPath();
if (UsingExternalServers()) {
// If running against an EXTERNAL_LIVE_SERVER, we signin profiles using real
// GAIA server. This requires creating profiles with no test hooks.
InitializeProfile(index, MakeProfileForUISignin(profile_path));
} else {
// Without need of real GAIA authentication, we create new test profiles.
// For test profiles, a custom delegate needs to be used to do the
// initialization work before the profile is registered.
profile_delegates_[index] =
base::MakeUnique<SyncProfileDelegate>(base::Bind(
&SyncTest::InitializeProfile, base::Unretained(this), index));
MakeTestProfile(profile_path, index);
}
// Once profile initialization has kicked off, wait for it to finish.
WaitForDataModels(GetProfile(index));
}
// Called when the ProfileManager has created a profile.
// static
void SyncTest::CreateProfileCallback(const base::Closure& quit_closure,
Profile* profile,
Profile::CreateStatus status) {
EXPECT_TRUE(profile);
EXPECT_NE(Profile::CREATE_STATUS_LOCAL_FAIL, status);
EXPECT_NE(Profile::CREATE_STATUS_REMOTE_FAIL, status);
// This will be called multiple times. Wait until the profile is initialized
// fully to quit the loop.
if (status == Profile::CREATE_STATUS_INITIALIZED)
quit_closure.Run();
}
// TODO(shadi): Ideally creating a new profile should not depend on signin
// process. We should try to consolidate MakeProfileForUISignin() and
// MakeProfile(). Major differences are profile paths and creation methods. For
// UI signin we need profiles in unique user data dir's and we need to use
// ProfileManager::CreateProfileAsync() for proper profile creation.
// static
Profile* SyncTest::MakeProfileForUISignin(base::FilePath profile_path) {
ProfileManager* profile_manager = g_browser_process->profile_manager();
base::RunLoop run_loop;
ProfileManager::CreateCallback create_callback = base::Bind(
&CreateProfileCallback, run_loop.QuitClosure());
profile_manager->CreateProfileAsync(profile_path,
create_callback,
base::string16(),
std::string(),
std::string());
run_loop.Run();
return profile_manager->GetProfileByPath(profile_path);
}
Profile* SyncTest::MakeTestProfile(base::FilePath profile_path, int index) {
if (!preexisting_preferences_file_contents_.empty()) {
base::FilePath pref_path(profile_path.Append(chrome::kPreferencesFilename));
const char* contents = preexisting_preferences_file_contents_.c_str();
size_t contents_length = preexisting_preferences_file_contents_.size();
if (!base::WriteFile(pref_path, contents, contents_length)) {
LOG(FATAL) << "Preexisting Preferences file could not be written.";
}
}
Profile* profile =
Profile::CreateProfile(profile_path, profile_delegates_[index].get(),
Profile::CREATE_MODE_SYNCHRONOUS);
return profile;
}
Profile* SyncTest::GetProfile(int index) {
if (profiles_.empty())
LOG(FATAL) << "SetupClients() has not yet been called.";
if (index < 0 || index >= static_cast<int>(profiles_.size()))
LOG(FATAL) << "GetProfile(): Index is out of bounds.";
return profiles_[index];
}
std::vector<Profile*> SyncTest::GetAllProfiles() {
std::vector<Profile*> profiles;
if (use_verifier()) {
profiles.push_back(verifier());
}
for (int i = 0; i < num_clients(); ++i) {
profiles.push_back(GetProfile(i));
}
return profiles;
}
Browser* SyncTest::GetBrowser(int index) {
if (browsers_.empty())
LOG(FATAL) << "SetupClients() has not yet been called.";
if (index < 0 || index >= static_cast<int>(browsers_.size()))
LOG(FATAL) << "GetBrowser(): Index is out of bounds.";
return browsers_[index];
}
ProfileSyncServiceHarness* SyncTest::GetClient(int index) {
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];
}
ProfileSyncService* SyncTest::GetSyncService(int index) {
return ProfileSyncServiceFactory::GetForProfile(GetProfile(index));
}
std::vector<ProfileSyncService*> SyncTest::GetSyncServices() {
std::vector<ProfileSyncService*> services;
for (int i = 0; i < num_clients(); ++i) {
services.push_back(GetSyncService(i));
}
return services;
}
Profile* SyncTest::verifier() {
if (!use_verifier_)
LOG(FATAL) << "Verifier account is disabled.";
if (verifier_ == nullptr)
LOG(FATAL) << "SetupClients() has not yet been called.";
return verifier_;
}
void SyncTest::DisableVerifier() {
use_verifier_ = false;
}
bool SyncTest::SetupClients() {
if (num_clients_ <= 0)
LOG(FATAL) << "num_clients_ incorrectly initialized.";
if (!profiles_.empty() || !browsers_.empty() || !clients_.empty())
LOG(FATAL) << "SetupClients() has already been called.";
// Create the required number of sync profiles, browsers and clients.
profiles_.resize(num_clients_);
profile_delegates_.resize(num_clients_ + 1); // + 1 for the verifier.
tmp_profile_paths_.resize(num_clients_);
browsers_.resize(num_clients_);
clients_.resize(num_clients_);
invalidation_forwarders_.resize(num_clients_);
sync_refreshers_.resize(num_clients_);
fake_server_invalidation_services_.resize(num_clients_);
if (create_gaia_account_at_runtime_) {
CHECK(UsingExternalServers()) <<
"Cannot create Gaia accounts without external authentication servers";
if (!CreateGaiaAccount(username_, password_))
LOG(FATAL) << "Could not create Gaia account.";
}
for (int i = 0; i < num_clients_; ++i) {
CreateProfile(i);
}
// Verifier account is not useful when running against external servers.
if (UsingExternalServers())
DisableVerifier();
// Create the verifier profile.
if (use_verifier_) {
base::FilePath user_data_dir;
PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
profile_delegates_[num_clients_] =
base::MakeUnique<SyncProfileDelegate>(base::Callback<void(Profile*)>());
verifier_ = MakeTestProfile(
user_data_dir.Append(FILE_PATH_LITERAL("Verifier")), num_clients_);
WaitForDataModels(verifier());
}
// Error cases are all handled by LOG(FATAL) messages. So there is not really
// a case that returns false. In case we failed to create a verifier profile,
// any call to the verifier() would fail.
return true;
}
void SyncTest::InitializeProfile(int index, Profile* profile) {
DCHECK(profile);
profiles_[index] = profile;
// CheckInitialState() assumes that no windows are open at startup.
browsers_[index] = new Browser(Browser::CreateParams(GetProfile(index)));
EXPECT_NE(nullptr, GetBrowser(index)) << "Could not create Browser " << index;
// Make sure the ProfileSyncService has been created before creating the
// ProfileSyncServiceHarness - some tests expect the ProfileSyncService to
// already exist.
ProfileSyncService* profile_sync_service =
ProfileSyncServiceFactory::GetForProfile(GetProfile(index));
if (server_type_ == IN_PROCESS_FAKE_SERVER) {
// TODO(pvalenzuela): Run the fake server via EmbeddedTestServer.
profile_sync_service->OverrideNetworkResourcesForTest(
base::WrapUnique<syncer::NetworkResources>(
new fake_server::FakeServerNetworkResources(
fake_server_->AsWeakPtr())));
}
ProfileSyncServiceHarness::SigninType singin_type = UsingExternalServers()
? ProfileSyncServiceHarness::SigninType::UI_SIGNIN
: ProfileSyncServiceHarness::SigninType::FAKE_SIGNIN;
clients_[index] =
ProfileSyncServiceHarness::Create(GetProfile(index),
username_,
password_,
singin_type);
EXPECT_NE(nullptr, GetClient(index)) << "Could not create Client " << index;
InitializeInvalidations(index);
}
void SyncTest::InitializeInvalidations(int index) {
if (UsingExternalServers()) {
// DO NOTHING. External live sync servers use GCM to notify profiles of any
// invalidations in sync'ed data. In this case, to notify other profiles of
// invalidations, we use sync refresh notifications instead.
} else if (server_type_ == IN_PROCESS_FAKE_SERVER) {
CHECK(fake_server_.get());
fake_server::FakeServerInvalidationService* invalidation_service =
static_cast<fake_server::FakeServerInvalidationService*>(
static_cast<invalidation::ProfileInvalidationProvider*>(
invalidation::ProfileInvalidationProviderFactory::
GetInstance()->SetTestingFactoryAndUse(
GetProfile(index),
BuildFakeServerProfileInvalidationProvider))->
GetInvalidationService());
fake_server_->AddObserver(invalidation_service);
if (TestUsesSelfNotifications()) {
invalidation_service->EnableSelfNotifications();
} else {
invalidation_service->DisableSelfNotifications();
}
fake_server_invalidation_services_[index] = invalidation_service;
} else {
invalidation::P2PInvalidationService* p2p_invalidation_service =
static_cast<invalidation::P2PInvalidationService*>(
static_cast<invalidation::ProfileInvalidationProvider*>(
invalidation::ProfileInvalidationProviderFactory::
GetInstance()->SetTestingFactoryAndUse(
GetProfile(index),
TestUsesSelfNotifications() ?
BuildSelfNotifyingP2PProfileInvalidationProvider :
BuildRealisticP2PProfileInvalidationProvider))->
GetInvalidationService());
p2p_invalidation_service->UpdateCredentials(username_, password_);
// Start listening for and emitting notifications of commits.
invalidation_forwarders_[index] =
new P2PInvalidationForwarder(clients_[index]->service(),
p2p_invalidation_service);
}
}
bool SyncTest::SetupSync() {
// Create sync profiles and clients if they haven't already been created.
if (profiles_.empty()) {
if (!SetupClients()) {
LOG(FATAL) << "SetupClients() failed.";
return false;
}
}
// Sync each of the profiles.
for (int i = 0; i < num_clients_; ++i) {
if (!GetClient(i)->SetupSync()) {
LOG(FATAL) << "SetupSync() failed.";
return false;
}
}
// Because clients may modify sync data as part of startup (for example local
// session-releated 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 quiescense. They'll
// have to find their own way of waiting for an initial state if they really
// need such guarantees.
if (TestUsesSelfNotifications()) {
if (!AwaitQuiescence()) {
LOG(FATAL) << "AwaitQuiescence() failed.";
return false;
}
}
// SyncRefresher is used instead of invalidations to notify other profiles to
// do a sync refresh on committed data sets. This is only needed when running
// tests against external live server, otherwise invalidation service is used.
// With external live servers, the profiles commit data on first sync cycle
// automatically after signing in. To avoid misleading sync commit
// notifications at start up, we start the SyncRefresher observers post
// client set up.
if (UsingExternalServers()) {
for (int i = 0; i < num_clients_; ++i) {
sync_refreshers_[i] =
new P2PSyncRefresher(GetProfile(i), clients_[i]->service());
}
// 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);
}
}
return true;
}
void SyncTest::TearDownOnMainThread() {
for (size_t i = 0; i < clients_.size(); ++i) {
clients_[i]->service()->RequestStop(ProfileSyncService::CLEAR_DATA);
}
// 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.
size_t init_browser_count = chrome::GetTotalBrowserCount();
for (size_t i = 0; i < browsers_.size(); ++i) {
CloseBrowserSynchronously(browsers_[i]);
}
CHECK_EQ(chrome::GetTotalBrowserCount(),
init_browser_count - browsers_.size());
if (fake_server_.get()) {
std::vector<fake_server::FakeServerInvalidationService*>::const_iterator it;
for (it = fake_server_invalidation_services_.begin();
it != fake_server_invalidation_services_.end(); ++it) {
fake_server_->RemoveObserver(*it);
}
}
invalidation_forwarders_.clear();
sync_refreshers_.clear();
fake_server_invalidation_services_.clear();
clients_.clear();
}
void SyncTest::SetUpInProcessBrowserTestFixture() {
// We don't take a reference to |resolver|, but mock_host_resolver_override_
// does, so effectively assumes ownership.
net::RuleBasedHostResolverProc* resolver =
new net::RuleBasedHostResolverProc(host_resolver());
resolver->AllowDirectLookup("*.google.com");
// Allow connection to googleapis.com for oauth token requests in E2E tests.
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.
resolver->AllowDirectLookup("*.thawte.com");
resolver->AllowDirectLookup("*.geotrust.com");
resolver->AllowDirectLookup("*.gstatic.com");
mock_host_resolver_override_ =
base::MakeUnique<net::ScopedDefaultHostResolverProc>(resolver);
}
void SyncTest::TearDownInProcessBrowserTestFixture() {
mock_host_resolver_override_.reset();
}
void SyncTest::WaitForDataModels(Profile* profile) {
bookmarks::test::WaitForBookmarkModelToLoad(
BookmarkModelFactory::GetForBrowserContext(profile));
ui_test_utils::WaitForHistoryToLoad(HistoryServiceFactory::GetForProfile(
profile, ServiceAccessType::EXPLICIT_ACCESS));
search_test_utils::WaitForTemplateURLServiceToLoad(
TemplateURLServiceFactory::GetForProfile(profile));
}
void SyncTest::ReadPasswordFile() {
base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
password_file_ = cl->GetSwitchValuePath(switches::kPasswordFileForTest);
if (password_file_.empty())
LOG(FATAL) << "Can't run live server test without specifying --"
<< switches::kPasswordFileForTest << "=<filename>";
std::string file_contents;
base::ReadFileToString(password_file_, &file_contents);
ASSERT_NE(file_contents, "") << "Password file \""
<< password_file_.value() << "\" does not exist.";
std::vector<std::string> tokens = base::SplitString(
file_contents, "\r\n", base::KEEP_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
ASSERT_EQ(2U, tokens.size()) << "Password file \""
<< password_file_.value()
<< "\" must contain exactly two lines of text.";
username_ = tokens[0];
password_ = tokens[1];
}
void SyncTest::SetupMockGaiaResponses() {
factory_ = base::MakeUnique<net::URLFetcherImplFactory>();
fake_factory_ = base::MakeUnique<net::FakeURLFetcherFactory>(factory_.get());
fake_factory_->SetFakeResponse(
GaiaUrls::GetInstance()->get_user_info_url(),
"email=user@gmail.com\ndisplayEmail=user@gmail.com",
net::HTTP_OK,
net::URLRequestStatus::SUCCESS);
fake_factory_->SetFakeResponse(
GaiaUrls::GetInstance()->issue_auth_token_url(),
"auth",
net::HTTP_OK,
net::URLRequestStatus::SUCCESS);
fake_factory_->SetFakeResponse(
GURL(GoogleURLTracker::kSearchDomainCheckURL),
".google.com",
net::HTTP_OK,
net::URLRequestStatus::SUCCESS);
fake_factory_->SetFakeResponse(
GaiaUrls::GetInstance()->client_login_to_oauth2_url(),
"some_response",
net::HTTP_OK,
net::URLRequestStatus::SUCCESS);
fake_factory_->SetFakeResponse(
GaiaUrls::GetInstance()->oauth2_token_url(),
"{"
" \"refresh_token\": \"rt1\","
" \"access_token\": \"at1\","
" \"expires_in\": 3600,"
" \"token_type\": \"Bearer\""
"}",
net::HTTP_OK,
net::URLRequestStatus::SUCCESS);
fake_factory_->SetFakeResponse(
GaiaUrls::GetInstance()->oauth_user_info_url(),
"{"
" \"id\": \"12345\""
"}",
net::HTTP_OK,
net::URLRequestStatus::SUCCESS);
fake_factory_->SetFakeResponse(
GaiaUrls::GetInstance()->oauth1_login_url(),
"SID=sid\nLSID=lsid\nAuth=auth_token",
net::HTTP_OK,
net::URLRequestStatus::SUCCESS);
fake_factory_->SetFakeResponse(
GaiaUrls::GetInstance()->oauth2_revoke_url(),
"",
net::HTTP_OK,
net::URLRequestStatus::SUCCESS);
}
void SyncTest::SetOAuth2TokenResponse(const std::string& response_data,
net::HttpStatusCode response_code,
net::URLRequestStatus::Status status) {
ASSERT_NE(nullptr, fake_factory_.get());
fake_factory_->SetFakeResponse(GaiaUrls::GetInstance()->oauth2_token_url(),
response_data, response_code, status);
}
void SyncTest::ClearMockGaiaResponses() {
// Clear any mock gaia responses that might have been set.
if (fake_factory_) {
fake_factory_->ClearFakeResponses();
fake_factory_.reset();
}
// Cancel any outstanding URL fetches and destroy the URLFetcherImplFactory we
// created.
net::URLFetcher::CancelAll();
factory_.reset();
}
void SyncTest::DecideServerType() {
// Only set |server_type_| if it hasn't already been set. This allows for
// tests to explicitly set this value in each test class if needed.
if (server_type_ == SERVER_TYPE_UNDECIDED) {
base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
if (!cl->HasSwitch(switches::kSyncServiceURL) &&
!cl->HasSwitch(switches::kSyncServerCommandLine)) {
// If neither a sync server URL nor a sync server command line is
// provided, start up a local sync test server and point Chrome
// to its URL. This is the most common configuration, and the only
// one that makes sense for most developers. FakeServer is the
// current solution but some scenarios are only supported by the
// legacy python server.
switch (test_type_) {
case SINGLE_CLIENT:
case TWO_CLIENT:
server_type_ = IN_PROCESS_FAKE_SERVER;
break;
default:
server_type_ = LOCAL_PYTHON_SERVER;
}
} else if (cl->HasSwitch(switches::kSyncServiceURL) &&
cl->HasSwitch(switches::kSyncServerCommandLine)) {
// If a sync server URL and a sync server command line are provided,
// start up a local sync server by running the command line. Chrome
// will connect to the server at the URL that was provided.
server_type_ = LOCAL_LIVE_SERVER;
} else if (cl->HasSwitch(switches::kSyncServiceURL) &&
!cl->HasSwitch(switches::kSyncServerCommandLine)) {
// If a sync server URL is provided, but not a server command line,
// it is assumed that the server is already running. Chrome will
// automatically connect to it at the URL provided. There is nothing
// to do here.
server_type_ = EXTERNAL_LIVE_SERVER;
} else {
// If a sync server command line is provided, but not a server URL,
// we flag an error.
LOG(FATAL) << "Can't figure out how to run a server.";
}
}
}
// Start up a local sync server based on the value of server_type_, which
// was determined from the command line parameters.
void SyncTest::SetUpTestServerIfRequired() {
if (UsingExternalServers()) {
// Nothing to do; we'll just talk to the URL we were given.
} else if (server_type_ == LOCAL_PYTHON_SERVER) {
if (!SetUpLocalPythonTestServer())
LOG(FATAL) << "Failed to set up local python sync and XMPP servers";
SetupMockGaiaResponses();
} else if (server_type_ == LOCAL_LIVE_SERVER) {
// Using mock gaia credentials requires the use of a mock XMPP server.
if (username_ == "user@gmail.com" && !SetUpLocalPythonTestServer())
LOG(FATAL) << "Failed to set up local python XMPP server";
if (!SetUpLocalTestServer())
LOG(FATAL) << "Failed to set up local test server";
} else if (server_type_ == IN_PROCESS_FAKE_SERVER) {
fake_server_ = base::MakeUnique<fake_server::FakeServer>();
SetupMockGaiaResponses();
} else {
LOG(FATAL) << "Don't know which server environment to run test in.";
}
}
bool SyncTest::SetUpLocalPythonTestServer() {
EXPECT_TRUE(sync_server_.Start())
<< "Could not launch local python test server.";
base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
if (server_type_ == LOCAL_PYTHON_SERVER) {
std::string sync_service_url = sync_server_.GetURL("chromiumsync").spec();
cl->AppendSwitchASCII(switches::kSyncServiceURL, sync_service_url);
DVLOG(1) << "Started local python sync server at " << sync_service_url;
}
int xmpp_port = 0;
if (!sync_server_.server_data().GetInteger("xmpp_port", &xmpp_port)) {
LOG(ERROR) << "Could not find valid xmpp_port value";
return false;
}
if ((xmpp_port <= 0) || (xmpp_port > std::numeric_limits<uint16_t>::max())) {
LOG(ERROR) << "Invalid xmpp port: " << xmpp_port;
return false;
}
net::HostPortPair xmpp_host_port_pair(sync_server_.host_port_pair());
xmpp_host_port_pair.set_port(xmpp_port);
xmpp_port_ = base::MakeUnique<net::ScopedPortException>(xmpp_port);
if (!cl->HasSwitch(invalidation::switches::kSyncNotificationHostPort)) {
cl->AppendSwitchASCII(invalidation::switches::kSyncNotificationHostPort,
xmpp_host_port_pair.ToString());
// The local XMPP server only supports insecure connections.
cl->AppendSwitch(invalidation::switches::kSyncAllowInsecureXmppConnection);
}
DVLOG(1) << "Started local python XMPP server at "
<< xmpp_host_port_pair.ToString();
return true;
}
bool SyncTest::SetUpLocalTestServer() {
base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
base::CommandLine::StringType server_cmdline_string =
cl->GetSwitchValueNative(switches::kSyncServerCommandLine);
base::CommandLine::StringVector server_cmdline_vector = base::SplitString(
server_cmdline_string, FILE_PATH_LITERAL(" "),
base::KEEP_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
base::CommandLine server_cmdline(server_cmdline_vector);
base::LaunchOptions options;
#if defined(OS_WIN)
options.start_hidden = true;
#endif
test_server_ = base::LaunchProcess(server_cmdline, options);
if (!test_server_.IsValid())
LOG(ERROR) << "Could not launch local test server.";
const base::TimeDelta kMaxWaitTime = TestTimeouts::action_max_timeout();
const int kNumIntervals = 15;
if (WaitForTestServerToStart(kMaxWaitTime, kNumIntervals)) {
DVLOG(1) << "Started local test server at "
<< cl->GetSwitchValueASCII(switches::kSyncServiceURL);
return true;
} else {
LOG(ERROR) << "Could not start local test server at "
<< cl->GetSwitchValueASCII(switches::kSyncServiceURL);
return false;
}
}
bool SyncTest::TearDownLocalPythonTestServer() {
if (!sync_server_.Stop()) {
LOG(ERROR) << "Could not stop local python test server.";
return false;
}
xmpp_port_.reset();
return true;
}
bool SyncTest::TearDownLocalTestServer() {
if (test_server_.IsValid()) {
EXPECT_TRUE(test_server_.Terminate(0, false))
<< "Could not stop local test server.";
test_server_.Close();
}
return true;
}
bool SyncTest::WaitForTestServerToStart(base::TimeDelta wait, int intervals) {
for (int i = 0; i < intervals; ++i) {
if (IsTestServerRunning())
return true;
base::PlatformThread::Sleep(wait / intervals);
}
return false;
}
bool SyncTest::IsTestServerRunning() {
base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
std::string sync_url = cl->GetSwitchValueASCII(switches::kSyncServiceURL);
GURL sync_url_status(sync_url.append("/healthz"));
SyncServerStatusChecker delegate;
std::unique_ptr<net::URLFetcher> fetcher =
net::URLFetcher::Create(sync_url_status, net::URLFetcher::GET, &delegate);
fetcher->SetLoadFlags(net::LOAD_DISABLE_CACHE |
net::LOAD_DO_NOT_SEND_COOKIES |
net::LOAD_DO_NOT_SAVE_COOKIES);
fetcher->SetRequestContext(g_browser_process->system_request_context());
fetcher->Start();
content::RunMessageLoop();
return delegate.running();
}
bool SyncTest::TestUsesSelfNotifications() {
// Default is True unless we are running against external servers.
return !UsingExternalServers();
}
bool SyncTest::EnableEncryption(int index) {
ProfileSyncService* service = GetClient(index)->service();
if (::IsEncryptionComplete(service))
return true;
service->EnableEncryptEverything();
// In order to kick off the encryption we have to reconfigure. Just grab the
// currently synced types and use them.
syncer::ModelTypeSet synced_datatypes = service->GetPreferredDataTypes();
bool sync_everything = (synced_datatypes == syncer::ModelTypeSet::All());
synced_datatypes.RetainAll(syncer::UserSelectableTypes());
service->OnUserChoseDatatypes(sync_everything, synced_datatypes);
return AwaitEncryptionComplete(index);
}
bool SyncTest::IsEncryptionComplete(int index) {
return ::IsEncryptionComplete(GetClient(index)->service());
}
bool SyncTest::AwaitEncryptionComplete(int index) {
ProfileSyncService* service = GetClient(index)->service();
return EncryptionChecker(service).Wait();
}
bool SyncTest::AwaitQuiescence() {
return ProfileSyncServiceHarness::AwaitQuiescence(clients());
}
bool SyncTest::UsingExternalServers() {
return server_type_ == EXTERNAL_LIVE_SERVER;
}
bool SyncTest::ServerSupportsNotificationControl() const {
EXPECT_NE(SERVER_TYPE_UNDECIDED, server_type_);
// Supported only if we're using the python testserver.
return server_type_ == LOCAL_PYTHON_SERVER;
}
void SyncTest::DisableNotificationsImpl() {
ASSERT_TRUE(ServerSupportsNotificationControl());
std::string path = "chromiumsync/disablenotifications";
ui_test_utils::NavigateToURL(browser(), sync_server_.GetURL(path));
ASSERT_EQ("Notifications disabled",
base::UTF16ToASCII(
browser()->tab_strip_model()->GetActiveWebContents()->
GetTitle()));
}
void SyncTest::DisableNotifications() {
DisableNotificationsImpl();
notifications_enabled_ = false;
}
void SyncTest::EnableNotificationsImpl() {
ASSERT_TRUE(ServerSupportsNotificationControl());
std::string path = "chromiumsync/enablenotifications";
ui_test_utils::NavigateToURL(browser(), sync_server_.GetURL(path));
ASSERT_EQ("Notifications enabled",
base::UTF16ToASCII(
browser()->tab_strip_model()->GetActiveWebContents()->
GetTitle()));
}
void SyncTest::EnableNotifications() {
EnableNotificationsImpl();
notifications_enabled_ = true;
}
void SyncTest::TriggerNotification(syncer::ModelTypeSet changed_types) {
ASSERT_TRUE(ServerSupportsNotificationControl());
const std::string& data =
syncer::P2PNotificationData(
"from_server",
syncer::NOTIFY_ALL,
syncer::ObjectIdInvalidationMap::InvalidateAll(
syncer::ModelTypeSetToObjectIdSet(changed_types))).ToString();
const std::string& path =
std::string("chromiumsync/sendnotification?channel=") +
syncer::kSyncP2PNotificationChannel + "&data=" + data;
ui_test_utils::NavigateToURL(browser(), sync_server_.GetURL(path));
ASSERT_EQ("Notification sent",
base::UTF16ToASCII(
browser()->tab_strip_model()->GetActiveWebContents()->
GetTitle()));
}
bool SyncTest::ServerSupportsErrorTriggering() const {
EXPECT_NE(SERVER_TYPE_UNDECIDED, server_type_);
// Supported only if we're using the python testserver.
return server_type_ == LOCAL_PYTHON_SERVER;
}
void SyncTest::TriggerMigrationDoneError(syncer::ModelTypeSet model_types) {
ASSERT_TRUE(ServerSupportsErrorTriggering());
std::string path = "chromiumsync/migrate";
char joiner = '?';
for (syncer::ModelTypeSet::Iterator it = model_types.First();
it.Good(); it.Inc()) {
path.append(
base::StringPrintf(
"%ctype=%d", joiner,
syncer::GetSpecificsFieldNumberFromModelType(it.Get())));
joiner = '&';
}
ui_test_utils::NavigateToURL(browser(), sync_server_.GetURL(path));
ASSERT_EQ("Migration: 200",
base::UTF16ToASCII(
browser()->tab_strip_model()->GetActiveWebContents()->
GetTitle()));
}
void SyncTest::TriggerXmppAuthError() {
ASSERT_TRUE(ServerSupportsErrorTriggering());
std::string path = "chromiumsync/xmppcred";
ui_test_utils::NavigateToURL(browser(), sync_server_.GetURL(path));
}
void SyncTest::TriggerCreateSyncedBookmarks() {
ASSERT_TRUE(ServerSupportsErrorTriggering());
std::string path = "chromiumsync/createsyncedbookmarks";
ui_test_utils::NavigateToURL(browser(), sync_server_.GetURL(path));
ASSERT_EQ("Synced Bookmarks",
base::UTF16ToASCII(
browser()->tab_strip_model()->GetActiveWebContents()->
GetTitle()));
}
fake_server::FakeServer* SyncTest::GetFakeServer() const {
return fake_server_.get();
}
void SyncTest::TriggerSyncForModelTypes(int index,
syncer::ModelTypeSet model_types) {
GetSyncService(index)->TriggerRefresh(model_types);
}
void SyncTest::SetPreexistingPreferencesFileContents(
const std::string& contents) {
preexisting_preferences_file_contents_ = contents;
}
|