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
|
// 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 <stdio.h>
#include <string_view>
#include "base/run_loop.h"
#include "build/build_config.h"
#include "chrome/browser/ash/printing/printers_sync_bridge.h"
#include "chrome/browser/sync/test/integration/printers_helper.h"
#include "chrome/browser/sync/test/integration/sync_service_impl_harness.h"
#include "chrome/browser/sync/test/integration/sync_test.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/test_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace {
using printers_helper::AddPrinter;
using printers_helper::AllProfilesContainSamePrinters;
using printers_helper::CreateTestPrinter;
using printers_helper::CreateTestPrinterSpecifics;
using printers_helper::EditPrinterDescription;
using printers_helper::GetPrinterCount;
using printers_helper::GetPrinterStore;
using printers_helper::PrintersMatchChecker;
using printers_helper::RemovePrinter;
using ::testing::EndsWith;
using ::testing::IsEmpty;
using ::testing::Not;
using ::testing::StartsWith;
constexpr char kOverwrittenDescription[] = "I should not show up";
constexpr char kLatestDescription[] = "YAY! More recent changes win!";
class TwoClientPrintersSyncTest : public SyncTest {
public:
TwoClientPrintersSyncTest() : SyncTest(TWO_CLIENT) {}
TwoClientPrintersSyncTest(const TwoClientPrintersSyncTest&) = delete;
TwoClientPrintersSyncTest& operator=(const TwoClientPrintersSyncTest&) =
delete;
~TwoClientPrintersSyncTest() override = default;
bool SetupClients() override {
if (!SyncTest::SetupClients()) {
return false;
}
CHECK(!UseVerifier());
printers_helper::WaitForPrinterStoreToLoad(GetProfile(0));
printers_helper::WaitForPrinterStoreToLoad(GetProfile(1));
return true;
}
};
} // namespace
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest, NoPrinters) {
ASSERT_TRUE(SetupSync());
ASSERT_TRUE(PrintersMatchChecker().Wait());
}
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest, OnePrinter) {
ASSERT_TRUE(SetupSync());
AddPrinter(GetPrinterStore(0), CreateTestPrinter(2));
ASSERT_TRUE(PrintersMatchChecker().Wait());
}
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest, SimultaneousAdd) {
ASSERT_TRUE(SetupSync());
AddPrinter(GetPrinterStore(0), CreateTestPrinter(1));
AddPrinter(GetPrinterStore(1), CreateTestPrinter(2));
// Each store is guaranteed to have 1 printer because the tests run on the UI
// thread. ApplyIncrementalSyncChanges happens after we wait on the checker.
ASSERT_EQ(1, GetPrinterCount(0));
ASSERT_EQ(1, GetPrinterCount(1));
ASSERT_TRUE(PrintersMatchChecker().Wait());
EXPECT_EQ(2, GetPrinterCount(0));
}
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest, RemovePrinter) {
ASSERT_TRUE(SetupSync());
AddPrinter(GetPrinterStore(0), CreateTestPrinter(1));
AddPrinter(GetPrinterStore(0), CreateTestPrinter(2));
AddPrinter(GetPrinterStore(0), CreateTestPrinter(3));
// Verify the profiles have the same printers
ASSERT_TRUE(PrintersMatchChecker().Wait());
EXPECT_EQ(3, GetPrinterCount(0));
// Remove printer 2 from store 1
RemovePrinter(GetPrinterStore(1), 2);
ASSERT_TRUE(PrintersMatchChecker().Wait());
EXPECT_EQ(2, GetPrinterCount(0));
}
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest, RemoveAndEditPrinters) {
const std::string updated_description = "Testing changes";
ASSERT_TRUE(SetupSync());
AddPrinter(GetPrinterStore(0), CreateTestPrinter(1));
AddPrinter(GetPrinterStore(0), CreateTestPrinter(2));
AddPrinter(GetPrinterStore(0), CreateTestPrinter(3));
// Verify the profiles have the same printers
ASSERT_TRUE(PrintersMatchChecker().Wait());
EXPECT_EQ(3, GetPrinterCount(0));
// Edit printer 1 from store 0
ASSERT_TRUE(
EditPrinterDescription(GetPrinterStore(0), 1, updated_description));
// Remove printer 2 from store 1
RemovePrinter(GetPrinterStore(1), 2);
ASSERT_TRUE(PrintersMatchChecker().Wait());
EXPECT_EQ(2, GetPrinterCount(0));
EXPECT_EQ(updated_description,
GetPrinterStore(1)->GetSavedPrinters()[0].description());
}
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest, ConflictResolution) {
ASSERT_TRUE(SetupSync());
AddPrinter(GetPrinterStore(0), CreateTestPrinter(0));
AddPrinter(GetPrinterStore(0), CreateTestPrinter(2));
AddPrinter(GetPrinterStore(0), CreateTestPrinter(3));
// Store 0 and 1 have 3 printers now.
ASSERT_TRUE(PrintersMatchChecker().Wait());
// Client 1 makes a local change.
ASSERT_TRUE(
EditPrinterDescription(GetPrinterStore(1), 0, kOverwrittenDescription));
// Wait for a non-zero period (200ms) for modification timestamps to differ.
base::PlatformThread::Sleep(base::Milliseconds(200));
// Client 0 is paused to make this test deterministic (client 1 commits
// first).
GetClient(0)->EnterSyncPausedStateForPrimaryAccount();
// Client 0 makes a change while paused.
ASSERT_TRUE(
EditPrinterDescription(GetPrinterStore(0), 0, kLatestDescription));
// We must wait until the sync cycle is completed before client 0 resumes in
// order to make the outcome of conflict resolution deterministic (needed due
// to lack of a strong consistency model on the server).
ASSERT_TRUE(SyncServiceImplHarness::AwaitQuiescence({GetClient(1)}));
ASSERT_EQ(GetPrinterStore(0)->GetSavedPrinters()[0].description(),
kLatestDescription);
ASSERT_EQ(GetPrinterStore(1)->GetSavedPrinters()[0].description(),
kOverwrittenDescription);
// Client 0 gets unpaused, which results in a conflict (local wins).
GetClient(0)->ExitSyncPausedStateForPrimaryAccount();
// Run tasks until the most recent update has been applied to all stores.
ASSERT_TRUE(PrintersMatchChecker().Wait());
EXPECT_EQ(GetPrinterStore(0)->GetSavedPrinters()[0].description(),
kLatestDescription);
EXPECT_EQ(GetPrinterStore(1)->GetSavedPrinters()[0].description(),
kLatestDescription);
}
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest,
ConflictResolutionWithStrongConsistency) {
ASSERT_TRUE(SetupSync());
GetFakeServer()->EnableStrongConsistencyWithConflictDetectionModel();
AddPrinter(GetPrinterStore(0), CreateTestPrinter(0));
AddPrinter(GetPrinterStore(0), CreateTestPrinter(2));
AddPrinter(GetPrinterStore(0), CreateTestPrinter(3));
// Store 0 and 1 have 3 printers now.
ASSERT_TRUE(PrintersMatchChecker().Wait());
// Client 1 makes a local change.
ASSERT_TRUE(
EditPrinterDescription(GetPrinterStore(1), 0, kOverwrittenDescription));
// Wait for a non-zero period (200ms) for modification timestamps to differ.
base::PlatformThread::Sleep(base::Milliseconds(200));
// Client 0 makes a change to the same printer.
ASSERT_TRUE(
EditPrinterDescription(GetPrinterStore(0), 0, kLatestDescription));
// Run tasks until the most recent update has been applied to all stores.
// One of the two clients (the second one committing) will be requested by the
// server to resolve the conflict and recommit. The custom conflict resolution
// as implemented in PrintersSyncBridge::ResolveConflict() should guarantee
// that the one with latest modification timestamp (kLatestDescription) wins,
// which can mean local wins or remote wins, depending on which client is
// involved.
ASSERT_TRUE(PrintersMatchChecker().Wait());
EXPECT_EQ(GetPrinterStore(0)->GetSavedPrinters()[0].description(),
kLatestDescription);
EXPECT_EQ(GetPrinterStore(1)->GetSavedPrinters()[0].description(),
kLatestDescription);
}
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest, SimpleMerge) {
ASSERT_TRUE(SetupClients());
base::RunLoop().RunUntilIdle();
// Store 0 has the even printers
AddPrinter(GetPrinterStore(0), CreateTestPrinter(0));
AddPrinter(GetPrinterStore(0), CreateTestPrinter(2));
// Store 1 has the odd printers
AddPrinter(GetPrinterStore(1), CreateTestPrinter(1));
AddPrinter(GetPrinterStore(1), CreateTestPrinter(3));
ASSERT_TRUE(SetupSync());
// Stores should contain the same values now.
EXPECT_EQ(4, GetPrinterCount(0));
EXPECT_TRUE(AllProfilesContainSamePrinters());
}
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest, MakeAndModelMigration) {
ASSERT_TRUE(SetupClients());
const char kMake[] = "make";
const char kModel[] = "model";
// Initialize sync bridge with test printer.
std::unique_ptr<sync_pb::PrinterSpecifics> printer =
CreateTestPrinterSpecifics(0);
const std::string spec_printer_id = printer->id();
printer->set_manufacturer(kMake);
printer->set_model(kModel);
ash::PrintersSyncBridge* bridge = GetPrinterStore(0)->GetSyncBridge();
bridge->AddPrinter(std::move(printer));
// Confirm that the bridge is not migrated.
std::optional<sync_pb::PrinterSpecifics> spec_printer =
bridge->GetPrinter(spec_printer_id);
ASSERT_TRUE(spec_printer);
ASSERT_THAT(spec_printer->make_and_model(), IsEmpty());
ASSERT_TRUE(SetupSync());
spec_printer = bridge->GetPrinter(spec_printer_id);
ASSERT_TRUE(spec_printer);
std::string_view make_and_model = spec_printer->make_and_model();
EXPECT_THAT(make_and_model, Not(IsEmpty()));
EXPECT_THAT(make_and_model, StartsWith(kMake));
EXPECT_THAT(make_and_model, EndsWith(kModel));
}
IN_PROC_BROWSER_TEST_F(TwoClientPrintersSyncTest,
InvalidPpdReferenceResolution) {
ASSERT_TRUE(SetupClients());
// Initialize sync bridge with test printer.
std::unique_ptr<sync_pb::PrinterSpecifics> printer =
CreateTestPrinterSpecifics(0);
const std::string spec_printer_id = printer->id();
auto ppd_ref = std::make_unique<sync_pb::PrinterPPDReference>();
ppd_ref->set_autoconf(true);
ppd_ref->set_user_supplied_ppd_url("file://fake_ppd_url");
printer->set_allocated_ppd_reference(ppd_ref.release());
ash::PrintersSyncBridge* bridge = GetPrinterStore(0)->GetSyncBridge();
bridge->AddPrinter(std::move(printer));
// Confirm that the bridge is not migrated.
std::optional<sync_pb::PrinterSpecifics> spec_printer =
bridge->GetPrinter(spec_printer_id);
ASSERT_TRUE(spec_printer);
ASSERT_TRUE(spec_printer->has_ppd_reference());
sync_pb::PrinterPPDReference spec_ppd_ref = spec_printer->ppd_reference();
ASSERT_TRUE(spec_ppd_ref.autoconf());
ASSERT_TRUE(spec_ppd_ref.has_user_supplied_ppd_url());
// Perform sync.
ASSERT_TRUE(SetupSync());
spec_printer = bridge->GetPrinter(spec_printer_id);
ASSERT_TRUE(spec_printer);
ASSERT_TRUE(spec_printer->has_ppd_reference());
spec_ppd_ref = spec_printer->ppd_reference();
EXPECT_FALSE(spec_ppd_ref.autoconf());
EXPECT_TRUE(spec_ppd_ref.has_user_supplied_ppd_url());
}
|