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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
// Copyright 2012 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/strings/utf_string_conversions.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/sync/test/integration/autofill_helper.h"
#include "chrome/browser/sync/test/integration/sync_test.h"
#include "components/autofill/core/browser/data_manager/addresses/address_data_manager.h"
#include "components/autofill/core/browser/data_manager/payments/payments_data_manager.h"
#include "components/autofill/core/browser/data_manager/personal_data_manager.h"
#include "components/autofill/core/browser/data_model/addresses/autofill_profile.h"
#include "components/autofill/core/browser/data_model/payments/credit_card.h"
#include "components/autofill/core/browser/data_quality/addresses/profile_token_quality.h"
#include "components/autofill/core/browser/data_quality/addresses/profile_token_quality_test_api.h"
#include "components/autofill/core/browser/test_utils/autofill_test_utils.h"
#include "components/autofill/core/browser/webdata/autofill_table_utils.h"
#include "components/autofill/core/common/autofill_features.h"
#include "components/sync/engine/cycle/entity_change_metric_recording.h"
#include "content/public/test/browser_test.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
using autofill::AutofillProfile;
using autofill::CreditCard;
using autofill::PersonalDataManager;
using autofill_helper::AddProfile;
using autofill_helper::CreateAutofillProfile;
using autofill_helper::CreateUniqueAutofillProfile;
using autofill_helper::GetAllAutoFillProfiles;
using autofill_helper::GetPersonalDataManager;
using autofill_helper::GetProfileCount;
using autofill_helper::PROFILE_FRASIER;
using autofill_helper::PROFILE_HOMER;
using autofill_helper::PROFILE_MARION;
using autofill_helper::PROFILE_NULL;
using autofill_helper::ProfilesMatch;
using autofill_helper::RemoveProfile;
using autofill_helper::SetCreditCards;
using autofill_helper::UpdateProfile;
class TwoClientAutofillProfileSyncTest : public SyncTest {
public:
TwoClientAutofillProfileSyncTest() : SyncTest(TWO_CLIENT) {}
TwoClientAutofillProfileSyncTest(const TwoClientAutofillProfileSyncTest&) =
delete;
TwoClientAutofillProfileSyncTest& operator=(
const TwoClientAutofillProfileSyncTest&) = delete;
~TwoClientAutofillProfileSyncTest() override = default;
};
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
PersonalDataManagerSanity) {
ASSERT_TRUE(SetupSync());
base::HistogramTester histograms;
// Client0 adds a profile.
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
// Client1 adds a profile.
AddProfile(1, CreateAutofillProfile(PROFILE_MARION));
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/2U).Wait());
// Client0 adds the same profile.
AddProfile(0, CreateAutofillProfile(PROFILE_MARION));
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/2U).Wait());
// Client1 removes a profile.
RemoveProfile(1, GetAllAutoFillProfiles(1)[0]->guid());
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
// Client0 updates a profile.
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(), autofill::NAME_FIRST,
u"Bart");
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
// Client1 removes remaining profile.
RemoveProfile(1, GetAllAutoFillProfiles(1)[0]->guid());
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/0U).Wait());
// Client1 adds a final new profile.
AddProfile(1, CreateAutofillProfile(PROFILE_FRASIER));
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
// Each of the clients deletes one profile.
histograms.ExpectBucketCount("Sync.DataTypeEntityChange.AUTOFILL_PROFILE",
syncer::DataTypeEntityChange::kLocalDeletion, 2);
}
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
SyncHistogramsInitialSync) {
ASSERT_TRUE(SetupClients());
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
ASSERT_EQ(1U, GetAllAutoFillProfiles(0).size());
AddProfile(1, CreateAutofillProfile(PROFILE_MARION));
ASSERT_EQ(1U, GetAllAutoFillProfiles(1).size());
base::HistogramTester histograms;
ASSERT_TRUE(SetupSync());
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/2U).Wait());
// The order of events is roughly: First client (whichever that happens to be)
// connects to the server, commits its entity, and gets no initial updates
// because nothing was on the server yet. Then the second client connects,
// commits its entity, and receives the first client's entity as an initial
// update. Then the first client receives the second's entity as a non-initial
// update. And finally, at some point, each client receives its own entity
// back as a non-initial update, for a total of 1 initial and 3 non-initial
// updates.
histograms.ExpectBucketCount("Sync.DataTypeEntityChange.AUTOFILL_PROFILE",
syncer::DataTypeEntityChange::kLocalCreation, 2);
histograms.ExpectBucketCount(
"Sync.DataTypeEntityChange.AUTOFILL_PROFILE",
syncer::DataTypeEntityChange::kRemoteInitialUpdate, 1);
histograms.ExpectBucketCount(
"Sync.DataTypeEntityChange.AUTOFILL_PROFILE",
syncer::DataTypeEntityChange::kRemoteNonInitialUpdate, 3);
histograms.ExpectTotalCount("Sync.DataTypeEntityChange.AUTOFILL_PROFILE", 6);
}
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, AddDuplicateProfiles) {
ASSERT_TRUE(SetupClients());
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
ASSERT_TRUE(SetupSync());
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
EXPECT_EQ(1U, GetAllAutoFillProfiles(0).size());
}
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
SameProfileWithConflict) {
ASSERT_TRUE(SetupClients());
AutofillProfile profile0 = CreateAutofillProfile(PROFILE_HOMER);
AutofillProfile profile1 = CreateAutofillProfile(PROFILE_HOMER);
profile1.SetRawInfo(autofill::PHONE_HOME_WHOLE_NUMBER, u"1234567890");
AddProfile(0, profile0);
AddProfile(1, profile1);
ASSERT_TRUE(SetupSync());
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
}
// Tests that a null profile does not get synced across clients.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, AddEmptyProfile) {
ASSERT_TRUE(SetupSync());
AddProfile(0, CreateAutofillProfile(PROFILE_NULL));
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/0U).Wait());
}
// Tests that adding a profile on one client results in it being added on the
// other client when sync is running.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, AddProfile) {
ASSERT_TRUE(SetupSync());
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
// Wait for the sync to happen and make sure both clients have one profile.
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
}
// Tests that adding a profile on one client results in it being added on the
// other client when sync gets started.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
AddProfile_BeforeSyncStart) {
ASSERT_TRUE(SetupClients()) << "SetupClients() failed";
// Add the new autofill profile before starting sync.
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
ASSERT_TRUE(SetupSync());
// Wait for the sync to happen and make sure both clients have one profile.
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
}
// Tests that adding the same profile on the two clients before sync is started
// results in each client only having one profile after sync is started
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
ClientsAddSameProfile) {
ASSERT_TRUE(SetupClients()) << "SetupClients() failed";
// Add the same profile in the two clients.
AddProfile(0, CreateUniqueAutofillProfile());
AddProfile(1, CreateUniqueAutofillProfile());
// Make sure the GUIDs are different.
ASSERT_NE(GetAllAutoFillProfiles(0)[0]->guid(),
GetAllAutoFillProfiles(1)[0]->guid());
ASSERT_TRUE(SetupSync());
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
// Make sure that they have the same GUID.
EXPECT_EQ(GetAllAutoFillProfiles(0)[0]->guid(),
GetAllAutoFillProfiles(1)[0]->guid());
}
// Tests that adding multiple profiles to one client results in all of them
// being added to the other client.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
AddMultipleProfilesOnOneClient) {
ASSERT_TRUE(SetupClients());
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
AddProfile(0, CreateAutofillProfile(PROFILE_MARION));
AddProfile(0, CreateAutofillProfile(PROFILE_FRASIER));
ASSERT_TRUE(SetupSync());
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/3U).Wait());
}
// Tests that adding multiple profiles to two client results both clients having
// all profiles.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
AddMultipleProfilesOnTwoClients) {
ASSERT_TRUE(SetupClients());
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
AddProfile(1, CreateAutofillProfile(PROFILE_MARION));
AddProfile(1, CreateAutofillProfile(PROFILE_FRASIER));
ASSERT_TRUE(SetupSync());
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/3U).Wait());
}
// Tests that deleting a profile on one client results in it being deleted on
// the other client.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, DeleteProfile) {
ASSERT_TRUE(SetupSync());
// Setup the test by making the 2 clients have the same profile.
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
// Remove the profile from one client.
RemoveProfile(1, GetAllAutoFillProfiles(1)[0]->guid());
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/0U).Wait());
}
// Tests that modifying a profile while syncing results in the other client
// getting the updated profile.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, UpdateFields) {
ASSERT_TRUE(SetupSync());
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
// Modify the profile on one client.
std::string new_name = "Lisa";
std::string new_email = "grrrl@TV.com";
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(), autofill::NAME_FIRST,
base::ASCIIToUTF16(new_name));
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(),
autofill::EMAIL_ADDRESS, base::ASCIIToUTF16(new_email));
// Make sure the change is propagated to the other client.
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
EXPECT_EQ(new_name,
base::UTF16ToUTF8(GetAllAutoFillProfiles(1)[0]->GetRawInfo(
autofill::NAME_FIRST)));
EXPECT_EQ(new_email,
base::UTF16ToUTF8(GetAllAutoFillProfiles(1)[0]->GetRawInfo(
autofill::EMAIL_ADDRESS)));
}
// Tests that modifying the verification status of a token in the profile will
// be propagated.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
UpdateVerificationStatus) {
ASSERT_TRUE(SetupSync());
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
ASSERT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
const AutofillProfile* profile = GetAllAutoFillProfiles(0)[0];
ASSERT_TRUE(profile);
UpdateProfile(0, profile->guid(), autofill::NAME_FIRST,
profile->GetRawInfo(autofill::NAME_FIRST),
autofill::VerificationStatus::kUserVerified);
// Make sure the change is propagated to the other client.
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
EXPECT_EQ(autofill::VerificationStatus::kUserVerified,
GetAllAutoFillProfiles(1)[0]->GetVerificationStatus(
autofill::NAME_FIRST));
}
// Tests that modifying a profile at the same time one two clients while
// syncing results in the both client having the same profile (doesn't matter
// which one).
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
UpdateConflictingFields) {
ASSERT_TRUE(SetupSync());
// Make the two clients have the same profile.
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
// Update the same field differently on the two clients at the same time.
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(), autofill::NAME_FIRST,
u"Lisa");
UpdateProfile(1, GetAllAutoFillProfiles(1)[0]->guid(), autofill::NAME_FIRST,
u"Bart");
// Don't care which write wins the conflict, only that the two clients agree.
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
}
// Tests that modifying a profile at the same time one two clients while
// syncing results in the both client having the same profile (doesn't matter
// which one).
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
UpdateConflictingFieldsDuringInitialMerge) {
ASSERT_TRUE(SetupClients());
// Make the two clients have the same profile.
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
AddProfile(1, CreateAutofillProfile(PROFILE_HOMER));
// Update the same field differently on the two clients at the same time.
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(), autofill::NAME_FIRST,
u"Lisa");
UpdateProfile(1, GetAllAutoFillProfiles(1)[0]->guid(), autofill::NAME_FIRST,
u"Bart");
// Start sync.
ASSERT_TRUE(SetupSync());
// Don't care which write wins the conflict, only that the two clients agree.
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
}
// Tests that modifying a profile at the same time on two clients while
// syncing results in both client having the same profile (doesn't matter which
// one).
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, DeleteAndUpdate) {
ASSERT_TRUE(SetupSync());
// Make the two clients have the same profile.
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
ASSERT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
RemoveProfile(0, GetAllAutoFillProfiles(0)[0]->guid());
UpdateProfile(1, GetAllAutoFillProfiles(1)[0]->guid(), autofill::NAME_FIRST,
u"Bart");
EXPECT_TRUE(AutofillProfileChecker(0, 1, std::nullopt).Wait());
// The exact result is non-deterministic without a strong consistency model
// server-side, but both clients should converge (either update or delete).
EXPECT_EQ(GetAllAutoFillProfiles(0).size(), GetAllAutoFillProfiles(1).size());
}
// Tests that modifying a profile at the same time on two clients while
// syncing results in a conflict where the update wins. This only works with
// a server that supports a strong consistency model and is hence capable of
// detecting conflicts server-side.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
DeleteAndUpdateWithStrongConsistency) {
ASSERT_TRUE(SetupSync());
GetFakeServer()->EnableStrongConsistencyWithConflictDetectionModel();
// Make the two clients have the same profile.
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
ASSERT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
RemoveProfile(0, GetAllAutoFillProfiles(0)[0]->guid());
UpdateProfile(1, GetAllAutoFillProfiles(1)[0]->guid(), autofill::NAME_FIRST,
u"Bart");
// One of the two clients (the second one committing) will be requested by the
// server to resolve the conflict and recommit. The conflict resolution should
// be undeletion wins, which can mean local wins or remote wins, depending on
// which client is involved.
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
}
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, MaxLength) {
ASSERT_TRUE(SetupSync());
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
ASSERT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
std::u16string max_length_string(autofill::kMaxDataLengthForDatabase, '.');
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(), autofill::NAME_FULL,
max_length_string);
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(),
autofill::EMAIL_ADDRESS, max_length_string);
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(),
autofill::ADDRESS_HOME_LINE1, max_length_string);
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
}
// Tests that values exceeding `kMaxDataLengthForDatabase` are truncated.
// TODO(crbug.com/40267335): As of the unified table layout, values are already
// truncated in AutofillTable. No special logic on the Sync-side is necessary.
// Clean this up.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, ExceedsMaxLength) {
ASSERT_TRUE(SetupSync());
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
ASSERT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
std::u16string exceeds_max_length_string(
autofill::kMaxDataLengthForDatabase + 1, '.');
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(), autofill::NAME_FIRST,
exceeds_max_length_string);
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(), autofill::NAME_LAST,
exceeds_max_length_string);
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(),
autofill::EMAIL_ADDRESS, exceeds_max_length_string);
UpdateProfile(0, GetAllAutoFillProfiles(0)[0]->guid(),
autofill::ADDRESS_HOME_LINE1, exceeds_max_length_string);
// The values stored on clients 0 are already truncated.
const AutofillProfile* profile = GetAllAutoFillProfiles(0)[0];
for (const auto type :
{autofill::NAME_FIRST, autofill::NAME_LAST, autofill::EMAIL_ADDRESS,
autofill::ADDRESS_HOME_LINE1}) {
EXPECT_EQ(profile->GetRawInfo(type).size(),
autofill::kMaxDataLengthForDatabase);
}
ASSERT_TRUE(AwaitQuiescence());
// Both clients store the truncated values.
EXPECT_TRUE(ProfilesMatch(0, 1));
}
// Test credit cards don't sync.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, NoCreditCardSync) {
ASSERT_TRUE(SetupSync());
CreditCard card;
card.SetRawInfo(autofill::CREDIT_CARD_NUMBER, u"6011111111111117");
std::vector<CreditCard> credit_cards{card};
SetCreditCards(0, &credit_cards);
AddProfile(0, CreateAutofillProfile(PROFILE_HOMER));
// Because the credit card was created before the profile, if we wait for the
// profile to sync between both clients, it should give the credit card enough
// time to sync. We cannot directly wait/block for the credit card to sync
// because we're expecting it to not sync.
EXPECT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1U).Wait());
PersonalDataManager* pdm = GetPersonalDataManager(1);
EXPECT_EQ(0U, pdm->payments_data_manager().GetCreditCards().size());
}
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest,
E2E_ONLY(TwoClientsAddAutofillProfiles)) {
ResetSyncForPrimaryAccount();
ASSERT_TRUE(SetupSync());
// All profiles should sync same autofill profiles.
ASSERT_TRUE(
AutofillProfileChecker(0, 1, /*expected_count=*/std::nullopt).Wait())
<< "Initial autofill profiles did not match for all profiles.";
// For clean profiles, the autofill profiles count should be zero. We are not
// enforcing this, we only check that the final count is equal to initial
// count plus new autofill profiles count.
size_t init_autofill_profiles_count = GetProfileCount(0);
// Add a new autofill profile to the first client.
AddProfile(0, CreateUniqueAutofillProfile());
EXPECT_TRUE(AutofillProfileChecker(
0, 1, /*expected_count=*/init_autofill_profiles_count + 1)
.Wait());
}
// ProfileTokenQuality observations are not synced. This test ensures that for
// incoming updates through sync, local observations are reset only when the
// value of the corresponding token has changed.
IN_PROC_BROWSER_TEST_F(TwoClientAutofillProfileSyncTest, ProfileTokenQuality) {
ASSERT_TRUE(SetupSync());
// Create a profile with observations on client 0 and sync it to client 1.
autofill::AutofillProfile profile = autofill::test::GetFullProfile();
autofill::test_api(profile.token_quality())
.AddObservation(
autofill::NAME_FIRST,
autofill::ProfileTokenQuality::ObservationType::kAccepted);
autofill::test_api(profile.token_quality())
.AddObservation(
autofill::NAME_LAST,
autofill::ProfileTokenQuality::ObservationType::kEditedFallback);
autofill_helper::AddProfile(0, profile);
ASSERT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1u).Wait());
// Modify the NAME_FIRST on client 1, triggering a resync to client 0.
autofill_helper::UpdateProfile(
1, profile.guid(), autofill::NAME_FIRST,
u"new " + profile.GetRawInfo(autofill::NAME_FIRST));
ASSERT_TRUE(AutofillProfileChecker(0, 1, /*expected_count=*/1u).Wait());
// Expect that only the observations for NAME_FIRST were reset on client 0.
const autofill::ProfileTokenQuality& token_quality =
GetPersonalDataManager(0)
->address_data_manager()
.GetProfiles()[0]
->token_quality();
EXPECT_TRUE(
token_quality.GetObservationTypesForFieldType(autofill::NAME_FIRST)
.empty());
EXPECT_THAT(
token_quality.GetObservationTypesForFieldType(autofill::NAME_LAST),
testing::UnorderedElementsAre(
autofill::ProfileTokenQuality::ObservationType::kEditedFallback));
}
} // namespace
|