blob: bd780445164906424458622bff970a041c97f74a [file] [log] [blame]
// 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 <string>
#include "base/test/metrics/histogram_tester.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/updated_progress_marker_checker.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/unified_consent/unified_consent_service_factory.h"
#include "chrome/common/pref_names.h"
#include "components/prefs/pref_service.h"
#include "components/safe_browsing/core/common/safe_browsing_prefs.h"
#include "components/unified_consent/unified_consent_metrics.h"
#include "components/unified_consent/unified_consent_service.h"
#include "content/public/test/browser_test.h"
namespace unified_consent {
namespace {
class UnifiedConsentBrowserTest : public SyncTest {
public:
UnifiedConsentBrowserTest() : SyncTest(TWO_CLIENT) {}
UnifiedConsentBrowserTest(const UnifiedConsentBrowserTest&) = delete;
UnifiedConsentBrowserTest& operator=(const UnifiedConsentBrowserTest&) =
delete;
~UnifiedConsentBrowserTest() override = default;
void EnableSync(int client_id) {
InitializeSyncClientsIfNeeded();
ASSERT_TRUE(GetClient(client_id)->SetupSync());
}
void StartSyncSetup(int client_id) {
InitializeSyncClientsIfNeeded();
sync_blocker_ = GetSyncService(client_id)->GetSetupInProgressHandle();
ASSERT_TRUE(GetClient(client_id)->SignInPrimaryAccount(
signin::ConsentLevel::kSync));
GetSyncService(client_id)->SetSyncFeatureRequested();
ASSERT_TRUE(GetClient(client_id)->AwaitEngineInitialization());
}
void FinishSyncSetup(int client_id) {
GetSyncService(client_id)
->GetUserSettings()
->SetInitialSyncFeatureSetupComplete(
syncer::SyncFirstSetupCompleteSource::BASIC_FLOW);
sync_blocker_.reset();
ASSERT_TRUE(GetClient(client_id)->AwaitSyncSetupCompletion());
}
UnifiedConsentService* consent_service() {
return UnifiedConsentServiceFactory::GetForProfile(browser()->profile());
}
protected:
base::HistogramTester histogram_tester_;
const std::string histogram_name_ =
"UnifiedConsent.MakeSearchesAndBrowsingBetter.OnProfileLoad";
private:
void InitializeSyncClientsIfNeeded() {
if (GetSyncClients().empty())
ASSERT_TRUE(SetupClients());
}
std::unique_ptr<syncer::SyncSetupInProgressHandle> sync_blocker_;
};
// Tests that the settings histogram is recorded if unified consent is enabled.
// The histogram is recorded during profile initialization.
IN_PROC_BROWSER_TEST_F(UnifiedConsentBrowserTest, SettingsHistogram_None) {
histogram_tester_.ExpectUniqueSample(histogram_name_, false, 1);
}
// Tests that all service entries in the settings histogram are recorded after
// enabling them.
IN_PROC_BROWSER_TEST_F(
UnifiedConsentBrowserTest,
PRE_SettingsHistogram_UrlKeyedAnonymizedDataCollectionEnabled) {
EnableSync(0);
consent_service()->SetUrlKeyedAnonymizedDataCollectionEnabled(true);
}
IN_PROC_BROWSER_TEST_F(
UnifiedConsentBrowserTest,
SettingsHistogram_UrlKeyedAnonymizedDataCollectionEnabled) {
histogram_tester_.ExpectUniqueSample(histogram_name_, true, 1);
}
IN_PROC_BROWSER_TEST_F(UnifiedConsentBrowserTest,
SettingsOptInTakeOverServicePrefChanges) {
std::string pref_A = prefs::kSearchSuggestEnabled;
std::string pref_B = prefs::kSafeBrowsingEnabled;
// First client: Enable sync.
EnableSync(0);
// First client: Turn off both prefs while sync is on, so the synced state of
// both prefs will be "off".
GetProfile(0)->GetPrefs()->SetBoolean(pref_A, false);
GetProfile(0)->GetPrefs()->SetBoolean(pref_B, false);
// Make sure the updates are committed before proceeding with the test.
ASSERT_TRUE(UpdatedProgressMarkerChecker(GetSyncService(0)).Wait());
// Second client: Turn off both prefs while sync is off.
GetProfile(1)->GetPrefs()->SetBoolean(pref_A, false);
GetProfile(1)->GetPrefs()->SetBoolean(pref_B, false);
// Second client: Turn on pref A while sync is off.
GetProfile(1)->GetPrefs()->SetBoolean(pref_A, true);
// Second client: Start sync setup.
StartSyncSetup(1);
ASSERT_TRUE(GetSyncService(1)->IsSetupInProgress());
ASSERT_FALSE(GetSyncService(1)
->GetUserSettings()
->IsInitialSyncFeatureSetupComplete());
// Second client: Turn on pref B while sync setup is in progress.
GetProfile(1)->GetPrefs()->SetBoolean(pref_B, true);
// Second client: Finish sync setup.
FinishSyncSetup(1);
// Sync both clients, so the synced state of both prefs (i.e. off) will arrive
// at the second client.
ASSERT_TRUE(AwaitQuiescence());
// Both clients: Expect that pref A is off and pref B is on.
// Reason:
// - Pref A was turned on before sync was enabled, hence it is overridden by
// the value of the first client.
// - Pref B was turned on while sync setup was in progress, hence it is taken
// over.
EXPECT_FALSE(GetProfile(0)->GetPrefs()->GetBoolean(pref_A));
EXPECT_TRUE(GetProfile(0)->GetPrefs()->GetBoolean(pref_B));
EXPECT_FALSE(GetProfile(1)->GetPrefs()->GetBoolean(pref_A));
EXPECT_TRUE(GetProfile(1)->GetPrefs()->GetBoolean(pref_B));
}
} // namespace
} // namespace unified_consent