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
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/download/bubble/download_bubble_prefs.h"
#include "base/json/json_reader.h"
#include "base/memory/raw_ptr.h"
#include "base/test/scoped_feature_list.h"
#include "build/build_config.h"
#include "chrome/browser/enterprise/connectors/common.h"
#include "chrome/browser/policy/dm_token_utils.h"
#include "chrome/browser/safe_browsing/advanced_protection_status_manager.h"
#include "chrome/browser/safe_browsing/advanced_protection_status_manager_factory.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/base/testing_profile_manager.h"
#include "components/enterprise/common/proto/connectors.pb.h"
#include "components/prefs/pref_service.h"
#include "components/safe_browsing/core/common/safe_browsing_prefs.h"
#include "components/sync_preferences/testing_pref_service_syncable.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
constexpr char kDownloadConnectorEnabledNonBlockingPref[] = R"([
{
"service_provider": "google",
"enable": [
{"url_list": ["*"], "tags": ["malware"]}
]
}
])";
constexpr char kDownloadConnectorEnabledBlockingPref[] = R"([
{
"service_provider": "google",
"block_until_verdict":1,
"enable": [
{"url_list": ["*"], "tags": ["malware"]}
]
}
])";
} // namespace
namespace download {
class DownloadBubblePrefsTest : public testing::Test {
public:
DownloadBubblePrefsTest()
: testing_profile_manager_(TestingBrowserProcess::GetGlobal()) {}
DownloadBubblePrefsTest(const DownloadBubblePrefsTest&) = delete;
DownloadBubblePrefsTest& operator=(const DownloadBubblePrefsTest&) = delete;
void SetUp() override {
ASSERT_TRUE(testing_profile_manager_.SetUp());
profile_ = testing_profile_manager_.CreateTestingProfile("testing_profile");
policy::SetDMTokenForTesting(
policy::DMToken::CreateValidToken("fake-token"));
profile_->GetPrefs()->SetInteger(
AnalysisConnectorScopePref(
enterprise_connectors::AnalysisConnector::FILE_DOWNLOADED),
policy::POLICY_SCOPE_MACHINE);
}
protected:
raw_ptr<TestingProfile, DanglingUntriaged> profile_;
base::test::ScopedFeatureList feature_list_;
private:
content::BrowserTaskEnvironment task_environment_;
TestingProfileManager testing_profile_manager_;
};
TEST_F(DownloadBubblePrefsTest, IsDownloadBubbleEnabled) {
bool is_enabled = IsDownloadBubbleEnabled();
#if BUILDFLAG(IS_CHROMEOS)
EXPECT_FALSE(is_enabled);
#else
EXPECT_TRUE(is_enabled);
#endif
}
TEST_F(DownloadBubblePrefsTest, DoesDownloadConnectorBlock) {
EXPECT_FALSE(DoesDownloadConnectorBlock(profile_, GURL()));
profile_->GetPrefs()->Set(
enterprise_connectors::AnalysisConnectorPref(
enterprise_connectors::FILE_DOWNLOADED),
*base::JSONReader::Read(kDownloadConnectorEnabledNonBlockingPref));
EXPECT_FALSE(DoesDownloadConnectorBlock(profile_, GURL()));
profile_->GetPrefs()->Set(
enterprise_connectors::AnalysisConnectorPref(
enterprise_connectors::FILE_DOWNLOADED),
*base::JSONReader::Read(kDownloadConnectorEnabledBlockingPref));
EXPECT_TRUE(DoesDownloadConnectorBlock(profile_, GURL()));
}
#if !BUILDFLAG(IS_CHROMEOS)
TEST_F(DownloadBubblePrefsTest, IsPartialViewEnabled) {
// Test default value.
EXPECT_TRUE(IsDownloadBubblePartialViewEnabled(profile_));
EXPECT_TRUE(IsDownloadBubblePartialViewEnabledDefaultPrefValue(profile_));
// Set value.
SetDownloadBubblePartialViewEnabled(profile_, false);
EXPECT_FALSE(IsDownloadBubblePartialViewEnabled(profile_));
EXPECT_FALSE(IsDownloadBubblePartialViewEnabledDefaultPrefValue(profile_));
SetDownloadBubblePartialViewEnabled(profile_, true);
EXPECT_TRUE(IsDownloadBubblePartialViewEnabled(profile_));
// This should still be false because it has been set to an explicit value.
EXPECT_FALSE(IsDownloadBubblePartialViewEnabledDefaultPrefValue(profile_));
}
#else
TEST_F(DownloadBubblePrefsTest, IsPartialViewEnabled) {
// Returns false regardless of the pref.
EXPECT_FALSE(IsDownloadBubblePartialViewEnabled(profile_));
SetDownloadBubblePartialViewEnabled(profile_, true);
EXPECT_FALSE(IsDownloadBubblePartialViewEnabled(profile_));
SetDownloadBubblePartialViewEnabled(profile_, false);
EXPECT_FALSE(IsDownloadBubblePartialViewEnabled(profile_));
}
#endif // !BUILDFLAG(IS_CHROMEOS)
TEST_F(DownloadBubblePrefsTest, PartialViewImpressions) {
// Test default value.
EXPECT_EQ(DownloadBubblePartialViewImpressions(profile_), 0);
// Set value.
SetDownloadBubblePartialViewImpressions(profile_, 1);
EXPECT_EQ(DownloadBubblePartialViewImpressions(profile_), 1);
}
} // namespace download
|