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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/search_engines/enterprise/default_search_policy_handler.h"
#include <memory>
#include "base/memory/ptr_util.h"
#include "build/build_config.h"
#include "components/policy/core/browser/configuration_policy_pref_store.h"
#include "components/policy/core/browser/configuration_policy_pref_store_test.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/policy_constants.h"
#include "components/search_engines/default_search_manager.h"
#include "components/search_engines/search_engines_pref_names.h"
#include "components/search_engines/template_url_data.h"
namespace policy {
class DefaultSearchPolicyHandlerTest
: public ConfigurationPolicyPrefStoreTest {
public:
DefaultSearchPolicyHandlerTest() {
default_alternate_urls_.Append("http://www.google.com/#q={searchTerms}");
default_alternate_urls_.Append(
"http://www.google.com/search#q={searchTerms}");
}
void SetUp() override {
handler_list_.AddHandler(base::WrapUnique<ConfigurationPolicyHandler>(
new DefaultSearchPolicyHandler));
}
protected:
static const char kSearchURL[];
static const char kSuggestURL[];
static const char kName[];
static const char kReplacementKey[];
static const char kImageURL[];
static const char kImageParams[];
static const char kFileSearchURL[];
static const char kHostName[];
#if !BUILDFLAG(IS_IOS) && !BUILDFLAG(IS_ANDROID)
static const char kKeyword[];
static const char kNewTabURL[];
#endif
// Build a default search policy by setting search-related keys in |policy| to
// reasonable values. You can update any of the keys after calling this
// method.
void BuildDefaultSearchPolicy(PolicyMap* policy);
base::Value::List default_alternate_urls_;
};
const char DefaultSearchPolicyHandlerTest::kSearchURL[] =
"http://test.com/search?t={searchTerms}";
const char DefaultSearchPolicyHandlerTest::kSuggestURL[] =
"http://test.com/sugg?={searchTerms}";
const char DefaultSearchPolicyHandlerTest::kName[] =
"MyName";
const char DefaultSearchPolicyHandlerTest::kImageURL[] =
"http://test.com/searchbyimage/upload";
const char DefaultSearchPolicyHandlerTest::kImageParams[] =
"image_content=content,image_url=http://test.com/test.png";
const char DefaultSearchPolicyHandlerTest::kFileSearchURL[] =
"file:///c:/path/to/search?t={searchTerms}";
const char DefaultSearchPolicyHandlerTest::kHostName[] = "test.com";
#if !BUILDFLAG(IS_IOS) && !BUILDFLAG(IS_ANDROID)
const char DefaultSearchPolicyHandlerTest::kKeyword[] = "MyKeyword";
const char DefaultSearchPolicyHandlerTest::kNewTabURL[] =
"http://test.com/newtab";
#endif
void DefaultSearchPolicyHandlerTest::
BuildDefaultSearchPolicy(PolicyMap* policy) {
base::Value::List encodings;
encodings.Append("UTF-16");
encodings.Append("UTF-8");
policy->Set(key::kDefaultSearchProviderEnabled, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(true),
nullptr);
policy->Set(key::kDefaultSearchProviderSearchURL, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(kSearchURL),
nullptr);
policy->Set(key::kDefaultSearchProviderName, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(kName),
nullptr);
policy->Set(key::kDefaultSearchProviderSuggestURL, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(kSuggestURL),
nullptr);
policy->Set(key::kDefaultSearchProviderEncodings, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::Value(std::move(encodings)), nullptr);
policy->Set(key::kDefaultSearchProviderAlternateURLs, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::Value(default_alternate_urls_.Clone()), nullptr);
policy->Set(key::kDefaultSearchProviderImageURL, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(kImageURL),
nullptr);
policy->Set(key::kDefaultSearchProviderImageURLPostParams,
POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::Value(kImageParams), nullptr);
#if !BUILDFLAG(IS_IOS) && !BUILDFLAG(IS_ANDROID)
policy->Set(key::kDefaultSearchProviderKeyword, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(kKeyword),
nullptr);
policy->Set(key::kDefaultSearchProviderNewTabURL, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(kNewTabURL),
nullptr);
#endif
}
// Checks that if the default search policy is missing, that no elements of the
// default search policy will be present.
TEST_F(DefaultSearchPolicyHandlerTest, MissingUrl) {
PolicyMap policy;
BuildDefaultSearchPolicy(&policy);
policy.Erase(key::kDefaultSearchProviderSearchURL);
UpdateProviderPolicy(policy);
const base::Value* temp = nullptr;
EXPECT_FALSE(store_->GetValue(
DefaultSearchManager::kDefaultSearchProviderDataPrefName, &temp));
}
// Checks that if the default search policy is invalid, that no elements of the
// default search policy will be present.
TEST_F(DefaultSearchPolicyHandlerTest, Invalid) {
PolicyMap policy;
BuildDefaultSearchPolicy(&policy);
const char bad_search_url[] = "http://test.com/noSearchTerms";
policy.Set(key::kDefaultSearchProviderSearchURL, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::Value(bad_search_url), nullptr);
UpdateProviderPolicy(policy);
const base::Value* temp = nullptr;
EXPECT_FALSE(store_->GetValue(
DefaultSearchManager::kDefaultSearchProviderDataPrefName, &temp));
}
// Checks that if the default search policy has invalid type for elements,
// that no elements of the default search policy will be present in prefs.
TEST_F(DefaultSearchPolicyHandlerTest, InvalidType) {
// List of policies defined in test policy.
const char* kPolicyNamesToCheck[] = {
key::kDefaultSearchProviderEnabled,
key::kDefaultSearchProviderName,
key::kDefaultSearchProviderSearchURL,
key::kDefaultSearchProviderSuggestURL,
key::kDefaultSearchProviderEncodings,
key::kDefaultSearchProviderAlternateURLs,
key::kDefaultSearchProviderImageURL,
key::kDefaultSearchProviderImageURLPostParams,
#if !BUILDFLAG(IS_IOS) && !BUILDFLAG(IS_ANDROID)
key::kDefaultSearchProviderKeyword,
key::kDefaultSearchProviderNewTabURL,
#endif
};
PolicyMap policy;
BuildDefaultSearchPolicy(&policy);
for (auto* policy_name : kPolicyNamesToCheck) {
// Check that policy can be successfully applied first.
UpdateProviderPolicy(policy);
const base::Value* temp = nullptr;
EXPECT_TRUE(store_->GetValue(
DefaultSearchManager::kDefaultSearchProviderDataPrefName, &temp));
// It's safe to use `GetValueUnsafe()` as multiple policy types are handled.
auto old_value = policy.GetValueUnsafe(policy_name)->Clone();
// BinaryValue is not supported in any current default search policy params.
// Try changing policy param to BinaryValue and check that policy becomes
// invalid.
policy.Set(policy_name, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER,
POLICY_SOURCE_CLOUD, base::Value(base::Value::Type::BINARY),
nullptr);
UpdateProviderPolicy(policy);
EXPECT_FALSE(store_->GetValue(
DefaultSearchManager::kDefaultSearchProviderDataPrefName, &temp))
<< "Policy type check failed " << policy_name;
// Return old value to policy map.
policy.Set(policy_name, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER,
POLICY_SOURCE_CLOUD, std::move(old_value), nullptr);
}
}
// Checks that for a fully defined search policy, all elements have been
// read properly into the dictionary pref.
TEST_F(DefaultSearchPolicyHandlerTest, FullyDefined) {
PolicyMap policy;
BuildDefaultSearchPolicy(&policy);
UpdateProviderPolicy(policy);
const base::Value* temp = nullptr;
EXPECT_TRUE(store_->GetValue(
DefaultSearchManager::kDefaultSearchProviderDataPrefName, &temp));
const base::Value::Dict* dictionary = temp->GetIfDict();
ASSERT_TRUE(dictionary);
ASSERT_EQ(
dictionary->FindInt(DefaultSearchManager::kPolicyOrigin),
static_cast<int>(TemplateURLData::PolicyOrigin::kDefaultSearchProvider));
const std::string* value = nullptr;
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kURL));
EXPECT_EQ(kSearchURL, *value);
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kShortName));
EXPECT_EQ(kName, *value);
#if !BUILDFLAG(IS_IOS) && !BUILDFLAG(IS_ANDROID)
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kKeyword));
EXPECT_EQ(kKeyword, *value);
#endif
ASSERT_TRUE(
value = dictionary->FindString(DefaultSearchManager::kSuggestionsURL));
EXPECT_EQ(kSuggestURL, *value);
base::Value::List encodings;
encodings.Append("UTF-16");
encodings.Append("UTF-8");
const base::Value::List* list_value = nullptr;
ASSERT_TRUE(list_value =
dictionary->FindList(DefaultSearchManager::kInputEncodings));
EXPECT_EQ(encodings, *list_value);
ASSERT_TRUE(list_value =
dictionary->FindList(DefaultSearchManager::kAlternateURLs));
EXPECT_EQ(default_alternate_urls_, *list_value);
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kImageURL));
EXPECT_EQ(kImageURL, *value);
ASSERT_TRUE(value = dictionary->FindString(
DefaultSearchManager::kImageURLPostParams));
EXPECT_EQ(kImageParams, *value);
ASSERT_TRUE(value = dictionary->FindString(
DefaultSearchManager::kSearchURLPostParams));
EXPECT_EQ(std::string(), *value);
EXPECT_TRUE(value = dictionary->FindString(
DefaultSearchManager::kSuggestionsURLPostParams));
EXPECT_EQ(std::string(), *value);
}
// Checks that disabling default search is properly reflected the dictionary
// pref.
TEST_F(DefaultSearchPolicyHandlerTest, DisabledByPolicy) {
PolicyMap policy;
policy.Set(key::kDefaultSearchProviderEnabled, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(false),
nullptr);
policy.Set(key::kDefaultSearchProviderSearchURL, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::Value("http://a/?{searchTerms}"), nullptr);
UpdateProviderPolicy(policy);
const base::Value* temp = nullptr;
// Ignore any other search provider related policy in this case.
EXPECT_FALSE(store_->GetValue(DefaultSearchManager::kURL, &temp));
EXPECT_TRUE(store_->GetValue(
DefaultSearchManager::kDefaultSearchProviderDataPrefName, &temp));
const base::Value::Dict* dictionary = temp->GetIfDict();
ASSERT_TRUE(dictionary);
std::optional<bool> disabled =
dictionary->FindBool(DefaultSearchManager::kDisabledByPolicy);
EXPECT_TRUE(disabled.has_value());
EXPECT_TRUE(disabled.value());
}
// Check that when the default search enabled policy is not set, all other
// default search-related policies are ignored.
TEST_F(DefaultSearchPolicyHandlerTest, DisabledByPolicyNotSet) {
PolicyMap policy;
policy.Set(key::kDefaultSearchProviderSearchURL, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::Value("http://a/?{searchTerms}"), nullptr);
UpdateProviderPolicy(policy);
const base::Value* temp = nullptr;
EXPECT_FALSE(store_->GetValue(
DefaultSearchManager::kDefaultSearchProviderDataPrefName, &temp));
EXPECT_FALSE(store_->GetValue(DefaultSearchManager::kURL, &temp));
}
// Checks that if the policy for default search is valid, i.e. there's a
// search URL, that all the elements have been given proper defaults.
TEST_F(DefaultSearchPolicyHandlerTest, MinimallyDefined) {
PolicyMap policy;
policy.Set(key::kDefaultSearchProviderEnabled, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(true),
nullptr);
policy.Set(key::kDefaultSearchProviderSearchURL, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(kSearchURL),
nullptr);
UpdateProviderPolicy(policy);
const base::Value* temp = nullptr;
EXPECT_TRUE(store_->GetValue(
DefaultSearchManager::kDefaultSearchProviderDataPrefName, &temp));
const base::Value::Dict* dictionary = temp->GetIfDict();
ASSERT_TRUE(dictionary);
// Name and keyword should be derived from host.
ASSERT_EQ(
dictionary->FindInt(DefaultSearchManager::kPolicyOrigin),
static_cast<int>(TemplateURLData::PolicyOrigin::kDefaultSearchProvider));
const std::string* value = nullptr;
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kURL));
EXPECT_EQ(kSearchURL, *value);
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kShortName));
EXPECT_EQ(kHostName, *value);
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kKeyword));
EXPECT_EQ(kHostName, *value);
// Everything else should be set to the default value.
ASSERT_TRUE(
value = dictionary->FindString(DefaultSearchManager::kSuggestionsURL));
EXPECT_EQ(std::string(), *value);
const base::Value::List* list_value = nullptr;
ASSERT_TRUE(list_value =
dictionary->FindList(DefaultSearchManager::kInputEncodings));
EXPECT_EQ(base::Value::List(), *list_value);
ASSERT_TRUE(list_value =
dictionary->FindList(DefaultSearchManager::kAlternateURLs));
EXPECT_EQ(base::Value::List(), *list_value);
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kImageURL));
EXPECT_EQ(std::string(), *value);
ASSERT_TRUE(value = dictionary->FindString(
DefaultSearchManager::kImageURLPostParams));
EXPECT_EQ(std::string(), *value);
ASSERT_TRUE(value = dictionary->FindString(
DefaultSearchManager::kSearchURLPostParams));
EXPECT_EQ(std::string(), *value);
ASSERT_TRUE(value = dictionary->FindString(
DefaultSearchManager::kSuggestionsURLPostParams));
EXPECT_EQ(std::string(), *value);
}
// Checks that setting a file URL as the default search is reflected properly in
// the dictionary pref.
TEST_F(DefaultSearchPolicyHandlerTest, FileURL) {
PolicyMap policy;
policy.Set(key::kDefaultSearchProviderEnabled, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, base::Value(true),
nullptr);
policy.Set(key::kDefaultSearchProviderSearchURL, POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD,
base::Value(kFileSearchURL), nullptr);
UpdateProviderPolicy(policy);
const base::Value* temp = nullptr;
EXPECT_TRUE(store_->GetValue(
DefaultSearchManager::kDefaultSearchProviderDataPrefName, &temp));
const base::Value::Dict* dictionary = temp->GetIfDict();
ASSERT_TRUE(dictionary);
ASSERT_EQ(
dictionary->FindInt(DefaultSearchManager::kPolicyOrigin),
static_cast<int>(TemplateURLData::PolicyOrigin::kDefaultSearchProvider));
const std::string* value = nullptr;
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kURL));
EXPECT_EQ(kFileSearchURL, *value);
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kShortName));
EXPECT_EQ("_", *value);
ASSERT_TRUE(value = dictionary->FindString(DefaultSearchManager::kKeyword));
EXPECT_EQ("_", *value);
}
} // namespace policy
|