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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include "base/command_line.h"
#include "base/feature_list.h"
#include "base/files/scoped_temp_dir.h"
#include "build/branding_buildflags.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/send_tab_to_self/send_tab_to_self_util.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/browser/sync/test/integration/encryption_helper.h"
#include "chrome/browser/sync/test/integration/single_client_status_change_checker.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/browser_sync/browser_sync_switches.h"
#include "components/commerce/core/commerce_feature_list.h"
#include "components/power_bookmarks/core/power_bookmark_features.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/service/sync_service_impl.h"
#include "content/public/test/browser_test.h"
#include "crypto/ec_private_key.h"
// The local sync backend is currently only supported on Windows, Mac, Linux.
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
namespace {
using syncer::SyncServiceImpl;
constexpr char kTestPassphrase[] = "hunter2";
class SyncTransportActiveChecker : public SingleClientStatusChangeChecker {
public:
explicit SyncTransportActiveChecker(SyncServiceImpl* service)
: SingleClientStatusChangeChecker(service) {}
bool IsExitConditionSatisfied(std::ostream* os) override {
*os << "Waiting for sync transport to become active";
return service()->GetTransportState() ==
syncer::SyncService::TransportState::ACTIVE;
}
};
// This test verifies some basic functionality of local sync, used for roaming
// profiles (enterprise use-case).
class LocalSyncTest : public InProcessBrowserTest {
public:
LocalSyncTest(const LocalSyncTest&) = delete;
LocalSyncTest& operator=(const LocalSyncTest&) = delete;
protected:
LocalSyncTest() {
EXPECT_TRUE(local_sync_backend_dir_.CreateUniqueTempDir());
}
~LocalSyncTest() override = default;
void SetUpCommandLine(base::CommandLine* command_line) override {
// By default on Window OS local sync backend uses roaming profile. It can
// lead to problems if some tests run simultaneously and use the same
// roaming profile.
base::FilePath file = local_sync_backend_dir_.GetPath().Append(
FILE_PATH_LITERAL("profile.pb"));
command_line->AppendSwitchASCII(switches::kLocalSyncBackendDir,
file.MaybeAsASCII());
command_line->AppendSwitch(switches::kEnableLocalSyncBackend);
command_line->AppendSwitchASCII(syncer::kSyncDeferredStartupTimeoutSeconds,
"0");
}
private:
base::ScopedTempDir local_sync_backend_dir_;
};
IN_PROC_BROWSER_TEST_F(LocalSyncTest, ShouldStart) {
SyncServiceImpl* service =
SyncServiceFactory::GetAsSyncServiceImplForProfileForTesting(
browser()->profile());
// Wait until the first sync cycle is completed.
ASSERT_TRUE(SyncTransportActiveChecker(service).Wait());
EXPECT_TRUE(service->IsLocalSyncEnabled());
EXPECT_FALSE(service->IsSyncFeatureEnabled());
EXPECT_FALSE(service->IsSyncFeatureActive());
EXPECT_FALSE(service->GetUserSettings()->IsInitialSyncFeatureSetupComplete());
// Verify that the expected set of data types successfully started up.
// If this test fails after adding a new data type, carefully consider whether
// the type should be enabled in Local Sync mode, i.e. for roaming profiles on
// Windows.
syncer::DataTypeSet expected_active_data_types = {
syncer::BOOKMARKS,
syncer::READING_LIST,
syncer::PREFERENCES,
syncer::PASSWORDS,
syncer::AUTOFILL_PROFILE,
syncer::AUTOFILL,
syncer::THEMES,
syncer::EXTENSIONS,
syncer::SAVED_TAB_GROUP,
syncer::SEARCH_ENGINES,
syncer::SESSIONS,
syncer::APPS,
syncer::APP_SETTINGS,
syncer::EXTENSION_SETTINGS,
syncer::DEVICE_INFO,
syncer::PRIORITY_PREFERENCES,
syncer::WEBAUTHN_CREDENTIAL,
syncer::WEB_APPS,
syncer::NIGORI};
if (base::FeatureList::IsEnabled(power_bookmarks::kPowerBookmarkBackend)) {
expected_active_data_types.Put(syncer::POWER_BOOKMARK);
}
if (base::FeatureList::IsEnabled(syncer::kSyncAutofillWalletCredentialData)) {
expected_active_data_types.Put(syncer::AUTOFILL_WALLET_CREDENTIAL);
}
if (base::FeatureList::IsEnabled(commerce::kProductSpecifications)) {
expected_active_data_types.Put(syncer::PRODUCT_COMPARISON);
}
// The dictionary is currently only synced on Windows and Linux.
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
expected_active_data_types.Put(syncer::DICTIONARY);
#endif
EXPECT_EQ(service->GetActiveDataTypes(), expected_active_data_types);
// Verify certain features are disabled.
EXPECT_FALSE(service->GetActiveDataTypes().Has(syncer::USER_CONSENTS));
EXPECT_FALSE(service->GetActiveDataTypes().Has(syncer::USER_EVENTS));
EXPECT_FALSE(service->GetActiveDataTypes().Has(syncer::SECURITY_EVENTS));
EXPECT_FALSE(service->GetActiveDataTypes().Has(syncer::SEND_TAB_TO_SELF));
EXPECT_FALSE(service->GetActiveDataTypes().Has(syncer::SHARING_MESSAGE));
EXPECT_FALSE(service->GetActiveDataTypes().Has(syncer::SEND_TAB_TO_SELF));
EXPECT_FALSE(service->GetActiveDataTypes().Has(syncer::HISTORY));
}
IN_PROC_BROWSER_TEST_F(LocalSyncTest, ShouldHonorSelectedTypes) {
SyncServiceImpl* service =
SyncServiceFactory::GetAsSyncServiceImplForProfileForTesting(
browser()->profile());
// Wait until the first sync cycle is completed.
ASSERT_TRUE(SyncTransportActiveChecker(service).Wait());
ASSERT_TRUE(service->IsLocalSyncEnabled());
ASSERT_FALSE(service->IsSyncFeatureEnabled());
ASSERT_TRUE(service->GetActiveDataTypes().Has(syncer::BOOKMARKS));
ASSERT_TRUE(service->GetActiveDataTypes().Has(syncer::PASSWORDS));
service->GetUserSettings()->SetSelectedTypes(
/*sync_everything=*/false, {syncer::UserSelectableType::kPasswords});
ASSERT_TRUE(SyncTransportActiveChecker(service).Wait());
EXPECT_TRUE(service->GetActiveDataTypes().Has(syncer::PASSWORDS));
EXPECT_FALSE(service->GetActiveDataTypes().Has(syncer::BOOKMARKS));
}
// Setting up a custom passphrase is arguably meaningless for local sync, but it
// has been allowed historically.
IN_PROC_BROWSER_TEST_F(LocalSyncTest, ShouldSupportCustomPassphrase) {
SyncServiceImpl* service =
SyncServiceFactory::GetAsSyncServiceImplForProfileForTesting(
browser()->profile());
// Wait until the first sync cycle is completed.
ASSERT_TRUE(SyncTransportActiveChecker(service).Wait());
ASSERT_TRUE(service->IsLocalSyncEnabled());
ASSERT_FALSE(service->IsSyncFeatureEnabled());
service->GetUserSettings()->SetEncryptionPassphrase(kTestPassphrase);
EXPECT_TRUE(PassphraseAcceptedChecker(service).Wait());
}
} // namespace
#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|