1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
7 #include "base/command_line.h"
8 #include "base/files/file_path.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/message_loop/message_loop.h"
11 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
12 #include "chrome/browser/sync/profile_sync_components_factory_impl.h"
13 #include "chrome/browser/sync/profile_sync_service.h"
14 #include "chrome/browser/sync/profile_sync_service_factory.h"
15 #include "chrome/browser/sync/supervised_user_signin_manager_wrapper.h"
16 #include "chrome/common/chrome_switches.h"
17 #include "chrome/common/chrome_version_info.h"
18 #include "chrome/test/base/testing_profile.h"
19 #include "components/signin/core/browser/profile_oauth2_token_service.h"
20 #include "components/sync_driver/data_type_controller.h"
21 #include "content/public/test/test_browser_thread_bundle.h"
22 #include "google_apis/gaia/gaia_constants.h"
23 #include "google_apis/gaia/oauth2_token_service.h"
24 #include "testing/gtest/include/gtest/gtest.h"
25 #include "ui/app_list/app_list_switches.h"
27 using sync_driver::DataTypeController
;
29 class ProfileSyncComponentsFactoryImplTest
: public testing::Test
{
31 ProfileSyncComponentsFactoryImplTest()
32 : thread_bundle_(content::TestBrowserThreadBundle::DEFAULT
) {}
34 void SetUp() override
{
35 profile_
.reset(new TestingProfile());
36 base::FilePath
program_path(FILE_PATH_LITERAL("chrome.exe"));
37 command_line_
.reset(new base::CommandLine(program_path
));
38 scope_set_
.insert(GaiaConstants::kChromeSyncOAuth2Scope
);
41 // Returns the collection of default datatypes.
42 static std::vector
<syncer::ModelType
> DefaultDatatypes() {
43 std::vector
<syncer::ModelType
> datatypes
;
44 datatypes
.push_back(syncer::APPS
);
45 #if defined(ENABLE_APP_LIST)
46 if (app_list::switches::IsAppListSyncEnabled())
47 datatypes
.push_back(syncer::APP_LIST
);
49 datatypes
.push_back(syncer::APP_SETTINGS
);
50 datatypes
.push_back(syncer::AUTOFILL
);
51 datatypes
.push_back(syncer::AUTOFILL_PROFILE
);
52 datatypes
.push_back(syncer::BOOKMARKS
);
53 datatypes
.push_back(syncer::DEVICE_INFO
);
54 #if defined(OS_LINUX) || defined(OS_WIN) || defined(OS_CHROMEOS)
55 datatypes
.push_back(syncer::DICTIONARY
);
57 datatypes
.push_back(syncer::EXTENSIONS
);
58 datatypes
.push_back(syncer::EXTENSION_SETTINGS
);
59 datatypes
.push_back(syncer::HISTORY_DELETE_DIRECTIVES
);
60 datatypes
.push_back(syncer::PASSWORDS
);
61 datatypes
.push_back(syncer::PREFERENCES
);
62 datatypes
.push_back(syncer::PRIORITY_PREFERENCES
);
63 datatypes
.push_back(syncer::SEARCH_ENGINES
);
64 datatypes
.push_back(syncer::SESSIONS
);
65 datatypes
.push_back(syncer::PROXY_TABS
);
66 datatypes
.push_back(syncer::THEMES
);
67 datatypes
.push_back(syncer::TYPED_URLS
);
68 datatypes
.push_back(syncer::FAVICON_TRACKING
);
69 datatypes
.push_back(syncer::FAVICON_IMAGES
);
70 datatypes
.push_back(syncer::SUPERVISED_USERS
);
71 datatypes
.push_back(syncer::SUPERVISED_USER_SETTINGS
);
72 datatypes
.push_back(syncer::SUPERVISED_USER_SHARED_SETTINGS
);
73 datatypes
.push_back(syncer::SUPERVISED_USER_WHITELISTS
);
78 // Returns the number of default datatypes.
79 static size_t DefaultDatatypesCount() {
80 return DefaultDatatypes().size();
83 // Asserts that all the default datatypes are in |map|, except
84 // for |exception_type|, which unless it is UNDEFINED, is asserted to
86 static void CheckDefaultDatatypesInMapExcept(
87 DataTypeController::StateMap
* map
,
88 syncer::ModelTypeSet exception_types
) {
89 std::vector
<syncer::ModelType
> defaults
= DefaultDatatypes();
90 std::vector
<syncer::ModelType
>::iterator iter
;
91 for (iter
= defaults
.begin(); iter
!= defaults
.end(); ++iter
) {
92 if (exception_types
.Has(*iter
))
93 EXPECT_EQ(0U, map
->count(*iter
))
94 << *iter
<< " found in dataypes map, shouldn't be there.";
96 EXPECT_EQ(1U, map
->count(*iter
))
97 << *iter
<< " not found in datatypes map";
101 // Asserts that if you disable types via the command line, all other types
103 void TestSwitchDisablesType(syncer::ModelTypeSet types
) {
104 command_line_
->AppendSwitchASCII(switches::kDisableSyncTypes
,
105 syncer::ModelTypeSetToString(types
));
106 GURL sync_service_url
=
107 ProfileSyncService::GetSyncServiceURL(*command_line_
);
108 ProfileOAuth2TokenService
* token_service
=
109 ProfileOAuth2TokenServiceFactory::GetForProfile(profile_
.get());
110 scoped_ptr
<ProfileSyncService
> pss(new ProfileSyncService(
111 scoped_ptr
<ProfileSyncComponentsFactory
>(
112 new ProfileSyncComponentsFactoryImpl(
115 ProfileSyncService::GetSyncServiceURL(*command_line_
),
117 profile_
->GetRequestContext())),
119 make_scoped_ptr
<SupervisedUserSigninManagerWrapper
>(NULL
),
121 browser_sync::MANUAL_START
));
122 pss
->factory()->RegisterDataTypes(pss
.get());
123 DataTypeController::StateMap controller_states
;
124 pss
->GetDataTypeControllerStates(&controller_states
);
125 EXPECT_EQ(DefaultDatatypesCount() - types
.Size(), controller_states
.size());
126 CheckDefaultDatatypesInMapExcept(&controller_states
, types
);
129 content::TestBrowserThreadBundle thread_bundle_
;
130 scoped_ptr
<Profile
> profile_
;
131 scoped_ptr
<base::CommandLine
> command_line_
;
132 OAuth2TokenService::ScopeSet scope_set_
;
135 TEST_F(ProfileSyncComponentsFactoryImplTest
, CreatePSSDefault
) {
136 ProfileOAuth2TokenService
* token_service
=
137 ProfileOAuth2TokenServiceFactory::GetForProfile(profile_
.get());
138 scoped_ptr
<ProfileSyncService
> pss(new ProfileSyncService(
139 scoped_ptr
<ProfileSyncComponentsFactory
>(
140 new ProfileSyncComponentsFactoryImpl(
143 ProfileSyncService::GetSyncServiceURL(*command_line_
),
145 profile_
->GetRequestContext())),
147 make_scoped_ptr
<SupervisedUserSigninManagerWrapper
>(NULL
),
149 browser_sync::MANUAL_START
));
150 pss
->factory()->RegisterDataTypes(pss
.get());
151 DataTypeController::StateMap controller_states
;
152 pss
->GetDataTypeControllerStates(&controller_states
);
153 EXPECT_EQ(DefaultDatatypesCount(), controller_states
.size());
154 CheckDefaultDatatypesInMapExcept(&controller_states
, syncer::ModelTypeSet());
157 TEST_F(ProfileSyncComponentsFactoryImplTest
, CreatePSSDisableOne
) {
158 TestSwitchDisablesType(syncer::ModelTypeSet(syncer::AUTOFILL
));
161 TEST_F(ProfileSyncComponentsFactoryImplTest
, CreatePSSDisableMultiple
) {
162 TestSwitchDisablesType(
163 syncer::ModelTypeSet(syncer::AUTOFILL_PROFILE
, syncer::BOOKMARKS
));