blob: 4ece50ec5da2703abd691accaa5ccf6ab101b621 [file] [log] [blame]
// Copyright 2013 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 "components/sync/driver/glue/sync_engine_impl.h"
#include <cstddef>
#include <map>
#include <set>
#include <string>
#include <utility>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/location.h"
#include "base/run_loop.h"
#include "base/synchronization/waitable_event.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/test/test_timeouts.h"
#include "base/threading/sequenced_task_runner_handle.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/invalidation/impl/invalidation_logger.h"
#include "components/invalidation/impl/invalidation_switches.h"
#include "components/invalidation/impl/profile_invalidation_provider.h"
#include "components/invalidation/public/invalidation_service.h"
#include "components/invalidation/public/invalidation_util.h"
#include "components/invalidation/public/invalidator_state.h"
#include "components/sync/base/invalidation_helper.h"
#include "components/sync/base/model_type.h"
#include "components/sync/base/sync_prefs.h"
#include "components/sync/driver/sync_driver_switches.h"
#include "components/sync/engine/fake_sync_manager.h"
#include "components/sync/engine/model_safe_worker.h"
#include "components/sync/engine/net/http_bridge.h"
#include "components/sync/engine/passive_model_worker.h"
#include "components/sync/engine/sync_engine_host_stub.h"
#include "components/sync/engine/sync_manager_factory.h"
#include "components/sync/invalidations/mock_sync_invalidations_service.h"
#include "components/sync/invalidations/switches.h"
#include "components/sync/invalidations/sync_invalidations_service.h"
#include "components/sync/protocol/sync_invalidations_payload.pb.h"
#include "components/sync/test/callback_counter.h"
#include "components/sync_preferences/pref_service_syncable.h"
#include "components/sync_preferences/testing_pref_service_syncable.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "services/network/test/test_network_connection_tracker.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
using testing::_;
using testing::NiceMock;
using testing::NotNull;
namespace syncer {
namespace {
static const base::FilePath::CharType kTestSyncDir[] =
FILE_PATH_LITERAL("sync-test");
scoped_refptr<ModelSafeWorker> CreateModelWorkerForGroup(ModelSafeGroup group) {
switch (group) {
case GROUP_PASSIVE:
return new PassiveModelWorker();
default:
return nullptr;
}
}
class TestSyncEngineHost : public SyncEngineHostStub {
public:
explicit TestSyncEngineHost(
base::OnceCallback<void(ModelTypeSet)> set_engine_types)
: set_engine_types_(std::move(set_engine_types)) {}
void OnEngineInitialized(ModelTypeSet initial_types,
const WeakHandle<JsBackend>&,
const WeakHandle<DataTypeDebugInfoListener>&,
const std::string&,
const std::string&,
bool success) override {
EXPECT_EQ(expect_success_, success);
std::move(set_engine_types_).Run(initial_types);
std::move(quit_closure_).Run();
}
void SetExpectSuccess(bool expect_success) {
expect_success_ = expect_success;
}
void set_quit_closure(base::OnceClosure quit_closure) {
quit_closure_ = std::move(quit_closure);
}
private:
base::OnceCallback<void(ModelTypeSet)> set_engine_types_;
bool expect_success_ = false;
base::OnceClosure quit_closure_;
};
class FakeSyncManagerFactory : public SyncManagerFactory {
public:
explicit FakeSyncManagerFactory(
FakeSyncManager** fake_manager,
network::NetworkConnectionTracker* network_connection_tracker)
: SyncManagerFactory(network_connection_tracker),
should_fail_on_init_(false),
fake_manager_(fake_manager) {
*fake_manager_ = nullptr;
}
~FakeSyncManagerFactory() override {}
// SyncManagerFactory implementation. Called on the sync thread.
std::unique_ptr<SyncManager> CreateSyncManager(
const std::string& /* name */) override {
*fake_manager_ =
new FakeSyncManager(initial_sync_ended_types_, progress_marker_types_,
configure_fail_types_, should_fail_on_init_);
return std::unique_ptr<SyncManager>(*fake_manager_);
}
void set_initial_sync_ended_types(ModelTypeSet types) {
initial_sync_ended_types_ = types;
}
void set_progress_marker_types(ModelTypeSet types) {
progress_marker_types_ = types;
}
void set_configure_fail_types(ModelTypeSet types) {
configure_fail_types_ = types;
}
void set_should_fail_on_init(bool should_fail_on_init) {
should_fail_on_init_ = should_fail_on_init;
}
private:
ModelTypeSet initial_sync_ended_types_;
ModelTypeSet progress_marker_types_;
ModelTypeSet configure_fail_types_;
bool should_fail_on_init_;
FakeSyncManager** fake_manager_;
};
class MockInvalidationService : public invalidation::InvalidationService {
public:
MockInvalidationService() = default;
~MockInvalidationService() override = default;
MOCK_METHOD1(RegisterInvalidationHandler,
void(syncer::InvalidationHandler* handler));
MOCK_METHOD2(UpdateInterestedTopics,
bool(syncer::InvalidationHandler* handler,
const syncer::TopicSet& topics));
MOCK_METHOD1(UnregisterInvalidationHandler,
void(syncer::InvalidationHandler* handler));
MOCK_METHOD0(GetInvalidatorStat, syncer::InvalidatorState());
MOCK_CONST_METHOD0(GetInvalidatorState, syncer::InvalidatorState());
MOCK_CONST_METHOD0(GetInvalidatorClientId, std::string());
MOCK_METHOD0(GetInvalidationLogger, invalidation::InvalidationLogger*());
MOCK_CONST_METHOD1(RequestDetailedStatus,
void(base::RepeatingCallback<
void(const base::DictionaryValue&)> post_caller));
};
std::unique_ptr<HttpPostProviderFactory> CreateHttpBridgeFactory() {
return std::make_unique<HttpBridgeFactory>(
/*user_agent=*/"",
/*pending_url_loader_factory=*/nullptr,
/*network_time_update_callback=*/base::DoNothing());
}
class SyncEngineImplTest : public testing::Test {
protected:
SyncEngineImplTest()
: host_(base::BindOnce(&SyncEngineImplTest::SetEngineTypes,
base::Unretained(this))),
fake_manager_(nullptr) {}
~SyncEngineImplTest() override {}
void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
SyncPrefs::RegisterProfilePrefs(pref_service_.registry());
sync_prefs_ = std::make_unique<SyncPrefs>(&pref_service_);
ON_CALL(invalidator_, UpdateInterestedTopics(_, _))
.WillByDefault(testing::Return(true));
backend_ = std::make_unique<SyncEngineImpl>(
"dummyDebugName", &invalidator_, GetSyncInvalidationsService(),
sync_prefs_->AsWeakPtr(),
temp_dir_.GetPath().Append(base::FilePath(kTestSyncDir)));
fake_manager_factory_ = std::make_unique<FakeSyncManagerFactory>(
&fake_manager_, network::TestNetworkConnectionTracker::GetInstance());
// These types are always implicitly enabled.
enabled_types_.PutAll(ControlTypes());
// NOTE: We can't include Passwords or Typed URLs due to the Sync Backend
// Registrar removing them if it can't find their model workers.
enabled_types_.Put(BOOKMARKS);
enabled_types_.Put(PREFERENCES);
enabled_types_.Put(SESSIONS);
enabled_types_.Put(SEARCH_ENGINES);
enabled_types_.Put(AUTOFILL);
}
void TearDown() override {
if (backend_) {
backend_->StopSyncingForShutdown();
backend_->Shutdown(STOP_SYNC);
}
backend_.reset();
sync_prefs_.reset();
// Pump messages posted by the sync thread.
base::RunLoop().RunUntilIdle();
}
// Synchronously initializes the backend.
void InitializeBackend(bool expect_success) {
host_.SetExpectSuccess(expect_success);
SyncEngine::InitParams params;
params.host = &host_;
params.registrar = std::make_unique<SyncBackendRegistrar>(
std::string(), base::BindRepeating(&CreateModelWorkerForGroup));
params.http_factory_getter = base::BindOnce(&CreateHttpBridgeFactory);
params.authenticated_account_id = CoreAccountId("account_id");
params.sync_manager_factory = std::move(fake_manager_factory_);
params.invalidation_versions = sync_prefs_->GetInvalidationVersions();
backend_->Initialize(std::move(params));
PumpSyncThread();
// |fake_manager_factory_|'s fake_manager() is set on the sync
// thread, but we can rely on the message loop barriers to
// guarantee that we see the updated value.
DCHECK(fake_manager_);
}
// Synchronously configures the backend's datatypes.
ModelTypeSet ConfigureDataTypes() {
return ConfigureDataTypesWithUnready(ModelTypeSet());
}
ModelTypeSet ConfigureDataTypesWithUnready(ModelTypeSet unready_types) {
ModelTypeSet disabled_types =
Difference(ModelTypeSet::All(), enabled_types_);
ModelTypeConfigurer::ConfigureParams params;
params.reason = CONFIGURE_REASON_RECONFIGURATION;
params.enabled_types = Difference(enabled_types_, unready_types);
params.disabled_types = Union(disabled_types, unready_types);
params.to_download = Difference(params.enabled_types, engine_types_);
if (!params.to_download.Empty()) {
params.to_download.Put(NIGORI);
}
params.to_purge = Intersection(engine_types_, disabled_types);
params.ready_task = base::BindOnce(&SyncEngineImplTest::DownloadReady,
base::Unretained(this));
ModelTypeSet ready_types =
Difference(params.enabled_types, params.to_download);
backend_->ConfigureDataTypes(std::move(params));
PumpSyncThread();
return ready_types;
}
protected:
// Used to initialize SyncEngineImpl. Returns nullptr if there is no sync
// invalidations service enabled.
virtual SyncInvalidationsService* GetSyncInvalidationsService() {
return nullptr;
}
void DownloadReady(ModelTypeSet succeeded_types, ModelTypeSet failed_types) {
engine_types_.PutAll(succeeded_types);
std::move(quit_loop_).Run();
}
void SetEngineTypes(ModelTypeSet engine_types) {
EXPECT_TRUE(engine_types_.Empty());
engine_types_ = engine_types;
}
void PumpSyncThread() {
base::RunLoop run_loop;
quit_loop_ = run_loop.QuitClosure();
host_.set_quit_closure(run_loop.QuitClosure());
base::SequencedTaskRunnerHandle::Get()->PostDelayedTask(
FROM_HERE, run_loop.QuitClosure(), TestTimeouts::action_timeout());
run_loop.Run();
}
base::test::TaskEnvironment task_environment_;
base::ScopedTempDir temp_dir_;
sync_preferences::TestingPrefServiceSyncable pref_service_;
TestSyncEngineHost host_;
std::unique_ptr<SyncPrefs> sync_prefs_;
std::unique_ptr<SyncEngineImpl> backend_;
std::unique_ptr<FakeSyncManagerFactory> fake_manager_factory_;
FakeSyncManager* fake_manager_;
ModelTypeSet engine_types_;
ModelTypeSet enabled_types_;
base::OnceClosure quit_loop_;
testing::NiceMock<MockInvalidationService> invalidator_;
};
class SyncEngineImplWithSyncInvalidationsTest : public SyncEngineImplTest {
public:
SyncEngineImplWithSyncInvalidationsTest() {
override_features_.InitWithFeatures(
/*enabled_features=*/{switches::kSyncSendInterestedDataTypes,
switches::kUseSyncInvalidations},
/*disabled_features=*/{});
}
protected:
SyncInvalidationsService* GetSyncInvalidationsService() override {
return &mock_instance_id_driver_;
}
base::test::ScopedFeatureList override_features_;
NiceMock<MockSyncInvalidationsService> mock_instance_id_driver_;
};
class SyncEngineImplWithSyncInvalidationsForWalletAndOfferTest
: public SyncEngineImplTest {
public:
SyncEngineImplWithSyncInvalidationsForWalletAndOfferTest() {
override_features_.InitWithFeatures(
/*enabled_features=*/{switches::kSyncSendInterestedDataTypes,
switches::kUseSyncInvalidations,
switches::kUseSyncInvalidationsForWalletAndOffer},
/*disabled_features=*/{});
}
protected:
base::test::ScopedFeatureList override_features_;
};
// Test basic initialization with no initial types (first time initialization).
// Only the nigori should be configured.
TEST_F(SyncEngineImplTest, InitShutdown) {
InitializeBackend(true);
EXPECT_EQ(ControlTypes(), fake_manager_->GetAndResetDownloadedTypes());
EXPECT_EQ(ControlTypes(), fake_manager_->InitialSyncEndedTypes());
}
// Test first time sync scenario. All types should be properly configured.
TEST_F(SyncEngineImplTest, FirstTimeSync) {
InitializeBackend(true);
EXPECT_EQ(ControlTypes(), fake_manager_->GetAndResetDownloadedTypes());
EXPECT_EQ(ControlTypes(), fake_manager_->InitialSyncEndedTypes());
ModelTypeSet ready_types = ConfigureDataTypes();
// Nigori is always downloaded so won't be ready.
EXPECT_EQ(Difference(ControlTypes(), ModelTypeSet(NIGORI)), ready_types);
EXPECT_TRUE(fake_manager_->GetAndResetDownloadedTypes().HasAll(
Difference(enabled_types_, ControlTypes())));
EXPECT_EQ(enabled_types_, fake_manager_->InitialSyncEndedTypes());
}
// Test the restart after setting up sync scenario. No enabled types should be
// downloaded.
TEST_F(SyncEngineImplTest, Restart) {
sync_prefs_->SetFirstSetupComplete();
fake_manager_factory_->set_progress_marker_types(enabled_types_);
fake_manager_factory_->set_initial_sync_ended_types(enabled_types_);
InitializeBackend(true);
EXPECT_TRUE(fake_manager_->GetAndResetDownloadedTypes().Empty());
EXPECT_EQ(enabled_types_, fake_manager_->InitialSyncEndedTypes());
ModelTypeSet ready_types = ConfigureDataTypes();
EXPECT_EQ(enabled_types_, ready_types);
EXPECT_TRUE(fake_manager_->GetAndResetDownloadedTypes().Empty());
EXPECT_EQ(enabled_types_, fake_manager_->InitialSyncEndedTypes());
}
TEST_F(SyncEngineImplTest, DisableTypes) {
// Simulate first time sync.
InitializeBackend(true);
ModelTypeSet ready_types = ConfigureDataTypes();
// Nigori is always downloaded so won't be ready.
EXPECT_EQ(Difference(ControlTypes(), ModelTypeSet(NIGORI)), ready_types);
EXPECT_EQ(enabled_types_, fake_manager_->GetAndResetDownloadedTypes());
EXPECT_EQ(enabled_types_, fake_manager_->InitialSyncEndedTypes());
// Then disable two datatypes.
ModelTypeSet disabled_types(BOOKMARKS, SEARCH_ENGINES);
enabled_types_.RemoveAll(disabled_types);
ready_types = ConfigureDataTypes();
// Only those datatypes disabled should be cleaned. Nothing should be
// downloaded.
EXPECT_EQ(enabled_types_, ready_types);
EXPECT_TRUE(fake_manager_->GetAndResetDownloadedTypes().Empty());
}
TEST_F(SyncEngineImplTest, AddTypes) {
// Simulate first time sync.
InitializeBackend(true);
ModelTypeSet ready_types = ConfigureDataTypes();
// Nigori is always downloaded so won't be ready.
EXPECT_EQ(Difference(ControlTypes(), ModelTypeSet(NIGORI)), ready_types);
EXPECT_EQ(enabled_types_, fake_manager_->GetAndResetDownloadedTypes());
EXPECT_EQ(enabled_types_, fake_manager_->InitialSyncEndedTypes());
// Then add two datatypes.
ModelTypeSet new_types(EXTENSIONS, APPS);
enabled_types_.PutAll(new_types);
ready_types = ConfigureDataTypes();
// Only those datatypes added should be downloaded (plus nigori). Nothing
// should be cleaned aside from the disabled types.
new_types.Put(NIGORI);
EXPECT_EQ(Difference(enabled_types_, new_types), ready_types);
EXPECT_EQ(new_types, fake_manager_->GetAndResetDownloadedTypes());
EXPECT_EQ(enabled_types_, fake_manager_->InitialSyncEndedTypes());
}
// And and disable in the same configuration.
TEST_F(SyncEngineImplTest, AddDisableTypes) {
// Simulate first time sync.
InitializeBackend(true);
ModelTypeSet ready_types = ConfigureDataTypes();
// Nigori is always downloaded so won't be ready.
EXPECT_EQ(Difference(ControlTypes(), ModelTypeSet(NIGORI)), ready_types);
EXPECT_EQ(enabled_types_, fake_manager_->GetAndResetDownloadedTypes());
EXPECT_EQ(enabled_types_, fake_manager_->InitialSyncEndedTypes());
// Then add two datatypes.
ModelTypeSet disabled_types(BOOKMARKS, SEARCH_ENGINES);
ModelTypeSet new_types(EXTENSIONS, APPS);
enabled_types_.PutAll(new_types);
enabled_types_.RemoveAll(disabled_types);
ready_types = ConfigureDataTypes();
// Only those datatypes added should be downloaded (plus nigori). Nothing
// should be cleaned aside from the disabled types.
new_types.Put(NIGORI);
EXPECT_EQ(Difference(enabled_types_, new_types), ready_types);
EXPECT_EQ(new_types, fake_manager_->GetAndResetDownloadedTypes());
}
// Test restarting the browser to newly supported datatypes. The new datatypes
// should be downloaded on the configuration after backend initialization.
TEST_F(SyncEngineImplTest, NewlySupportedTypes) {
sync_prefs_->SetFirstSetupComplete();
// Set sync manager behavior before passing it down. All types have progress
// markers and initial sync ended except the new types.
ModelTypeSet old_types = enabled_types_;
fake_manager_factory_->set_progress_marker_types(old_types);
fake_manager_factory_->set_initial_sync_ended_types(old_types);
ModelTypeSet new_types(APP_SETTINGS, EXTENSION_SETTINGS);
enabled_types_.PutAll(new_types);
// Does nothing.
InitializeBackend(true);
EXPECT_TRUE(fake_manager_->GetAndResetDownloadedTypes().Empty());
EXPECT_EQ(old_types, fake_manager_->InitialSyncEndedTypes());
// Downloads and applies the new types (plus nigori).
ModelTypeSet ready_types = ConfigureDataTypes();
new_types.Put(NIGORI);
EXPECT_EQ(Difference(old_types, ModelTypeSet(NIGORI)), ready_types);
EXPECT_EQ(new_types, fake_manager_->GetAndResetDownloadedTypes());
EXPECT_EQ(enabled_types_, fake_manager_->InitialSyncEndedTypes());
}
// Verify that downloading control types only downloads those types that do
// not have initial sync ended set.
TEST_F(SyncEngineImplTest, DownloadControlTypes) {
sync_prefs_->SetFirstSetupComplete();
// Set sync manager behavior before passing it down. Experiments and device
// info are new types without progress markers or initial sync ended, while
// all other types have been fully downloaded and applied.
ModelTypeSet new_types(NIGORI);
ModelTypeSet old_types = Difference(enabled_types_, new_types);
fake_manager_factory_->set_progress_marker_types(old_types);
fake_manager_factory_->set_initial_sync_ended_types(old_types);
// Bringing up the backend should download the new types without downloading
// any old types.
InitializeBackend(true);
EXPECT_EQ(new_types, fake_manager_->GetAndResetDownloadedTypes());
EXPECT_EQ(enabled_types_, fake_manager_->InitialSyncEndedTypes());
}
// Fail to download control types. It's believed that there is a server bug
// which can allow this to happen (crbug.com/164288). The sync engine should
// detect this condition and fail to initialize the backend.
//
// The failure is "silent" in the sense that the GetUpdates request appears to
// be successful, but it returned no results. This means that the usual
// download retry logic will not be invoked.
TEST_F(SyncEngineImplTest, SilentlyFailToDownloadControlTypes) {
fake_manager_factory_->set_configure_fail_types(ModelTypeSet::All());
InitializeBackend(false);
}
// Test that local refresh requests are delivered to sync.
TEST_F(SyncEngineImplTest, ForwardLocalRefreshRequest) {
InitializeBackend(true);
ModelTypeSet set1 = ModelTypeSet::All();
backend_->TriggerRefresh(set1);
fake_manager_->WaitForSyncThread();
EXPECT_EQ(set1, fake_manager_->GetLastRefreshRequestTypes());
ModelTypeSet set2 = ModelTypeSet(SESSIONS);
backend_->TriggerRefresh(set2);
fake_manager_->WaitForSyncThread();
EXPECT_EQ(set2, fake_manager_->GetLastRefreshRequestTypes());
}
// Test that configuration on signin sends the proper GU source.
TEST_F(SyncEngineImplTest, DownloadControlTypesNewClient) {
InitializeBackend(true);
EXPECT_EQ(CONFIGURE_REASON_NEW_CLIENT,
fake_manager_->GetAndResetConfigureReason());
}
// Test that configuration on restart sends the proper GU source.
TEST_F(SyncEngineImplTest, DownloadControlTypesRestart) {
sync_prefs_->SetFirstSetupComplete();
fake_manager_factory_->set_progress_marker_types(enabled_types_);
fake_manager_factory_->set_initial_sync_ended_types(enabled_types_);
InitializeBackend(true);
EXPECT_EQ(CONFIGURE_REASON_NEWLY_ENABLED_DATA_TYPE,
fake_manager_->GetAndResetConfigureReason());
}
// If bookmarks encounter an error that results in disabling without purging
// (such as when the type is unready), and then is explicitly disabled, the
// SyncEngine needs to tell the manager to purge the type, even though
// it's already disabled (crbug.com/386778).
TEST_F(SyncEngineImplTest, DisableThenPurgeType) {
ModelTypeSet error_types(BOOKMARKS);
InitializeBackend(true);
// First enable the types.
ModelTypeSet ready_types = ConfigureDataTypes();
// Nigori is always downloaded so won't be ready.
EXPECT_EQ(Difference(ControlTypes(), ModelTypeSet(NIGORI)), ready_types);
// Then mark the error types as unready (disables without purging).
ready_types = ConfigureDataTypesWithUnready(error_types);
EXPECT_EQ(Difference(enabled_types_, error_types), ready_types);
// Lastly explicitly disable the error types, which should result in a purge.
enabled_types_.RemoveAll(error_types);
ready_types = ConfigureDataTypes();
EXPECT_EQ(Difference(enabled_types_, error_types), ready_types);
}
// Tests that SyncEngineImpl retains ModelTypeConnector after call to
// StopSyncingForShutdown. This is needed for datatype deactivation during
// DataTypeManager shutdown.
TEST_F(SyncEngineImplTest, ModelTypeConnectorValidDuringShutdown) {
InitializeBackend(true);
backend_->StopSyncingForShutdown();
// Verify that call to DeactivateNonBlockingDataType doesn't assert.
backend_->DeactivateNonBlockingDataType(AUTOFILL);
backend_->Shutdown(STOP_SYNC);
backend_.reset();
}
TEST_F(SyncEngineImplTest,
NoisyDataTypesInvalidationAreDiscardedByDefaultOnAndroid) {
// Making sure that the noisy types we're interested in are in the
// |enabled_types_|.
enabled_types_.Put(SESSIONS);
ModelTypeSet invalidation_enabled_types(
Difference(enabled_types_, CommitOnlyTypes()));
#if defined(OS_ANDROID)
// SESSIONS is a noisy data type whose invalidations aren't enabled by default
// on Android.
invalidation_enabled_types.Remove(SESSIONS);
#endif
InitializeBackend(true);
EXPECT_CALL(
invalidator_,
UpdateInterestedTopics(
backend_.get(), ModelTypeSetToTopicSet(invalidation_enabled_types)));
ConfigureDataTypes();
// At shutdown, we clear the registered invalidation ids.
EXPECT_CALL(invalidator_, UpdateInterestedTopics(backend_.get(), TopicSet()));
}
TEST_F(SyncEngineImplTest, WhenEnabledTypesStayDisabled) {
// Testing that noisy types doesn't used for registration, when
// they're disabled in Sync, hence removing noisy datatypes from
// |enabled_types_|.
enabled_types_.Remove(SESSIONS);
InitializeBackend(true);
EXPECT_CALL(invalidator_,
UpdateInterestedTopics(backend_.get(),
ModelTypeSetToTopicSet(Difference(
enabled_types_, CommitOnlyTypes()))));
ConfigureDataTypes();
// At shutdown, we clear the registered invalidation ids.
EXPECT_CALL(invalidator_, UpdateInterestedTopics(backend_.get(), TopicSet()));
}
TEST_F(SyncEngineImplTest,
EnabledTypesChangesWhenSetInvalidationsForSessionsCalled) {
// Making sure that the noisy types we're interested in are in the
// |enabled_types_|.
enabled_types_.Put(SESSIONS);
InitializeBackend(true);
ConfigureDataTypes();
EXPECT_CALL(invalidator_,
UpdateInterestedTopics(backend_.get(),
ModelTypeSetToTopicSet(Difference(
enabled_types_, CommitOnlyTypes()))));
backend_->SetInvalidationsForSessionsEnabled(true);
ModelTypeSet enabled_types(enabled_types_);
enabled_types.Remove(SESSIONS);
EXPECT_CALL(invalidator_,
UpdateInterestedTopics(backend_.get(),
ModelTypeSetToTopicSet(Difference(
enabled_types, CommitOnlyTypes()))));
backend_->SetInvalidationsForSessionsEnabled(false);
// At shutdown, we clear the registered invalidation ids.
EXPECT_CALL(invalidator_, UpdateInterestedTopics(backend_.get(), TopicSet()));
}
// Regression test for crbug.com/1019956.
TEST_F(SyncEngineImplTest, ShouldDestroyAfterInitFailure) {
fake_manager_factory_->set_should_fail_on_init(true);
// Sync manager will report initialization failure and gets destroyed during
// the error handling.
InitializeBackend(false);
backend_->StopSyncingForShutdown();
// This line would post the task causing the crash before the fix, because
// sync manager was used during the shutdown handling.
backend_->Shutdown(STOP_SYNC);
backend_.reset();
base::RunLoop().RunUntilIdle();
}
TEST_F(SyncEngineImplWithSyncInvalidationsTest,
ShouldInvalidateDataTypesOnIncomingInvalidation) {
EXPECT_CALL(mock_instance_id_driver_, AddListener(backend_.get()));
InitializeBackend(/*expect_success=*/true);
sync_pb::SyncInvalidationsPayload payload;
auto* bookmarks_invalidation = payload.add_data_type_invalidations();
bookmarks_invalidation->set_data_type_id(
GetSpecificsFieldNumberFromModelType(ModelType::BOOKMARKS));
auto* preferences_invalidation = payload.add_data_type_invalidations();
preferences_invalidation->set_data_type_id(
GetSpecificsFieldNumberFromModelType(ModelType::PREFERENCES));
backend_->OnInvalidationReceived(payload.SerializeAsString());
fake_manager_->WaitForSyncThread();
EXPECT_EQ(1, fake_manager_->GetInvalidationCount(ModelType::BOOKMARKS));
EXPECT_EQ(1, fake_manager_->GetInvalidationCount(ModelType::PREFERENCES));
}
TEST_F(SyncEngineImplWithSyncInvalidationsTest,
UseOldInvalidationsOnlyForWalletAndOffer) {
enabled_types_.PutAll({AUTOFILL_WALLET_DATA, AUTOFILL_WALLET_OFFER});
InitializeBackend(/*expect_success=*/true);
EXPECT_CALL(
invalidator_,
UpdateInterestedTopics(
backend_.get(), ModelTypeSetToTopicSet(
{AUTOFILL_WALLET_DATA, AUTOFILL_WALLET_OFFER})));
ConfigureDataTypes();
// At shutdown, we clear the registered invalidation ids.
EXPECT_CALL(invalidator_, UpdateInterestedTopics(backend_.get(), TopicSet()));
}
TEST_F(SyncEngineImplWithSyncInvalidationsForWalletAndOfferTest,
DoNotUseOldInvalidationsAtAll) {
enabled_types_.PutAll({AUTOFILL_WALLET_DATA, AUTOFILL_WALLET_OFFER});
// Since the old invalidations system is not being used anymore (based on the
// enabled feature flags), SyncEngine should call the (old) invalidator with
// an empty TopicSet upon initialization.
EXPECT_CALL(invalidator_, UpdateInterestedTopics(_, TopicSet()));
InitializeBackend(/*expect_success=*/true);
EXPECT_CALL(invalidator_, UpdateInterestedTopics(_, _)).Times(0);
ConfigureDataTypes();
}
} // namespace
} // namespace syncer