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
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/functional/bind.h"
#include "base/metrics/statistics_recorder.h"
#include "base/test/bind.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/sync/test/integration/bookmarks_helper.h"
#include "chrome/browser/sync/test/integration/encryption_helper.h"
#include "chrome/browser/sync/test/integration/fake_server_match_status_checker.h"
#include "chrome/browser/sync/test/integration/sessions_helper.h"
#include "chrome/browser/sync/test/integration/single_client_status_change_checker.h"
#include "chrome/browser/sync/test/integration/status_change_checker.h"
#include "chrome/browser/sync/test/integration/sync_integration_test_util.h"
#include "chrome/browser/sync/test/integration/sync_service_impl_harness.h"
#include "chrome/browser/sync/test/integration/sync_test.h"
#include "chrome/browser/sync/test/integration/user_events_helper.h"
#include "chrome/browser/sync/user_event_service_factory.h"
#include "components/sync/base/features.h"
#include "components/sync/protocol/user_event_specifics.pb.h"
#include "components/sync_user_events/user_event_service.h"
#include "content/public/test/browser_test.h"
using sync_pb::CommitResponse;
using sync_pb::SyncEntity;
using sync_pb::UserEventSpecifics;
using user_events_helper::CreateTestEvent;
namespace {
CommitResponse::ResponseType BounceType(
CommitResponse::ResponseType type,
const syncer::LoopbackServerEntity& entity) {
return type;
}
class SingleClientUserEventsSyncTest : public SyncTest {
public:
SingleClientUserEventsSyncTest() : SyncTest(SINGLE_CLIENT) {}
~SingleClientUserEventsSyncTest() override = default;
bool ExpectUserEvents(std::vector<UserEventSpecifics> expected_specifics) {
return UserEventEqualityChecker(GetSyncService(0), GetFakeServer(),
expected_specifics)
.Wait();
}
};
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, Sanity) {
ASSERT_TRUE(SetupSync());
EXPECT_EQ(
0u,
GetFakeServer()->GetSyncEntitiesByDataType(syncer::USER_EVENTS).size());
syncer::UserEventService* event_service =
browser_sync::UserEventServiceFactory::GetForProfile(GetProfile(0));
const UserEventSpecifics specifics = CreateTestEvent(base::Time());
event_service->RecordUserEvent(specifics);
EXPECT_TRUE(ExpectUserEvents({specifics}));
}
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, RetrySequential) {
ASSERT_TRUE(SetupSync());
const UserEventSpecifics specifics1 =
CreateTestEvent(base::Time() + base::Microseconds(1));
const UserEventSpecifics specifics2 =
CreateTestEvent(base::Time() + base::Microseconds(2));
syncer::UserEventService* event_service =
browser_sync::UserEventServiceFactory::GetForProfile(GetProfile(0));
GetFakeServer()->OverrideResponseType(
base::BindRepeating(&BounceType, CommitResponse::TRANSIENT_ERROR));
event_service->RecordUserEvent(specifics1);
// This will block until we hit a TRANSIENT_ERROR, at which point we will
// regain control and can switch back to SUCCESS. Note that the fake server
// records commits even on failure.
ASSERT_TRUE(ExpectUserEvents({specifics1}));
// Wait for another commit attempt and return SUCCESS.
base::RunLoop run_loop;
UserEventSpecifics retry_specifics;
GetFakeServer()->OverrideResponseType(base::BindLambdaForTesting(
[&](const syncer::LoopbackServerEntity& entity) {
if (entity.GetDataType() == syncer::USER_EVENTS) {
retry_specifics = entity.GetSpecifics().user_event();
run_loop.Quit();
}
return CommitResponse::SUCCESS;
}));
run_loop.Run();
EXPECT_EQ(retry_specifics.event_time_usec(), specifics1.event_time_usec());
// Only record |specifics2| after |specifics1| was successful to avoid race
// conditions.
event_service->RecordUserEvent(specifics2);
EXPECT_TRUE(ExpectUserEvents({specifics1, specifics2}));
}
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, RetryParallel) {
ASSERT_TRUE(SetupSync());
const UserEventSpecifics specifics1 =
CreateTestEvent(base::Time() + base::Microseconds(1));
const UserEventSpecifics specifics2 =
CreateTestEvent(base::Time() + base::Microseconds(2));
syncer::UserEventService* event_service =
browser_sync::UserEventServiceFactory::GetForProfile(GetProfile(0));
// Set up the server so that the first commit attempt of `specifics1` results
// in a transient error.
base::RunLoop run_loop;
bool first_attempt = true;
GetFakeServer()->OverrideResponseType(base::BindLambdaForTesting(
[&](const syncer::LoopbackServerEntity& entity) {
if (entity.GetDataType() != syncer::USER_EVENTS ||
entity.GetSpecifics().user_event().event_time_usec() !=
specifics1.event_time_usec()) {
return CommitResponse::SUCCESS;
}
if (first_attempt) {
first_attempt = false;
return CommitResponse::TRANSIENT_ERROR;
}
// Entity has been retried.
run_loop.Quit();
return CommitResponse::SUCCESS;
}));
event_service->RecordUserEvent(specifics2);
event_service->RecordUserEvent(specifics1);
// We can't use only ExpectUserEvents() here because the entity that got the
// transient error is still considered committed by the fake server.
run_loop.Run();
// Verify that both specifics were committed to the server.
EXPECT_TRUE(ExpectUserEvents({specifics1, specifics2}));
}
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, NoHistory) {
const UserEventSpecifics test_event1 =
CreateTestEvent(base::Time() + base::Microseconds(1));
const UserEventSpecifics test_event2 =
CreateTestEvent(base::Time() + base::Microseconds(2));
const UserEventSpecifics test_event3 =
CreateTestEvent(base::Time() + base::Microseconds(3));
ASSERT_TRUE(SetupSync());
syncer::UserEventService* event_service =
browser_sync::UserEventServiceFactory::GetForProfile(GetProfile(0));
event_service->RecordUserEvent(test_event1);
// Wait until the first events is committed before disabling sync,
// because disabled kHistory also disables user event sync, dropping all
// uncommitted events.
EXPECT_TRUE(ExpectUserEvents({test_event1}));
ASSERT_TRUE(
GetClient(0)->DisableSyncForType(syncer::UserSelectableType::kHistory));
event_service->RecordUserEvent(test_event2);
ASSERT_TRUE(
GetClient(0)->EnableSyncForType(syncer::UserSelectableType::kHistory));
event_service->RecordUserEvent(test_event3);
// No |test_event2| because it was recorded while history was disabled.
EXPECT_TRUE(ExpectUserEvents({test_event1, test_event3}));
}
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, NoSessions) {
const UserEventSpecifics specifics =
CreateTestEvent(base::Time() + base::Microseconds(1));
ASSERT_TRUE(SetupSync());
ASSERT_TRUE(
GetClient(0)->DisableSyncForType(syncer::UserSelectableType::kTabs));
syncer::UserEventService* event_service =
browser_sync::UserEventServiceFactory::GetForProfile(GetProfile(0));
event_service->RecordUserEvent(specifics);
// UserSelectableType::kTabs shouldn't affect UserEvents in any way.
EXPECT_TRUE(ExpectUserEvents({specifics}));
}
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, Encryption) {
const UserEventSpecifics test_event1 =
CreateTestEvent(base::Time() + base::Microseconds(1));
const UserEventSpecifics test_event2 =
CreateTestEvent(base::Time() + base::Microseconds(2));
ASSERT_TRUE(SetupSync());
syncer::UserEventService* event_service =
browser_sync::UserEventServiceFactory::GetForProfile(GetProfile(0));
event_service->RecordUserEvent(test_event1);
EXPECT_TRUE(ExpectUserEvents({test_event1}));
GetSyncService(0)->GetUserSettings()->SetEncryptionPassphrase("passphrase");
ASSERT_TRUE(PassphraseAcceptedChecker(GetSyncService(0)).Wait());
event_service->RecordUserEvent(test_event2);
// Just checking that we don't see test_event2 isn't very convincing yet,
// because it may simply not have reached the server yet. So let's send
// something else through the system that we can wait on before checking.
// Tab/SESSIONS data was picked fairly arbitrarily, note that we expect 2
// entries, one for the window/header and one for the tab.
sessions_helper::OpenTab(0, GURL("https://www.one.com/"));
EXPECT_TRUE(ServerCountMatchStatusChecker(syncer::SESSIONS, 2).Wait());
EXPECT_TRUE(ExpectUserEvents({test_event1}));
}
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest,
ShouldNotUploadInSyncPausedState) {
const UserEventSpecifics test_event =
CreateTestEvent(base::Time() + base::Microseconds(1));
ASSERT_TRUE(SetupSync());
ASSERT_TRUE(GetSyncService(0)->IsSyncFeatureActive());
// Enter the sync paused state.
GetClient(0)->EnterSyncPausedStateForPrimaryAccount();
ASSERT_TRUE(GetSyncService(0)->GetAuthError().IsPersistentError());
syncer::UserEventService* event_service =
browser_sync::UserEventServiceFactory::GetForProfile(GetProfile(0));
event_service->RecordUserEvent(test_event);
// Clear the "Sync paused" state again.
GetClient(0)->ExitSyncPausedStateForPrimaryAccount();
ASSERT_TRUE(GetSyncService(0)->IsSyncFeatureActive());
// Just checking that we don't see test_event isn't very convincing yet,
// because it may simply not have reached the server yet. So let's send
// something else through the system that we can wait on before checking.
ASSERT_TRUE(
bookmarks_helper::AddURL(0, u"What are you syncing about?",
GURL("https://google.com/synced-bookmark-1")));
ASSERT_TRUE(ServerCountMatchStatusChecker(syncer::BOOKMARKS, 1).Wait());
// No event should get synced up.
EXPECT_TRUE(ExpectUserEvents({}));
}
// This is an analogy to SingleClientBookmarksSyncTest.DepleteQuota, tested on
// a datatype that has no quota restrictions.
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, NoQuotaApplied) {
ASSERT_TRUE(SetupSync());
// Add enough user events that would deplete quota in the initial cycle.
syncer::UserEventService* event_service =
browser_sync::UserEventServiceFactory::GetForProfile(GetProfile(0));
std::vector<UserEventSpecifics> expected_specifics;
base::Time zero;
// Default number of entities per message on the client are 25, thus the quota
// would be fully depleted in 25*101 messages.
for (int i = 0; i < 2525; i++) {
const UserEventSpecifics specifics =
CreateTestEvent(zero + base::Milliseconds(i));
event_service->RecordUserEvent(specifics);
expected_specifics.push_back(specifics);
}
EXPECT_TRUE(ExpectUserEvents(expected_specifics));
base::HistogramTester histogram_tester;
// Adding another entity again triggers sync immediately (as there's no
// quota).
const UserEventSpecifics specifics = CreateTestEvent(zero + base::Seconds(3));
event_service->RecordUserEvent(specifics);
expected_specifics.push_back(specifics);
EXPECT_TRUE(ExpectUserEvents(expected_specifics));
// Make sure the histogram gets propagated from the sync engine sequence.
base::StatisticsRecorder::ImportProvidedHistogramsSync();
// There is no record in the depleted quota histogram.
histogram_tester.ExpectTotalCount("Sync.DataTypeCommitWithDepletedQuota", 0);
}
} // namespace
|