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
|
// Copyright (c) 2015 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/profile_sync_service_factory.h"
#include <stddef.h>
#include <memory>
#include <vector>
#include "base/command_line.h"
#include "build/build_config.h"
#include "chrome/common/features.h"
#include "chrome/test/base/testing_profile.h"
#include "components/browser_sync/browser_sync_switches.h"
#include "components/browser_sync/profile_sync_service.h"
#include "components/sync/base/model_type.h"
#include "components/sync/driver/data_type_controller.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/app_list/app_list_switches.h"
using browser_sync::ProfileSyncService;
using syncer::DataTypeController;
class ProfileSyncServiceFactoryTest : public testing::Test {
protected:
ProfileSyncServiceFactoryTest() : profile_(new TestingProfile()) {}
// Returns the collection of default datatypes.
std::vector<syncer::ModelType> DefaultDatatypes() {
std::vector<syncer::ModelType> datatypes;
// Desktop types.
#if !defined(OS_ANDROID)
datatypes.push_back(syncer::APPS);
#if BUILDFLAG(ENABLE_APP_LIST)
if (app_list::switches::IsAppListSyncEnabled())
datatypes.push_back(syncer::APP_LIST);
#endif
datatypes.push_back(syncer::APP_SETTINGS);
#if defined(OS_LINUX) || defined(OS_WIN) || defined(OS_CHROMEOS)
datatypes.push_back(syncer::DICTIONARY);
#endif
#if defined(OS_CHROMEOS)
datatypes.push_back(syncer::ARC_PACKAGE);
#endif
datatypes.push_back(syncer::EXTENSIONS);
datatypes.push_back(syncer::EXTENSION_SETTINGS);
datatypes.push_back(syncer::SEARCH_ENGINES);
datatypes.push_back(syncer::THEMES);
datatypes.push_back(syncer::SUPERVISED_USERS);
datatypes.push_back(syncer::SUPERVISED_USER_SHARED_SETTINGS);
#endif // !OS_ANDROID
// Common types.
datatypes.push_back(syncer::AUTOFILL);
datatypes.push_back(syncer::AUTOFILL_PROFILE);
datatypes.push_back(syncer::AUTOFILL_WALLET_DATA);
datatypes.push_back(syncer::AUTOFILL_WALLET_METADATA);
datatypes.push_back(syncer::BOOKMARKS);
datatypes.push_back(syncer::DEVICE_INFO);
datatypes.push_back(syncer::FAVICON_TRACKING);
datatypes.push_back(syncer::FAVICON_IMAGES);
datatypes.push_back(syncer::HISTORY_DELETE_DIRECTIVES);
datatypes.push_back(syncer::PASSWORDS);
datatypes.push_back(syncer::PREFERENCES);
datatypes.push_back(syncer::PRIORITY_PREFERENCES);
datatypes.push_back(syncer::SESSIONS);
datatypes.push_back(syncer::PROXY_TABS);
datatypes.push_back(syncer::SUPERVISED_USER_SETTINGS);
datatypes.push_back(syncer::SUPERVISED_USER_WHITELISTS);
datatypes.push_back(syncer::TYPED_URLS);
return datatypes;
}
// Returns the number of default datatypes.
size_t DefaultDatatypesCount() { return DefaultDatatypes().size(); }
// Asserts that all the default datatypes are in |map|, except
// for |exception_type|, which unless it is UNDEFINED, is asserted to
// not be in |map|.
void CheckDefaultDatatypesInMapExcept(DataTypeController::StateMap* map,
syncer::ModelTypeSet exception_types) {
std::vector<syncer::ModelType> defaults = DefaultDatatypes();
std::vector<syncer::ModelType>::iterator iter;
for (iter = defaults.begin(); iter != defaults.end(); ++iter) {
if (exception_types.Has(*iter))
EXPECT_EQ(0U, map->count(*iter))
<< *iter << " found in dataypes map, shouldn't be there.";
else
EXPECT_EQ(1U, map->count(*iter)) << *iter
<< " not found in datatypes map";
}
}
void SetDisabledTypes(syncer::ModelTypeSet disabled_types) {
base::CommandLine::ForCurrentProcess()->AppendSwitchASCII(
switches::kDisableSyncTypes,
syncer::ModelTypeSetToString(disabled_types));
}
Profile* profile() { return profile_.get(); }
private:
content::TestBrowserThreadBundle thread_bundle_;
std::unique_ptr<Profile> profile_;
};
// Verify that the disable sync flag disables creation of the sync service.
TEST_F(ProfileSyncServiceFactoryTest, DisableSyncFlag) {
base::CommandLine::ForCurrentProcess()->AppendSwitch(switches::kDisableSync);
EXPECT_EQ(nullptr, ProfileSyncServiceFactory::GetForProfile(profile()));
}
// Verify that a normal (no command line flags) PSS can be created and
// properly initialized.
TEST_F(ProfileSyncServiceFactoryTest, CreatePSSDefault) {
ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile());
DataTypeController::StateMap controller_states;
pss->GetDataTypeControllerStates(&controller_states);
EXPECT_EQ(DefaultDatatypesCount(), controller_states.size());
CheckDefaultDatatypesInMapExcept(&controller_states, syncer::ModelTypeSet());
}
// Verify that a PSS with a disabled datatype can be created and properly
// initialized.
TEST_F(ProfileSyncServiceFactoryTest, CreatePSSDisableOne) {
syncer::ModelTypeSet disabled_types(syncer::AUTOFILL);
SetDisabledTypes(disabled_types);
ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile());
DataTypeController::StateMap controller_states;
pss->GetDataTypeControllerStates(&controller_states);
EXPECT_EQ(DefaultDatatypesCount() - disabled_types.Size(),
controller_states.size());
CheckDefaultDatatypesInMapExcept(&controller_states, disabled_types);
}
// Verify that a PSS with multiple disabled datatypes can be created and
// properly initialized.
TEST_F(ProfileSyncServiceFactoryTest, CreatePSSDisableMultiple) {
syncer::ModelTypeSet disabled_types(syncer::AUTOFILL_PROFILE,
syncer::BOOKMARKS);
SetDisabledTypes(disabled_types);
ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile());
DataTypeController::StateMap controller_states;
pss->GetDataTypeControllerStates(&controller_states);
EXPECT_EQ(DefaultDatatypesCount() - disabled_types.Size(),
controller_states.size());
CheckDefaultDatatypesInMapExcept(&controller_states, disabled_types);
}
|