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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534
|
// Copyright 2024 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/ip_protection/common/ip_protection_proxy_delegate.h"
#include <cstddef>
#include <cstdint>
#include <map>
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <utility>
#include <vector>
#include "base/base64.h"
#include "base/check.h"
#include "base/files/scoped_temp_dir.h"
#include "base/functional/callback_forward.h"
#include "base/json/json_reader.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/strings/string_number_conversions.h"
#include "base/test/bind.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/time/time.h"
#include "base/types/expected.h"
#include "base/values.h"
#include "components/content_settings/core/common/content_settings_utils.h"
#include "components/content_settings/core/common/host_indexed_content_settings.h"
#include "components/ip_protection/common/ip_protection_core.h"
#include "components/ip_protection/common/ip_protection_data_types.h"
#include "components/ip_protection/common/ip_protection_probabilistic_reveal_token_direct_fetcher.h"
#include "components/ip_protection/common/ip_protection_probabilistic_reveal_token_manager.h"
#include "components/ip_protection/common/ip_protection_proxy_config_manager.h"
#include "components/ip_protection/common/ip_protection_telemetry.h"
#include "components/ip_protection/common/ip_protection_token_manager.h"
#include "components/ip_protection/common/masked_domain_list_manager.h"
#include "components/ip_protection/common/probabilistic_reveal_token_registry.h"
#include "components/ip_protection/common/probabilistic_reveal_token_test_consumer.h"
#include "components/ip_protection/common/probabilistic_reveal_token_test_issuer.h"
#include "components/ip_protection/get_probabilistic_reveal_token.pb.h"
#include "components/privacy_sandbox/masked_domain_list/masked_domain_list.pb.h"
#include "net/base/features.h"
#include "net/base/net_errors.h"
#include "net/base/network_anonymization_key.h"
#include "net/base/proxy_chain.h"
#include "net/base/proxy_server.h"
#include "net/base/proxy_string_util.h"
#include "net/base/registry_controlled_domains/registry_controlled_domain.h"
#include "net/base/request_priority.h"
#include "net/base/schemeful_site.h"
#include "net/http/http_response_headers.h"
#include "net/proxy_resolution/proxy_info.h"
#include "net/proxy_resolution/proxy_retry_info.h"
#include "net/test/gtest_util.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "net/url_request/url_request_context.h"
#include "net/url_request/url_request_context_builder.h"
#include "net/url_request/url_request_test_util.h"
#include "services/network/public/cpp/features.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/cpp/weak_wrapper_shared_url_loader_factory.h"
#include "services/network/public/mojom/network_context.mojom.h"
#include "services/network/public/mojom/proxy_config.mojom-shared.h"
#include "services/network/test/test_url_loader_factory.h"
#include "services/network/test/test_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using net::test::IsError;
using net::test::IsOk;
namespace ip_protection {
namespace {
using ::masked_domain_list::MaskedDomainList;
using ::masked_domain_list::Resource;
using ::masked_domain_list::ResourceOwner;
using ::network::mojom::IpProtectionProxyBypassPolicy;
constexpr char kHttpsUrl[] = "https://example.com";
constexpr char kHttpUrl[] = "http://example.com";
constexpr char kLocalhost[] = "http://localhost";
constexpr char kProxyResolutionHistogram[] =
"NetworkService.IpProtection.ProxyResolution";
constexpr char kEligibilityHistogram[] =
"NetworkService.IpProtection.RequestIsEligibleForProtection";
constexpr char kAreAuthTokensAvailableHistogram[] =
"NetworkService.IpProtection.AreAuthTokensAvailable";
constexpr char kIsProxyListAvailableHistogram[] =
"NetworkService.IpProtection.IsProxyListAvailable";
constexpr char kAvailabilityHistogram[] =
"NetworkService.IpProtection.ProtectionIsAvailableForRequest";
constexpr size_t kPRTPlaintextSize = 29;
class MockIpProtectionCore : public IpProtectionCore {
public:
explicit MockIpProtectionCore(
MaskedDomainListManager* masked_domain_list_manager,
ProbabilisticRevealTokenRegistry* prt_registry = nullptr,
// Default is set to true which is needed for the default MDL type.
bool ip_protection_incognito = true,
IpProtectionProbabilisticRevealTokenManager* prt_manager = nullptr)
: masked_domain_list_manager_(masked_domain_list_manager),
prt_registry_(prt_registry),
prt_manager_(prt_manager) {
mdl_type_ = ip_protection_incognito ? MdlType::kIncognito
: MdlType::kRegularBrowsing;
if (ip_protection_incognito && prt_manager_) {
prt_manager_->RequestTokens();
}
}
bool IsMdlPopulated() override {
return masked_domain_list_manager_->IsPopulated();
}
bool RequestShouldBeProxied(
const GURL& request_url,
const net::NetworkAnonymizationKey& network_anonymization_key) override {
return masked_domain_list_manager_->Matches(
request_url, network_anonymization_key, mdl_type_);
}
bool IsIpProtectionEnabled() override { return is_ip_protection_enabled_; }
bool AreAuthTokensAvailable() override { return auth_token_.has_value(); }
bool IsProbabilisticRevealTokenAvailable() override {
if (prt_) {
return true;
}
return (prt_manager_ && prt_manager_->IsTokenAvailable());
}
bool WereTokenCachesEverFilled() override {
return were_token_caches_ever_filled_;
}
std::optional<BlindSignedAuthToken> GetAuthToken(
size_t chain_index) override {
return std::move(auth_token_);
}
std::optional<std::string> GetProbabilisticRevealToken(
const std::string& top_level,
const std::string& third_party) override {
if (prt_) {
return prt_;
}
return prt_manager_ ? prt_manager_->GetToken(top_level, third_party)
: std::nullopt;
}
// Set the auth token that will be returned from the next call to
// `GetAuthToken()`.
void SetNextAuthToken(std::optional<BlindSignedAuthToken> auth_token) {
auth_token_ = std::move(auth_token);
were_token_caches_ever_filled_ = true;
}
// Set the serialized PRT that will be returned for the
// `GetProbabilisticRevealToken()` call. This is used to mock
// core's PRT query behavior. For a more realistic PRT manager
// behavior, construct MockCore with a non-null PRT manager.
void SetPRT(std::optional<std::string> prt) { prt_ = std::move(prt); }
std::vector<net::ProxyChain> GetProxyChainList() override {
return *proxy_list_;
}
void QuicProxiesFailed() override {
if (on_proxies_failed_) {
std::move(on_proxies_failed_).Run();
}
}
bool IsProxyListAvailable() override { return proxy_list_.has_value(); }
void RequestRefreshProxyList() override {
if (on_force_refresh_proxy_list_) {
std::move(on_force_refresh_proxy_list_).Run();
}
}
void GeoObserved(const std::string& geo_id) override {}
bool HasTrackingProtectionException(
const GURL& first_party_url) const override {
for (const content_settings::HostIndexedContentSettings& index :
tp_content_settings_) {
if (const content_settings::RuleEntry* result =
index.Find(GURL(), first_party_url);
result != nullptr) {
return content_settings::ValueToContentSetting(result->second.value) ==
CONTENT_SETTING_ALLOW;
}
}
return false;
}
void SetTrackingProtectionContentSetting(
const ContentSettingsForOneType& settings) override {
tp_content_settings_ =
content_settings::HostIndexedContentSettings::Create(settings);
}
bool ShouldRequestIncludeProbabilisticRevealToken(
const GURL& request_url) override {
return (prt_registry_ && prt_registry_->IsRegistered(request_url));
}
void SetIpProtectionEnabled(bool value) { is_ip_protection_enabled_ = value; }
// Set the proxy list returned from `ProxyList()`.
void SetProxyList(std::vector<net::ProxyChain> proxy_list) {
proxy_list_ = std::move(proxy_list);
}
void SetOnRequestRefreshProxyList(
base::OnceClosure on_force_refresh_proxy_list) {
on_force_refresh_proxy_list_ = std::move(on_force_refresh_proxy_list);
}
void SetOnProxiesFailed(base::OnceClosure on_proxies_failed) {
on_proxies_failed_ = std::move(on_proxies_failed);
}
void ExhaustTokenCache() { auth_token_ = std::nullopt; }
private:
bool is_ip_protection_enabled_ = true;
bool were_token_caches_ever_filled_ = false;
MdlType mdl_type_;
std::optional<BlindSignedAuthToken> auth_token_;
std::optional<std::vector<net::ProxyChain>> proxy_list_;
std::optional<std::string> prt_;
std::vector<net::ProxyChain> proxy_chain_list_;
base::OnceClosure on_force_refresh_proxy_list_;
base::OnceClosure on_proxies_failed_;
raw_ptr<MaskedDomainListManager> masked_domain_list_manager_;
raw_ptr<ProbabilisticRevealTokenRegistry> prt_registry_;
std::vector<content_settings::HostIndexedContentSettings>
tp_content_settings_;
raw_ptr<IpProtectionProbabilisticRevealTokenManager> prt_manager_;
};
MaskedDomainListManager CreateMdlManager(
const std::map<std::string, std::set<std::string>>& first_party_map) {
auto allow_list = MaskedDomainListManager(
IpProtectionProxyBypassPolicy::kFirstPartyToTopLevelFrame);
MaskedDomainList mdl = masked_domain_list::MaskedDomainList();
for (auto const& [domain, properties] : first_party_map) {
ResourceOwner& resourceOwner = *mdl.add_resource_owners();
for (auto property : properties) {
resourceOwner.add_owned_properties(property);
}
Resource& resource = *resourceOwner.add_owned_resources();
resource.set_domain(domain);
}
allow_list.UpdateMaskedDomainListForTesting(mdl);
return allow_list;
}
base::Value::Dict CreateRegistryFromJson(const std::string& json_content) {
std::optional<base::Value> json =
base::JSONReader::Read(json_content, base::JSON_ALLOW_TRAILING_COMMAS);
CHECK(json.has_value());
return (*std::move(json)).TakeDict();
}
} // namespace
MATCHER_P2(Contain,
expected_name,
expected_value,
std::string("headers ") + (negation ? "don't " : "") + "contain '" +
expected_name + ": " + expected_value + "'") {
std::optional<std::string> value = arg.GetHeader(expected_name);
return value && value == expected_value;
}
struct HeadersReceived {
net::ProxyChain proxy_chain;
uint64_t chain_index;
scoped_refptr<net::HttpResponseHeaders> response_headers;
};
class TestCustomProxyConnectionObserver
: public network::mojom::CustomProxyConnectionObserver {
public:
TestCustomProxyConnectionObserver() = default;
~TestCustomProxyConnectionObserver() override = default;
const std::optional<std::pair<net::ProxyChain, int>>& FallbackArgs() const {
return fallback_;
}
const std::optional<HeadersReceived>& HeadersReceivedArgs() const {
return headers_received_;
}
// mojom::CustomProxyConnectionObserver:
void OnFallback(const net::ProxyChain& bad_chain, int net_error) override {
fallback_ = std::make_pair(bad_chain, net_error);
}
void OnTunnelHeadersReceived(const net::ProxyChain& proxy_chain,
uint64_t chain_index,
const scoped_refptr<net::HttpResponseHeaders>&
response_headers) override {
headers_received_ =
HeadersReceived{proxy_chain, chain_index, response_headers};
}
private:
std::optional<std::pair<net::ProxyChain, int>> fallback_;
std::optional<HeadersReceived> headers_received_;
};
class IpProtectionProxyDelegateTest : public testing::Test {
public:
IpProtectionProxyDelegateTest() = default;
void SetUp() override {
context_ = net::CreateTestURLRequestContextBuilder()->Build();
scoped_feature_list_.InitWithFeatures(
{net::features::kEnableIpProtectionProxy,
network::features::kMaskedDomainList},
{});
// Advance to an arbitrary time.
task_environment_.AdvanceClock(base::Time::UnixEpoch() + base::Days(4242) -
base::Time::Now());
}
protected:
std::unique_ptr<IpProtectionProxyDelegate> CreateDelegate(
IpProtectionCore* ipp_core) {
return std::make_unique<IpProtectionProxyDelegate>(ipp_core);
}
std::unique_ptr<net::URLRequest> CreateRequest(const GURL& url) {
return context_->CreateRequest(url, net::DEFAULT_PRIORITY, nullptr,
TRAFFIC_ANNOTATION_FOR_TESTS);
}
// Shortcut to create a ProxyChain from hostnames.
net::ProxyChain MakeChain(std::vector<std::string> hostnames,
int chain_id = 0) {
std::vector<net::ProxyServer> servers;
for (auto& hostname : hostnames) {
servers.push_back(net::ProxyServer::FromSchemeHostAndPort(
net::ProxyServer::SCHEME_HTTPS, hostname, std::nullopt));
}
return net::ProxyChain::ForIpProtection(servers, chain_id);
}
BlindSignedAuthToken MakeAuthToken(std::string content) {
BlindSignedAuthToken token;
token.token = std::move(content);
return token;
}
void RunUntilIdle() { task_environment_.RunUntilIdle(); }
protected:
base::HistogramTester histogram_tester_;
private:
std::unique_ptr<net::URLRequestContext> context_;
base::test::ScopedFeatureList scoped_feature_list_;
base::test::TaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
};
TEST_F(IpProtectionProxyDelegateTest, AddsTokenToTunnelRequest) {
MaskedDomainListManager mdl_manager = CreateMdlManager(
/*first_party_map=*/{});
auto ipp_core = std::make_unique<MockIpProtectionCore>(&mdl_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::HttpRequestHeaders headers;
auto ip_protection_proxy_chain = net::ProxyChain::ForIpProtection(
{net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxya", std::nullopt),
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxyb", std::nullopt)});
EXPECT_THAT(delegate->OnBeforeTunnelRequest(ip_protection_proxy_chain,
/*chain_index=*/0, &headers),
IsOk());
EXPECT_THAT(headers, Contain("Authorization", "Bearer: a-token"));
}
TEST_F(IpProtectionProxyDelegateTest, ErrorIfConnectionWithNoTokens) {
auto masked_domain_list_manager = CreateMdlManager(
/*first_party_map=*/{});
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::HttpRequestHeaders headers;
auto ip_protection_proxy_chain = net::ProxyChain::ForIpProtection(
{net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxya", std::nullopt),
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxyb", std::nullopt)});
EXPECT_THAT(delegate->OnBeforeTunnelRequest(ip_protection_proxy_chain,
/*chain_index=*/0, &headers),
IsError(net::ERR_TUNNEL_CONNECTION_FAILED));
EXPECT_THAT(delegate->OnBeforeTunnelRequest(ip_protection_proxy_chain,
/*chain_index=*/1, &headers),
IsError(net::ERR_TUNNEL_CONNECTION_FAILED));
}
TEST_F(IpProtectionProxyDelegateTest, AddsDebugExperimentArm) {
std::map<std::string, std::string> parameters;
parameters[net::features::kIpPrivacyDebugExperimentArm.name] = "13";
base::test::ScopedFeatureList scoped_feature_list;
scoped_feature_list.InitAndEnableFeatureWithParameters(
net::features::kEnableIpProtectionProxy, std::move(parameters));
for (int chain_index : {0, 1}) {
auto masked_domain_list_manager = CreateMdlManager(
/*first_party_map=*/{});
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::HttpRequestHeaders headers;
auto ip_protection_proxy_chain = net::ProxyChain::ForIpProtection(
{net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxya", std::nullopt),
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxyb", std::nullopt)});
EXPECT_THAT(delegate->OnBeforeTunnelRequest(ip_protection_proxy_chain,
chain_index, &headers),
IsOk());
EXPECT_THAT(headers, Contain("Ip-Protection-Debug-Experiment-Arm", "13"));
}
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxyDeprioritizesBadProxies) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"}),
MakeChain({"backup-proxya", "backup-proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyRetryInfoMap retry_map;
net::ProxyRetryInfo& info = retry_map[net::ProxyChain::ForIpProtection(
{net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxya", std::nullopt),
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxyb", std::nullopt)})];
info.try_while_bad = false;
info.bad_until = base::TimeTicks::Now() + base::Days(2);
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", std::move(retry_map), &result);
net::ProxyList expected_proxy_list;
expected_proxy_list.AddProxyChain(net::ProxyChain::ForIpProtection(
{net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"backup-proxya", std::nullopt),
net::ProxyServer::FromSchemeHostAndPort(
net::ProxyServer::SCHEME_HTTPS, "backup-proxyb", std::nullopt)}));
expected_proxy_list.AddProxyChain(net::ProxyChain::ForIpProtection({}));
EXPECT_TRUE(result.proxy_list().Equals(expected_proxy_list))
<< "Got: " << result.proxy_list().ToDebugString();
EXPECT_TRUE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(kProxyResolutionHistogram,
ProxyResolutionResult::kAttemptProxy, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, true,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
histogram_tester_.ExpectUniqueSample(kAvailabilityHistogram, true, 1);
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxyAllProxiesBad) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyRetryInfoMap retry_map;
net::ProxyRetryInfo& info = retry_map[net::ProxyChain::ForIpProtection(
{net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxya", std::nullopt),
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxyb", std::nullopt)})];
info.try_while_bad = false;
info.bad_until = base::TimeTicks::Now() + base::Days(2);
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", std::move(retry_map), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_TRUE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(kProxyResolutionHistogram,
ProxyResolutionResult::kAttemptProxy, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, true,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
histogram_tester_.ExpectUniqueSample(kAvailabilityHistogram, true, 1);
}
TEST_F(IpProtectionProxyDelegateTest,
OnResolveProxyMaskedDomainListManagerMatch) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList(
{MakeChain({"ippro-1", "ippro-2"}), MakeChain({"ippro-2", "ippro-2"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
// Verify that the IP Protection proxy list is correctly merged with the
// existing proxy list.
result.UsePacString("PROXY bar; DIRECT; PROXY weird");
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
net::ProxyList expected_proxy_list;
expected_proxy_list.AddProxyServer(
net::PacResultElementToProxyServer("PROXY bar"));
const net::ProxyServer kProxyServer1{net::ProxyServer::SCHEME_HTTPS,
net::HostPortPair("ippro-1", 443)};
const net::ProxyServer kProxyServer2{net::ProxyServer::SCHEME_HTTPS,
net::HostPortPair("ippro-2", 443)};
const net::ProxyChain kIpProtectionChain1 =
net::ProxyChain::ForIpProtection({kProxyServer1, kProxyServer2});
const net::ProxyChain kIpProtectionChain2 =
net::ProxyChain::ForIpProtection({kProxyServer2, kProxyServer2});
expected_proxy_list.AddProxyChain(std::move(kIpProtectionChain1));
expected_proxy_list.AddProxyChain(std::move(kIpProtectionChain2));
expected_proxy_list.AddProxyChain(net::ProxyChain::ForIpProtection({}));
expected_proxy_list.AddProxyServer(
net::PacResultElementToProxyServer("PROXY weird"));
EXPECT_TRUE(result.proxy_list().Equals(expected_proxy_list))
<< "Got: " << result.proxy_list().ToDebugString();
EXPECT_FALSE(result.is_for_ip_protection());
// After a fallback, the first IP Protection proxy chain should be used.
EXPECT_TRUE(result.Fallback(net::ERR_PROXY_CONNECTION_FAILED,
net::NetLogWithSource()));
EXPECT_TRUE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(kProxyResolutionHistogram,
ProxyResolutionResult::kAttemptProxy, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, true,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
histogram_tester_.ExpectUniqueSample(kAvailabilityHistogram, true, 1);
}
TEST_F(IpProtectionProxyDelegateTest,
OnResolveProxyMaskedDomainListManagerMatch_DirectOnly) {
std::map<std::string, std::string> parameters;
parameters[net::features::kIpPrivacyDirectOnly.name] = "true";
base::test::ScopedFeatureList scoped_feature_list;
scoped_feature_list.InitAndEnableFeatureWithParameters(
net::features::kEnableIpProtectionProxy, std::move(parameters));
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"foo"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
net::ProxyList expected_proxy_list;
auto ip_protection_proxy_chain = net::ProxyChain::ForIpProtection({});
expected_proxy_list.AddProxyChain(std::move(ip_protection_proxy_chain));
EXPECT_TRUE(result.proxy_list().Equals(expected_proxy_list))
<< "Got: " << result.proxy_list().ToDebugString();
EXPECT_TRUE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(kProxyResolutionHistogram,
ProxyResolutionResult::kAttemptProxy, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, true,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
histogram_tester_.ExpectUniqueSample(kAvailabilityHistogram, true, 1);
}
TEST_F(IpProtectionProxyDelegateTest,
OnResolveProxyMaskedDomainListManagerDoesNotMatch_FirstPartyException) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {"top.com"};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"ippro-1"}), MakeChain({"ippro-2"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_FALSE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(kProxyResolutionHistogram,
ProxyResolutionResult::kNoMdlMatch, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kIneligible, 1);
histogram_tester_.ExpectTotalCount(kAreAuthTokensAvailableHistogram, 0);
histogram_tester_.ExpectTotalCount(kIsProxyListAvailableHistogram, 0);
histogram_tester_.ExpectTotalCount(kAvailabilityHistogram, 0);
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxy_NoAuthTokenEver) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetProxyList({MakeChain({"proxy"})});
// No token is added to the cache, so the result will be direct.
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_FALSE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(
kProxyResolutionHistogram, ProxyResolutionResult::kTokensNeverAvailable,
1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, false,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
histogram_tester_.ExpectUniqueSample(kAvailabilityHistogram, false, 1);
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxy_NoAuthToken_Exhausted) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetProxyList({MakeChain({"proxy"})});
// Token is added but will be removed to simulate exhaustion.
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->ExhaustTokenCache();
// Tokens in cache are exhausted, so the result will be direct.
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_FALSE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(
kProxyResolutionHistogram, ProxyResolutionResult::kTokensExhausted, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, false,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
histogram_tester_.ExpectUniqueSample(kAvailabilityHistogram, false, 1);
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxy_NoProxyList) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
// No proxy list is added to the cache, so the result will be direct.
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_FALSE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(
kProxyResolutionHistogram, ProxyResolutionResult::kProxyListNotAvailable,
1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, false,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, false,
1);
histogram_tester_.ExpectUniqueSample(kAvailabilityHistogram, false, 1);
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxy_IpProtectionDisabled) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxy"})});
ipp_core->SetIpProtectionEnabled(false);
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_FALSE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(
kProxyResolutionHistogram, ProxyResolutionResult::kSettingDisabled, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectTotalCount(kAreAuthTokensAvailableHistogram, 0);
histogram_tester_.ExpectTotalCount(kIsProxyListAvailableHistogram, 0);
histogram_tester_.ExpectTotalCount(kAvailabilityHistogram, 0);
}
// When URLs do not match the allow list, the result is direct and not flagged
// as for IP protection.
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxyIpProtectionNoMatch) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["not.example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"ippro-1"}), MakeChain({"ippro-2"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kLocalhost),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("http://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_FALSE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(kProxyResolutionHistogram,
ProxyResolutionResult::kNoMdlMatch, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kIneligible, 1);
histogram_tester_.ExpectTotalCount(kAreAuthTokensAvailableHistogram, 0);
histogram_tester_.ExpectTotalCount(kIsProxyListAvailableHistogram, 0);
histogram_tester_.ExpectTotalCount(kAvailabilityHistogram, 0);
}
// If the allowlist is empty, this suggests it hasn't yet been populated and
// thus we don't really know whether the request is supposed to be eligible or
// not.
TEST_F(IpProtectionProxyDelegateTest,
OnResolveProxyIpProtectionNoMatch_UnpopulatedAllowList) {
std::map<std::string, std::set<std::string>> first_party_map;
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"ippro-1"}), MakeChain({"ippro-2"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kLocalhost),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("http://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_FALSE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(
kProxyResolutionHistogram, ProxyResolutionResult::kMdlNotPopulated, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kUnknown, 1);
histogram_tester_.ExpectTotalCount(kAreAuthTokensAvailableHistogram, 0);
histogram_tester_.ExpectTotalCount(kIsProxyListAvailableHistogram, 0);
histogram_tester_.ExpectTotalCount(kAvailabilityHistogram, 0);
}
// When the top frame url has a User Bypass exception, do not attempt to proxy.
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxy_HasSiteException) {
base::test::ScopedFeatureList scoped_feature_list;
scoped_feature_list.InitWithFeaturesAndParameters(
{{net::features::kEnableIpProtectionProxy,
{{"IpPrivacyEnableUserBypass", "true"}}},
{network::features::kMaskedDomainList, {}}},
{});
std::map<std::string, std::set<std::string>> first_party_map;
std::string top_frame_url = "https://top.com";
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
content_settings::RuleMetaData metadata;
metadata.SetExpirationAndLifetime(base::Time(), base::TimeDelta());
ipp_core->SetTrackingProtectionContentSetting({ContentSettingPatternSource(
ContentSettingsPattern::Wildcard(),
ContentSettingsPattern::FromString(top_frame_url),
base::Value(CONTENT_SETTING_ALLOW), content_settings::ProviderType::kNone,
/*incognito=*/true, std::move(metadata))});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL(top_frame_url))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_FALSE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(
kProxyResolutionHistogram, ProxyResolutionResult::kHasSiteException, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, true,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
}
// When the top frame url has a User Bypass exception and the user has navigated
// to a subdomain of the top frame url, do not attempt to proxy.
TEST_F(IpProtectionProxyDelegateTest,
OnResolveProxy_HasSiteExceptionForSubdomain) {
base::test::ScopedFeatureList scoped_feature_list;
scoped_feature_list.InitWithFeaturesAndParameters(
{{net::features::kEnableIpProtectionProxy,
{{"IpPrivacyEnableUserBypass", "true"}}},
{network::features::kMaskedDomainList, {}}},
{});
std::map<std::string, std::set<std::string>> first_party_map;
std::string top_frame_url = "https://top.com";
std::string subdomain_url = "https://sub.top.com";
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
content_settings::RuleMetaData metadata;
metadata.SetExpirationAndLifetime(base::Time(), base::TimeDelta());
ipp_core->SetTrackingProtectionContentSetting({ContentSettingPatternSource(
ContentSettingsPattern::Wildcard(),
ContentSettingsPattern::FromString(top_frame_url),
base::Value(CONTENT_SETTING_ALLOW), content_settings::ProviderType::kNone,
/*incognito=*/true, std::move(metadata))});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL(subdomain_url))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_TRUE(result.is_direct());
EXPECT_FALSE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(
kProxyResolutionHistogram, ProxyResolutionResult::kHasSiteException, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, true,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
}
// When the top frame url has a User Bypass exception but the experiment to
// enable the proxying logic is not enabled, still proxy successfully.
TEST_F(
IpProtectionProxyDelegateTest,
OnResolveProxy_HasSiteExceptionWithExperimentDisabledWillProxySucessfully) {
std::map<std::string, std::set<std::string>> first_party_map;
std::string top_frame_url = "https://top.com";
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
content_settings::RuleMetaData metadata;
metadata.SetExpirationAndLifetime(base::Time(), base::TimeDelta());
ipp_core->SetTrackingProtectionContentSetting({ContentSettingPatternSource(
ContentSettingsPattern::Wildcard(),
ContentSettingsPattern::FromString(top_frame_url),
base::Value(CONTENT_SETTING_ALLOW), content_settings::ProviderType::kNone,
/*incognito=*/true, std::move(metadata))});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL(top_frame_url))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_FALSE(result.is_direct());
EXPECT_TRUE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(kProxyResolutionHistogram,
ProxyResolutionResult::kAttemptProxy, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
}
// When the URL is HTTP and multi-proxy chains are used, the result is flagged
// as for IP protection and is not direct.
TEST_F(IpProtectionProxyDelegateTest,
OnResolveProxyIpProtectionMultiProxyHttpSuccess) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxy1", "proxy2"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("http://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_FALSE(result.is_direct());
EXPECT_TRUE(result.is_for_ip_protection());
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, true,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
histogram_tester_.ExpectUniqueSample(kAvailabilityHistogram, true, 1);
}
// When URLs match the allow list, and a token is available, the result is
// flagged as for IP protection and is not direct.
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxyIpProtectionSuccess) {
std::map<std::string, std::set<std::string>> first_party_map;
first_party_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(first_party_map);
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
result.UseDirect();
delegate->OnResolveProxy(GURL(kHttpsUrl),
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(GURL("https://top.com"))),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_FALSE(result.is_direct());
EXPECT_TRUE(result.is_for_ip_protection());
EXPECT_FALSE(result.prt_header_value().has_value());
histogram_tester_.ExpectUniqueSample(kProxyResolutionHistogram,
ProxyResolutionResult::kAttemptProxy, 1);
histogram_tester_.ExpectUniqueSample(kEligibilityHistogram,
ProtectionEligibility::kEligible, 1);
histogram_tester_.ExpectUniqueSample(kAreAuthTokensAvailableHistogram, true,
1);
histogram_tester_.ExpectUniqueSample(kIsProxyListAvailableHistogram, true, 1);
histogram_tester_.ExpectUniqueSample(kAvailabilityHistogram, true, 1);
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxyPRTSuccess) {
const GURL top_level_url =
GURL("https://sub.top.com:27272/another/path/arbitrary");
const GURL destination_url =
GURL("https://foo.example.com:1234/some/arbitrary/path/");
std::map<std::string, std::set<std::string>> mdl_map;
mdl_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(mdl_map);
ProbabilisticRevealTokenRegistry registry;
registry.UpdateRegistry(CreateRegistryFromJson(R"json({
"domains": [
"example.com",
]
})json"));
auto ipp_core = std::make_unique<MockIpProtectionCore>(
&masked_domain_list_manager, ®istry);
ipp_core->SetPRT("serialized-prt");
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
delegate->OnResolveProxy(destination_url,
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(top_level_url)),
"GET", net::ProxyRetryInfoMap(), &result);
std::optional<std::string> maybe_header_value = result.prt_header_value();
ASSERT_TRUE(maybe_header_value.has_value());
EXPECT_EQ(maybe_header_value.value(),
":" + base::Base64Encode("serialized-prt") + ":");
const auto maybe_item =
net::structured_headers::ParseBareItem(maybe_header_value.value());
ASSERT_TRUE(maybe_item.has_value());
EXPECT_EQ(maybe_item.value(),
net::structured_headers::Item(
"serialized-prt",
net::structured_headers::Item::ItemType::kByteSequenceType));
}
TEST_F(IpProtectionProxyDelegateTest, NoPRTHeaderWhenFetchOnlyFeatureEnabled) {
base::test::ScopedFeatureList scoped_feature_list;
scoped_feature_list.InitWithFeaturesAndParameters(
{{net::features::kEnableProbabilisticRevealTokens,
{{"ProbabilisticRevealTokenFetchOnly", "true"}}}},
{});
const GURL top_level_url =
GURL("https://sub.top.com:27272/another/path/arbitrary");
const GURL destination_url =
GURL("https://foo.example.com:1234/some/arbitrary/path/");
std::map<std::string, std::set<std::string>> mdl_map;
mdl_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(mdl_map);
ProbabilisticRevealTokenRegistry registry;
registry.UpdateRegistry(CreateRegistryFromJson(R"json({
"domains": [
"example.com",
]
})json"));
auto ipp_core = std::make_unique<MockIpProtectionCore>(
&masked_domain_list_manager, ®istry);
ipp_core->SetPRT("serialized-prt");
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
delegate->OnResolveProxy(destination_url,
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(top_level_url)),
"GET", net::ProxyRetryInfoMap(), &result);
std::optional<std::string> maybe_header_value = result.prt_header_value();
ASSERT_FALSE(maybe_header_value.has_value());
}
TEST_F(IpProtectionProxyDelegateTest,
PRTHeaderNotAddedToNonProxiedRequestsByDefault) {
const GURL top_level_url =
GURL("https://sub.top.com:27272/another/path/arbitrary");
const GURL destination_url =
GURL("https://foo.example.com:1234/some/arbitrary/path/");
// Empty MDL.
std::map<std::string, std::set<std::string>> mdl_map;
auto masked_domain_list_manager = CreateMdlManager(mdl_map);
ProbabilisticRevealTokenRegistry registry;
registry.UpdateRegistry(CreateRegistryFromJson(R"json({
"domains": [
"example.com",
]
})json"));
auto ipp_core = std::make_unique<MockIpProtectionCore>(
&masked_domain_list_manager, ®istry);
ipp_core->SetPRT("serialized-prt");
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
delegate->OnResolveProxy(destination_url,
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(top_level_url)),
"GET", net::ProxyRetryInfoMap(), &result);
std::optional<std::string> maybe_header_value = result.prt_header_value();
ASSERT_FALSE(maybe_header_value.has_value());
}
TEST_F(IpProtectionProxyDelegateTest,
PRTHeaderNotAddedToNonProxiedRequestsWhenFeatureDisabled) {
base::test::ScopedFeatureList scoped_feature_list;
scoped_feature_list.InitWithFeaturesAndParameters(
{{net::features::kEnableProbabilisticRevealTokens,
{{"EnableProbabilisticRevealTokensForNonProxiedRequests", "false"}}}},
{});
const GURL top_level_url =
GURL("https://sub.top.com:27272/another/path/arbitrary");
const GURL destination_url =
GURL("https://foo.example.com:1234/some/arbitrary/path/");
// Empty MDL.
std::map<std::string, std::set<std::string>> mdl_map;
auto masked_domain_list_manager = CreateMdlManager(mdl_map);
ProbabilisticRevealTokenRegistry registry;
registry.UpdateRegistry(CreateRegistryFromJson(R"json({
"domains": [
"example.com",
]
})json"));
auto ipp_core = std::make_unique<MockIpProtectionCore>(
&masked_domain_list_manager, ®istry);
ipp_core->SetPRT("serialized-prt");
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
delegate->OnResolveProxy(destination_url,
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(top_level_url)),
"GET", net::ProxyRetryInfoMap(), &result);
std::optional<std::string> maybe_header_value = result.prt_header_value();
ASSERT_FALSE(maybe_header_value.has_value());
}
TEST_F(IpProtectionProxyDelegateTest,
PRTHeaderAddedToNonProxiedRequestsWhenFeatureEnabled) {
base::test::ScopedFeatureList scoped_feature_list;
scoped_feature_list.InitWithFeaturesAndParameters(
{{net::features::kEnableProbabilisticRevealTokens,
{{"EnableProbabilisticRevealTokensForNonProxiedRequests", "true"}}}},
{});
const GURL top_level_url =
GURL("https://sub.top.com:27272/another/path/arbitrary");
const GURL destination_url =
GURL("https://foo.example.com:1234/some/arbitrary/path/");
// Empty MDL.
std::map<std::string, std::set<std::string>> mdl_map;
auto masked_domain_list_manager = CreateMdlManager(mdl_map);
ProbabilisticRevealTokenRegistry registry;
registry.UpdateRegistry(CreateRegistryFromJson(R"json({
"domains": [
"example.com",
]
})json"));
auto ipp_core = std::make_unique<MockIpProtectionCore>(
&masked_domain_list_manager, ®istry);
ipp_core->SetPRT("serialized-prt");
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
delegate->OnResolveProxy(destination_url,
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(top_level_url)),
"GET", net::ProxyRetryInfoMap(), &result);
std::optional<std::string> maybe_header_value = result.prt_header_value();
ASSERT_TRUE(maybe_header_value.has_value());
EXPECT_EQ(maybe_header_value.value(),
":" + base::Base64Encode("serialized-prt") + ":");
const auto maybe_item =
net::structured_headers::ParseBareItem(maybe_header_value.value());
ASSERT_TRUE(maybe_item.has_value());
EXPECT_EQ(maybe_item.value(),
net::structured_headers::Item(
"serialized-prt",
net::structured_headers::Item::ItemType::kByteSequenceType));
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxyPRTNoToken) {
const GURL top_level_url =
GURL("https://sub.top.com:27272/another/path/arbitrary");
const GURL destination_url =
GURL("https://foo.example.com:1234/some/arbitrary/path/");
std::map<std::string, std::set<std::string>> mdl_map;
mdl_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(mdl_map);
ProbabilisticRevealTokenRegistry registry;
registry.UpdateRegistry(CreateRegistryFromJson(R"json({
"domains": [
"example.com",
]
})json"));
auto ipp_core = std::make_unique<MockIpProtectionCore>(
&masked_domain_list_manager, ®istry);
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
// `ipp_core` does not have any PRTs.
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
delegate->OnResolveProxy(destination_url,
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(top_level_url)),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_FALSE(result.prt_header_value().has_value());
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxyPRTNotInRegList) {
const GURL top_level_url =
GURL("https://sub.top.com:27272/another/path/arbitrary");
const GURL destination_url =
GURL("https://foo.example.com:1234/some/arbitrary/path/");
std::map<std::string, std::set<std::string>> mdl_map;
mdl_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(mdl_map);
ProbabilisticRevealTokenRegistry registry;
// Pass empty registration list to the core.
auto ipp_core = std::make_unique<MockIpProtectionCore>(
&masked_domain_list_manager, ®istry);
ipp_core->SetPRT("prt-serialized");
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
delegate->OnResolveProxy(destination_url,
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(top_level_url)),
"GET", net::ProxyRetryInfoMap(), &result);
EXPECT_FALSE(result.prt_header_value().has_value());
}
TEST_F(IpProtectionProxyDelegateTest, OnResolveProxyPRTIntegration) {
const GURL top_level_url =
GURL("https://sub.top.com:27272/another/path/arbitrary");
const GURL destination_url =
GURL("https://foo.example.com:1234/some/arbitrary/path/");
std::map<std::string, std::set<std::string>> mdl_map;
mdl_map["example.com"] = {};
auto masked_domain_list_manager = CreateMdlManager(mdl_map);
ProbabilisticRevealTokenRegistry registry;
registry.UpdateRegistry(CreateRegistryFromJson(R"json({
"domains": [
"example.com",
]
})json"));
// Mock a response proto type that is received from the PRT issuer server.
base::expected<std::unique_ptr<ProbabilisticRevealTokenTestIssuer>,
absl::Status>
maybe_issuer =
ProbabilisticRevealTokenTestIssuer::Create(/*private_key=*/2468);
ASSERT_TRUE(maybe_issuer.has_value());
auto& issuer = maybe_issuer.value();
const size_t num_tokens = 100;
std::vector<std::string> plaintexts(num_tokens, "");
for (std::size_t i = 0; i < num_tokens; ++i) {
std::string p = "prt-for-testing-" + base::NumberToString(i);
plaintexts[i] = p + std::string(kPRTPlaintextSize - p.size(), '-');
}
const std::string epoch_id = "epoch-id";
base::expected<GetProbabilisticRevealTokenResponse, absl::Status>
maybe_response = issuer->Issue(
plaintexts,
/*expiration_time=*/base::Time::Now() + base::Hours(10),
/*next_epoch_start_time=*/base::Time::Now() + base::Hours(8),
/*num_tokens_with_signal=*/10, epoch_id);
ASSERT_TRUE(maybe_response.has_value())
<< "Issue() returned error " << maybe_response.error();
const std::string response_str = maybe_response->SerializeAsString();
// Set interceptor to return `response_str`, i.e., the mocked PRT issuer
// server response.
network::TestURLLoaderFactory test_url_loader_factory;
GURL prt_server_url =
GURL(net::features::kProbabilisticRevealTokenServer.Get() +
net::features::kProbabilisticRevealTokenServerPath.Get());
test_url_loader_factory.SetInterceptor(
base::BindLambdaForTesting([&](const network::ResourceRequest& request) {
GetProbabilisticRevealTokenRequest request_proto;
ASSERT_TRUE(request_proto.ParseFromString(GetUploadData(request)));
auto head = network::mojom::URLResponseHead::New();
test_url_loader_factory.AddResponse(
prt_server_url, std::move(head), response_str,
network::URLLoaderCompletionStatus(net::OK));
}));
// Create a PRT manager.
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
const base::FilePath data_dir =
temp_dir.GetPath().AppendASCII("DataDirectory");
auto fetcher =
std::make_unique<IpProtectionProbabilisticRevealTokenDirectFetcher>(
test_url_loader_factory.GetSafeWeakWrapper()->Clone(),
version_info::Channel::DEFAULT);
auto manager = std::make_unique<IpProtectionProbabilisticRevealTokenManager>(
std::move(fetcher), data_dir);
auto ipp_core = std::make_unique<MockIpProtectionCore>(
&masked_domain_list_manager, ®istry,
/*ip_protection_incognito=*/true, manager.get());
ipp_core->SetNextAuthToken(MakeAuthToken("Bearer: a-token"));
ipp_core->SetProxyList({MakeChain({"proxya", "proxyb"})});
// Advance time for PRT manager to fetch PRTs.
RunUntilIdle();
ASSERT_TRUE(manager->IsTokenAvailable())
<< "PRT manager is expected to have tokens to proceed";
auto delegate = CreateDelegate(ipp_core.get());
net::ProxyInfo result;
delegate->OnResolveProxy(destination_url,
net::NetworkAnonymizationKey::CreateCrossSite(
net::SchemefulSite(top_level_url)),
"GET", net::ProxyRetryInfoMap(), &result);
std::optional<std::string> maybe_header_value = result.prt_header_value();
ASSERT_TRUE(maybe_header_value.has_value());
auto const get_etld_plus_one = [](const GURL& url) -> std::string {
return net::registry_controlled_domains::GetDomainAndRegistry(
url, net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES);
};
std::optional<std::string> maybe_serialized_token =
ipp_core->GetProbabilisticRevealToken(get_etld_plus_one(top_level_url),
get_etld_plus_one(destination_url));
ASSERT_TRUE(maybe_serialized_token)
<< "core is expected to return the token in the header";
// Verify header value is :Base64Encode(serialized_token):
const std::string serialized_token =
std::move(maybe_serialized_token).value();
EXPECT_EQ(maybe_header_value.value(),
":" + base::Base64Encode(serialized_token) + ":");
// Verify header value yields same `Item(serialized_token)` when parsed.
std::optional<net::structured_headers::Item> maybe_item =
net::structured_headers::ParseBareItem(maybe_header_value.value());
ASSERT_TRUE(maybe_item.has_value());
EXPECT_EQ(maybe_item.value(),
net::structured_headers::Item(
serialized_token,
net::structured_headers::Item::ItemType::kByteSequenceType));
// `consumer` mocks a party that receives a PRT, de-serializes the PRT.
std::optional<ProbabilisticRevealTokenTestConsumer> consumer =
ProbabilisticRevealTokenTestConsumer::MaybeCreate(
maybe_item->GetString());
ASSERT_TRUE(consumer) << "de-serializing PRT failed";
// Verify header yields to right epoch id once parsed.
EXPECT_THAT(consumer->EpochId(), epoch_id);
// Verify the PRT from the header yields to an expected plaintext once
// revealed.
base::expected<std::string, absl::Status> maybe_revealed_token =
issuer->RevealToken(consumer->Token());
ASSERT_TRUE(maybe_revealed_token.has_value())
<< "decrypting obtained PRT failed";
EXPECT_THAT(plaintexts, testing::Contains(maybe_revealed_token.value()))
<< "revealed token value is not in starting plaintexts";
}
TEST_F(IpProtectionProxyDelegateTest, OnSuccessfulRequestAfterFailures) {
auto check = [this](std::string_view name,
const net::ProxyRetryInfoMap& proxy_retry_info_map,
bool expected_call) {
SCOPED_TRACE(name);
bool on_proxies_failed_called = false;
auto masked_domain_list_manager = CreateMdlManager(
/*first_party_map=*/{});
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetOnProxiesFailed(
base::BindLambdaForTesting([&]() { on_proxies_failed_called = true; }));
auto delegate = CreateDelegate(ipp_core.get());
delegate->OnSuccessfulRequestAfterFailures(proxy_retry_info_map);
EXPECT_EQ(expected_call, on_proxies_failed_called);
};
auto quic_chain1 = net::ProxyChain::ForIpProtection({
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_QUIC,
"proxy.com", std::nullopt),
});
auto quic_chain2 = net::ProxyChain::ForIpProtection({
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_QUIC,
"proxy2.com", std::nullopt),
});
auto https_chain1 = net::ProxyChain::ForIpProtection({
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxy.com", std::nullopt),
});
check("Only QUIC proxies",
{
{quic_chain1, net::ProxyRetryInfo()},
{quic_chain2, net::ProxyRetryInfo()},
},
true);
check("Only HTTPS proxies",
{
{https_chain1, net::ProxyRetryInfo()},
},
false);
check("Mixed QUIC and HTTPS proxies",
{
{quic_chain1, net::ProxyRetryInfo()},
{https_chain1, net::ProxyRetryInfo()},
{quic_chain2, net::ProxyRetryInfo()},
},
false);
}
TEST_F(IpProtectionProxyDelegateTest, OnFallback) {
constexpr int kChainId = 2;
auto ip_protection_proxy_chain = net::ProxyChain::ForIpProtection(
{net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxy.com", std::nullopt)},
kChainId);
bool force_refresh_called = false;
auto masked_domain_list_manager = CreateMdlManager(
/*first_party_map=*/{});
auto ipp_core =
std::make_unique<MockIpProtectionCore>(&masked_domain_list_manager);
ipp_core->SetOnRequestRefreshProxyList(
base::BindLambdaForTesting([&]() { force_refresh_called = true; }));
auto delegate = CreateDelegate(ipp_core.get());
delegate->OnFallback(ip_protection_proxy_chain, net::ERR_FAILED);
EXPECT_TRUE(force_refresh_called);
histogram_tester_.ExpectBucketCount(
"NetworkService.IpProtection.ProxyChainFallback", kChainId, 1);
}
// TODO(crbug.com/365771838): Add tests for non-ip protection nested proxy
// chains if support is enabled for all builds.
TEST_F(IpProtectionProxyDelegateTest, MergeProxyRules) {
net::ProxyChain chain1 = net::ProxyChain::ForIpProtection({
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxy2a.com", 80),
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"proxy2b.com", 80),
});
net::ProxyChain chain2(net::ProxyChain::Direct());
net::ProxyChain chain3(net::ProxyServer::FromSchemeHostAndPort(
net::ProxyServer::SCHEME_HTTPS, "proxy1.com", 80));
net::ProxyList existing_proxy_list;
existing_proxy_list.AddProxyChain(chain1);
existing_proxy_list.AddProxyChain(chain2);
existing_proxy_list.AddProxyChain(chain3);
net::ProxyChain custom1 = net::ProxyChain::ForIpProtection({
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"custom-a.com", 80),
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"custom-b.com", 80),
net::ProxyServer::FromSchemeHostAndPort(net::ProxyServer::SCHEME_HTTPS,
"custom-c.com", 80),
});
net::ProxyChain custom2(net::ProxyChain::Direct());
net::ProxyList custom_proxy_list;
custom_proxy_list.AddProxyChain(custom1);
custom_proxy_list.AddProxyChain(custom2);
auto result = IpProtectionProxyDelegate::MergeProxyRules(existing_proxy_list,
custom_proxy_list);
// Custom chains replace `chain2`.
std::vector<net::ProxyChain> expected = {
chain1,
custom1,
custom2,
chain3,
};
EXPECT_EQ(result.AllChains(), expected);
}
} // namespace ip_protection
|