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
|
// 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 "chrome/browser/privacy_sandbox/privacy_sandbox_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
using enum privacy_sandbox::PrivacyPolicyDomainType;
using enum privacy_sandbox::PrivacyPolicyColorScheme;
struct PrivacyPolicyURLTestData {
// Inputs
privacy_sandbox::PrivacyPolicyDomainType domain_type;
privacy_sandbox::PrivacyPolicyColorScheme color_scheme;
std::string locale;
// Expectation
std::string expected_url;
};
// This test class verifies the construction of the embedded privacy policy URL
// under different conditions, including variations in:
// 1. If the user is located in China (domain_type)
// 2. Browser Theme (color_scheme)
// 3. User's Language Preference (locale)
//
// It ensures the correct URL is generated for each combination of these
// parameters.
class PrivacyPolicyURLTests
: public testing::Test,
public testing::WithParamInterface<PrivacyPolicyURLTestData> {};
TEST_P(PrivacyPolicyURLTests, ValidatingURL) {
std::string privacy_policy_url = privacy_sandbox::GetEmbeddedPrivacyPolicyURL(
GetParam().domain_type, GetParam().color_scheme, GetParam().locale);
ASSERT_EQ(privacy_policy_url, GetParam().expected_url);
}
INSTANTIATE_TEST_SUITE_P(
PrivacyPolicyURLTests,
PrivacyPolicyURLTests,
testing::Values(
PrivacyPolicyURLTestData{
.domain_type = kChina,
.color_scheme = kDarkMode,
.locale = "fr",
.expected_url = "https://policies.google.cn/privacy/"
"embedded?hl=fr&color_scheme=dark",
},
PrivacyPolicyURLTestData{
.domain_type = kNonChina,
.color_scheme = kDarkMode,
.locale = "fr",
.expected_url = "https://policies.google.com/privacy/"
"embedded?hl=fr&color_scheme=dark",
},
PrivacyPolicyURLTestData{
.domain_type = kChina,
.color_scheme = kLightMode,
.locale = "fr",
.expected_url = "https://policies.google.cn/privacy/embedded?hl=fr",
},
PrivacyPolicyURLTestData{
.domain_type = kNonChina,
.color_scheme = kLightMode,
.locale = "fr",
.expected_url =
"https://policies.google.com/privacy/embedded?hl=fr",
},
PrivacyPolicyURLTestData{
.domain_type = kChina,
.color_scheme = kLightMode,
.locale = "",
.expected_url = "https://policies.google.cn/privacy/embedded",
},
PrivacyPolicyURLTestData{
.domain_type = kNonChina,
.color_scheme = kLightMode,
.locale = "",
.expected_url = "https://policies.google.com/privacy/embedded",
},
PrivacyPolicyURLTestData{
.domain_type = kChina,
.color_scheme = kDarkMode,
.locale = "",
.expected_url =
"https://policies.google.cn/privacy/embedded?color_scheme=dark",
},
PrivacyPolicyURLTestData{
.domain_type = kNonChina,
.color_scheme = kDarkMode,
.locale = "",
.expected_url = "https://policies.google.com/privacy/"
"embedded?color_scheme=dark",
},
// Validating that this edge case in
// google_util::AppendGoogleLocaleParam are covered by the returned URL.
PrivacyPolicyURLTestData{
.domain_type = kNonChina,
.color_scheme = kLightMode,
.locale = "nb",
.expected_url =
"https://policies.google.com/privacy/embedded?hl=no",
}));
} // namespace
|