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
|
// Copyright 2025 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/test/scoped_feature_list.h"
#include "base/values.h"
#include "chrome/browser/policy/policy_test_utils.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/content_settings/core/common/content_settings.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/policy_constants.h"
#include "components/prefs/pref_service.h"
#include "content/browser/browsing_data/browsing_data_test_utils.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/test_navigation_observer.h"
#include "net/base/features.h"
#include "net/cookies/canonical_cookie.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "services/network/public/mojom/cookie_manager.mojom.h"
#include "url/gurl.h"
namespace policy {
class LegacyCookieScopePolicyBrowserTest
: public policy::PolicyTest,
public testing::WithParamInterface<bool> {
public:
LegacyCookieScopePolicyBrowserTest() {
if (AreFeaturesEnabled()) {
scoped_feature_list_.InitWithFeatures(
{net::features::kEnablePortBoundCookies,
net::features::kEnableSchemeBoundCookies},
{});
} else {
scoped_feature_list_.InitWithFeatures(
{}, {net::features::kEnablePortBoundCookies,
net::features::kEnableSchemeBoundCookies});
}
}
bool AreFeaturesEnabled() const { return GetParam(); }
protected:
GURL example_port_80_ = GURL("https://www.example.com:80/");
GURL example_port_800_ = GURL("https://www.example.com:800/");
GURL example_port_8000_ = GURL("https://www.example.com:8000/");
GURL example_port_10_ = GURL("https://www.example.com:10/");
GURL foo_port_80_ = GURL("https://www.foo.com:80/");
GURL foo_port_800_ = GURL("https://www.foo.com:800/");
GURL foo_port_8000_ = GURL("https://www.foo.com:8000/");
GURL foo_port_10_ = GURL("https://www.foo.com:10/");
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
IN_PROC_BROWSER_TEST_P(LegacyCookieScopePolicyBrowserTest,
TestLegacyCookieScopeEnabled) {
Profile* profile = browser()->profile();
// No cookies at startup
ASSERT_TRUE(content::GetCookies(profile, example_port_80_).empty());
// Add cookies for example.com and foo.com that alias each other.
ASSERT_TRUE(
content::SetCookie(profile, example_port_80_, "example_cookie=1"));
ASSERT_TRUE(
content::SetCookie(profile, example_port_800_, "example_cookie=2"));
ASSERT_TRUE(
content::SetCookie(profile, example_port_8000_, "example_cookie=3"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_80_, "foo_cookie=1"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_800_, "foo_cookie=2"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_8000_, "foo_cookie=3"));
auto cookies = content::GetAllCookies(profile);
// When the feature is enabled, aliasing cookies will not be deleted.
// Otherwise they are not aliasing and just overwrite.
EXPECT_EQ(cookies.size(), AreFeaturesEnabled() ? 6u : 2u);
PolicyMap policies;
// Enables the policy, which will delete all aliasing cookies under each
// domain once enabled.
SetPolicy(&policies, key::kLegacyCookieScopeEnabled, base::Value(1));
UpdateProviderPolicy(policies);
// Adding an aliasing cookie after setting the policy triggers aliasing cookie
// deletion for that domain.
ASSERT_TRUE(
content::SetCookie(profile, example_port_10_, "example_cookie=4"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_10_, "foo_cookie=4"));
cookies = content::GetAllCookies(profile);
// Only 2 cookies should remain, the last cookie for each domain.
EXPECT_EQ(cookies.size(), 2u);
// Only the last cookie should be present, all aliases should be deleted.
EXPECT_EQ(cookies[0].Name(), "example_cookie");
EXPECT_EQ(cookies[0].Value(), "4");
EXPECT_EQ(cookies[1].Name(), "foo_cookie");
EXPECT_EQ(cookies[1].Value(), "4");
}
IN_PROC_BROWSER_TEST_P(LegacyCookieScopePolicyBrowserTest,
TestLegacyCookieScopeEnabledForDomainList) {
Profile* profile = browser()->profile();
// No cookies at startup
ASSERT_TRUE(content::GetCookies(profile, example_port_80_).empty());
// Add cookies for example.com and foo.com that alias each other.
ASSERT_TRUE(
content::SetCookie(profile, example_port_80_, "example_cookie=1"));
ASSERT_TRUE(
content::SetCookie(profile, example_port_800_, "example_cookie=2"));
ASSERT_TRUE(
content::SetCookie(profile, example_port_8000_, "example_cookie=3"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_80_, "foo_cookie=1"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_800_, "foo_cookie=2"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_8000_, "foo_cookie=3"));
auto cookies = content::GetAllCookies(profile);
// When the feature is enabled, aliasing cookies will not be deleted.
// Otherwise they are not aliasing and just overwrite.
EXPECT_EQ(cookies.size(), AreFeaturesEnabled() ? 6u : 2u);
base::Value::List policy_value;
// Set the policy to enable legacy cookie scope for the domains in the list.
policy_value.Append("example.com");
policy_value.Append("foo.com");
PolicyMap policies;
SetPolicy(&policies, key::kLegacyCookieScopeEnabledForDomainList,
base::Value(std::move(policy_value)));
UpdateProviderPolicy(policies);
// Adding aliasing cookie after setting policy so all previous aliases should
// be deleted.
ASSERT_TRUE(
content::SetCookie(profile, example_port_10_, "example_cookie=4"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_10_, "foo_cookie=4"));
cookies = content::GetAllCookies(profile);
// Only the last cookie should be present, all aliases should be deleted.
EXPECT_EQ(cookies.size(), 2u);
EXPECT_EQ(cookies[0].Name(), "example_cookie");
EXPECT_EQ(cookies[0].Value(), "4");
EXPECT_EQ(cookies[1].Name(), "foo_cookie");
EXPECT_EQ(cookies[1].Value(), "4");
}
IN_PROC_BROWSER_TEST_P(LegacyCookieScopePolicyBrowserTest,
TestLegacyCookieScopeEnabledForSingleDomain) {
Profile* profile = browser()->profile();
// No cookies at startup
ASSERT_TRUE(content::GetCookies(profile, example_port_80_).empty());
// Add cookies for example.com and foo.com that alias each other.
ASSERT_TRUE(
content::SetCookie(profile, example_port_80_, "example_cookie=1"));
ASSERT_TRUE(
content::SetCookie(profile, example_port_800_, "example_cookie=2"));
ASSERT_TRUE(
content::SetCookie(profile, example_port_8000_, "example_cookie=3"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_80_, "foo_cookie=1"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_800_, "foo_cookie=2"));
ASSERT_TRUE(content::SetCookie(profile, foo_port_8000_, "foo_cookie=3"));
auto cookies = content::GetAllCookies(profile);
if (AreFeaturesEnabled()) {
EXPECT_EQ(cookies.size(), 6u);
} else {
EXPECT_EQ(cookies.size(), 2u);
}
base::Value::List policy_value;
// Set the policy to enable legacy cookie scope for the example.com
// Aliases under foo.com should not be deleted due to this.
policy_value.Append("example.com");
PolicyMap policies;
SetPolicy(&policies, key::kLegacyCookieScopeEnabledForDomainList,
base::Value(std::move(policy_value)));
UpdateProviderPolicy(policies);
// Adding aliasing cookie after setting policy so all previous aliases should
// be deleted.
ASSERT_TRUE(
content::SetCookie(profile, example_port_10_, "example_cookie=4"));
// foo_cookie=4 and all of it's aliases should not be deleted.
ASSERT_TRUE(content::SetCookie(profile, foo_port_10_, "foo_cookie=4"));
cookies = content::GetAllCookies(profile);
// Separate cookies by name.
std::vector<net::CanonicalCookie> example_cookies;
std::vector<net::CanonicalCookie> foo_cookies;
for (const auto& cookie : cookies) {
if (cookie.Name() == "example_cookie") {
example_cookies.push_back(cookie);
} else if (cookie.Name() == "foo_cookie") {
foo_cookies.push_back(cookie);
}
}
// Check the number of cookies for each name.
// Only one example_cookie should remain.
EXPECT_EQ(example_cookies.size(), 1u);
EXPECT_EQ(example_cookies[0].Value(), "4");
if (AreFeaturesEnabled()) {
// All foo_cookie should remain.
EXPECT_EQ(foo_cookies.size(), 4u);
} else {
// Without port-bound cookies, these are not aliasing and just overwrite.
EXPECT_EQ(foo_cookies.size(), 1u);
EXPECT_EQ(foo_cookies[0].Value(), "4");
}
}
IN_PROC_BROWSER_TEST_P(
LegacyCookieScopePolicyBrowserTest,
TestLegacyCookieScopeEnabledForDomainListPartitionedCookies) {
Profile* profile = browser()->profile();
// No cookies at startup
ASSERT_TRUE(content::GetCookies(profile, example_port_80_).empty());
net::CookiePartitionKey partition_key =
net::CookiePartitionKey::FromURLForTesting(
GURL("https://www.example.com"));
// Add cookies for example.com and foo.com that alias each other.
ASSERT_TRUE(content::SetCookie(
profile, example_port_80_,
"example_cookie=1;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, example_port_800_,
"example_cookie=2;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, example_port_8000_,
"example_cookie=3;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, foo_port_80_, "foo_cookie=1;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, foo_port_800_, "foo_cookie=2;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, foo_port_8000_, "foo_cookie=3;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
auto cookies = content::GetAllCookies(profile);
// When the feature is enabled, aliasing cookies will not be deleted.
// Otherwise they are not aliasing and just overwrite.
EXPECT_EQ(cookies.size(), AreFeaturesEnabled() ? 6u : 2u);
base::Value::List policy_value;
// Set the policy to enable legacy cookie scope for the domains in the list.
policy_value.Append("example.com");
policy_value.Append("foo.com");
PolicyMap policies;
SetPolicy(&policies, key::kLegacyCookieScopeEnabledForDomainList,
base::Value(std::move(policy_value)));
UpdateProviderPolicy(policies);
// Adding aliasing cookie after setting policy so all previous aliases should
// be deleted.
ASSERT_TRUE(content::SetCookie(
profile, example_port_10_,
"example_cookie=4;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, foo_port_10_, "foo_cookie=4;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
cookies = content::GetAllCookies(profile);
// Only the last cookie should be present, all aliases should be deleted.
EXPECT_EQ(cookies.size(), 2u);
EXPECT_EQ(cookies[0].Name(), "example_cookie");
EXPECT_EQ(cookies[0].Value(), "4");
EXPECT_TRUE(cookies[0].IsPartitioned());
EXPECT_EQ(cookies[1].Name(), "foo_cookie");
EXPECT_EQ(cookies[1].Value(), "4");
EXPECT_TRUE(cookies[1].IsPartitioned());
}
IN_PROC_BROWSER_TEST_P(LegacyCookieScopePolicyBrowserTest,
TestLegacyCookieScopeEnabledPartitionedCookies) {
Profile* profile = browser()->profile();
// No cookies at startup
ASSERT_TRUE(content::GetCookies(profile, example_port_80_).empty());
net::CookiePartitionKey partition_key =
net::CookiePartitionKey::FromURLForTesting(
GURL("https://www.example.com"));
// Add cookies for example.com and foo.com that alias each other.
ASSERT_TRUE(content::SetCookie(
profile, example_port_80_,
"example_cookie=1;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, example_port_800_,
"example_cookie=2;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, example_port_8000_,
"example_cookie=3;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, foo_port_80_, "foo_cookie=1;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, foo_port_800_, "foo_cookie=2;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, foo_port_8000_, "foo_cookie=3;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
auto cookies = content::GetAllCookies(profile);
// When the feature is enabled, aliasing cookies will not be deleted.
// Otherwise they are not aliasing and just overwrite.
EXPECT_EQ(cookies.size(), AreFeaturesEnabled() ? 6u : 2u);
base::Value::List policy_value;
// Set the policy to enable legacy cookie scope for the domains in the list.
policy_value.Append("example.com");
policy_value.Append("foo.com");
PolicyMap policies;
SetPolicy(&policies, key::kLegacyCookieScopeEnabled, base::Value(1));
UpdateProviderPolicy(policies);
// Adding aliasing cookie after setting policy so all previous aliases should
// be deleted.
ASSERT_TRUE(content::SetCookie(
profile, example_port_10_,
"example_cookie=4;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
ASSERT_TRUE(content::SetCookie(
profile, foo_port_10_, "foo_cookie=4;SameSite=None;Secure;Partitioned",
net::CookieOptions::SameSiteCookieContext::MakeInclusive(),
&partition_key));
cookies = content::GetAllCookies(profile);
// Only the last cookie should be present, all aliases should be deleted.
EXPECT_EQ(cookies.size(), 2u);
EXPECT_EQ(cookies[0].Name(), "example_cookie");
EXPECT_EQ(cookies[0].Value(), "4");
EXPECT_TRUE(cookies[0].IsPartitioned());
EXPECT_EQ(cookies[1].Name(), "foo_cookie");
EXPECT_EQ(cookies[1].Value(), "4");
EXPECT_TRUE(cookies[1].IsPartitioned());
}
INSTANTIATE_TEST_SUITE_P(All,
LegacyCookieScopePolicyBrowserTest,
testing::Bool());
} // namespace policy
|