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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/ash/components/network/network_connection_handler_impl.h"
#include <map>
#include <memory>
#include <set>
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/json/json_reader.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/test/task_environment.h"
#include "chromeos/ash/components/dbus/shill/shill_profile_client.h"
#include "chromeos/ash/components/network/auto_connect_handler.h"
#include "chromeos/ash/components/network/cellular_connection_handler.h"
#include "chromeos/ash/components/network/cellular_inhibitor.h"
#include "chromeos/ash/components/network/cellular_utils.h"
#include "chromeos/ash/components/network/client_cert_resolver.h"
#include "chromeos/ash/components/network/client_cert_util.h"
#include "chromeos/ash/components/network/managed_network_configuration_handler_impl.h"
#include "chromeos/ash/components/network/network_cert_loader.h"
#include "chromeos/ash/components/network/network_configuration_handler.h"
#include "chromeos/ash/components/network/network_connection_handler.h"
#include "chromeos/ash/components/network/network_connection_observer.h"
#include "chromeos/ash/components/network/network_handler.h"
#include "chromeos/ash/components/network/network_profile_handler.h"
#include "chromeos/ash/components/network/network_state_handler.h"
#include "chromeos/ash/components/network/network_state_test_helper.h"
#include "chromeos/ash/components/network/onc/network_onc_utils.h"
#include "chromeos/ash/components/network/prohibited_technologies_handler.h"
#include "chromeos/ash/components/network/stub_cellular_networks_provider.h"
#include "chromeos/ash/components/network/system_token_cert_db_storage.h"
#include "chromeos/ash/components/network/test_cellular_esim_profile_handler.h"
#include "components/onc/onc_constants.h"
#include "crypto/scoped_nss_types.h"
#include "crypto/scoped_test_nss_db.h"
#include "net/base/net_errors.h"
#include "net/cert/nss_cert_database_chromeos.h"
#include "net/cert/x509_certificate.h"
#include "net/test/cert_test_util.h"
#include "net/test/test_data_directory.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
#include "third_party/cros_system_api/dbus/shill/dbus-constants.h"
namespace ash {
namespace {
const char kSuccessResult[] = "success";
const char kTetherGuid[] = "tether-guid";
const char kTestCellularGuid[] = "cellular_guid";
const char kTestCellularDevicePath[] = "cellular_path";
const char kTestCellularDeviceName[] = "cellular_name";
const char kTestCellularServicePath[] = "cellular_service_path";
const char kTestCellularName[] = "cellular_name";
const char kTestIccid[] = "1234567890123456789";
const char kTestEuiccPath[] = "/org/chromium/Hermes/Euicc/1";
const char kTestEid[] = "123456789012345678901234567890123";
const char kTestCellularServicePath2[] = "cellular_service_path_2";
const char kTestIccid2[] = "9876543210987654321";
constexpr base::TimeDelta kCellularAutoConnectTimeout = base::Seconds(120);
class TestNetworkConnectionObserver : public NetworkConnectionObserver {
public:
TestNetworkConnectionObserver() = default;
TestNetworkConnectionObserver(const TestNetworkConnectionObserver&) = delete;
TestNetworkConnectionObserver& operator=(
const TestNetworkConnectionObserver&) = delete;
~TestNetworkConnectionObserver() override = default;
// NetworkConnectionObserver
void ConnectToNetworkRequested(const std::string& service_path) override {
requests_.insert(service_path);
}
void ConnectSucceeded(const std::string& service_path) override {
results_[service_path] = kSuccessResult;
}
void ConnectFailed(const std::string& service_path,
const std::string& error_name) override {
results_[service_path] = error_name;
}
void DisconnectRequested(const std::string& service_path) override {
requests_.insert(service_path);
disconnect_requests_.insert(service_path);
}
bool GetRequested(const std::string& service_path) {
return requests_.count(service_path) != 0;
}
std::string GetResult(const std::string& service_path) {
auto iter = results_.find(service_path);
if (iter == results_.end())
return "";
return iter->second;
}
const std::set<std::string>& disconnect_requests() {
return disconnect_requests_;
}
private:
std::set<std::string> disconnect_requests_;
std::set<std::string> requests_;
std::map<std::string, std::string> results_;
};
class FakeTetherDelegate : public NetworkConnectionHandler::TetherDelegate {
public:
FakeTetherDelegate()
: last_delegate_function_type_(DelegateFunctionType::NONE) {}
~FakeTetherDelegate() override = default;
enum class DelegateFunctionType { NONE, CONNECT, DISCONNECT };
DelegateFunctionType last_delegate_function_type() {
return last_delegate_function_type_;
}
void ConnectToNetwork(const std::string& service_path,
base::OnceClosure success_callback,
StringErrorCallback error_callback) override {
last_delegate_function_type_ = DelegateFunctionType::CONNECT;
last_service_path_ = service_path;
last_success_callback_ = std::move(success_callback);
last_error_callback_ = std::move(error_callback);
}
void DisconnectFromNetwork(const std::string& service_path,
base::OnceClosure success_callback,
StringErrorCallback error_callback) override {
last_delegate_function_type_ = DelegateFunctionType::DISCONNECT;
last_service_path_ = service_path;
last_success_callback_ = std::move(success_callback);
last_error_callback_ = std::move(error_callback);
}
std::string& last_service_path() { return last_service_path_; }
base::OnceClosure& last_success_callback() { return last_success_callback_; }
StringErrorCallback& last_error_callback() { return last_error_callback_; }
private:
std::string last_service_path_;
base::OnceClosure last_success_callback_;
StringErrorCallback last_error_callback_;
DelegateFunctionType last_delegate_function_type_;
};
} // namespace
class NetworkConnectionHandlerImplTest : public testing::Test {
public:
NetworkConnectionHandlerImplTest() = default;
NetworkConnectionHandlerImplTest(const NetworkConnectionHandlerImplTest&) =
delete;
NetworkConnectionHandlerImplTest& operator=(
const NetworkConnectionHandlerImplTest&) = delete;
~NetworkConnectionHandlerImplTest() override = default;
void SetUp() override {
ASSERT_TRUE(test_nssdb_.is_open());
// Use the same DB for public and private slot.
test_nsscertdb_ = std::make_unique<net::NSSCertDatabaseChromeOS>(
crypto::ScopedPK11Slot(PK11_ReferenceSlot(test_nssdb_.slot())),
crypto::ScopedPK11Slot(PK11_ReferenceSlot(test_nssdb_.slot())));
SystemTokenCertDbStorage::Initialize();
NetworkCertLoader::Initialize();
NetworkCertLoader::ForceAvailableForNetworkAuthForTesting();
LoginState::Initialize();
}
void Init(bool use_cellular_connection_handler = true) {
network_config_handler_ = NetworkConfigurationHandler::InitializeForTest(
helper_.network_state_handler(), nullptr /* network_device_handler */);
network_profile_handler_.reset(new NetworkProfileHandler());
network_profile_handler_->Init();
managed_config_handler_.reset(new ManagedNetworkConfigurationHandlerImpl());
managed_config_handler_->Init(
/*cellular_policy_handler=*/nullptr,
/*managed_cellular_pref_handler=*/nullptr,
helper_.network_state_handler(), network_profile_handler_.get(),
network_config_handler_.get(), nullptr /* network_device_handler */,
nullptr /* prohibited_tecnologies_handler */,
/*hotspot_controller=*/nullptr);
cellular_inhibitor_ = std::make_unique<CellularInhibitor>();
cellular_inhibitor_->Init(helper_.network_state_handler(),
helper_.network_device_handler());
cellular_esim_profile_handler_ =
std::make_unique<TestCellularESimProfileHandler>();
cellular_esim_profile_handler_->Init(helper_.network_state_handler(),
cellular_inhibitor_.get());
stub_cellular_networks_provider_ =
std::make_unique<StubCellularNetworksProvider>();
stub_cellular_networks_provider_->Init(
helper_.network_state_handler(), cellular_esim_profile_handler_.get(),
/*managed_cellular_pref_handler=*/nullptr);
cellular_connection_handler_.reset(new CellularConnectionHandler());
cellular_connection_handler_->Init(helper_.network_state_handler(),
cellular_inhibitor_.get(),
cellular_esim_profile_handler_.get());
network_connection_handler_ =
std::make_unique<NetworkConnectionHandlerImpl>();
network_connection_handler_->Init(
helper_.network_state_handler(), network_config_handler_.get(),
managed_config_handler_.get(),
use_cellular_connection_handler ? cellular_connection_handler_.get()
: nullptr);
network_connection_observer_.reset(new TestNetworkConnectionObserver);
network_connection_handler_->AddObserver(
network_connection_observer_.get());
client_cert_resolver_ = std::make_unique<ClientCertResolver>();
client_cert_resolver_->Init(helper_.network_state_handler(),
managed_config_handler_.get());
auto_connect_handler_ = std::make_unique<AutoConnectHandler>();
auto_connect_handler_->Init(
client_cert_resolver_.get(), network_connection_handler_.get(),
helper_.network_state_handler(), managed_config_handler_.get());
task_environment_.RunUntilIdle();
fake_tether_delegate_ = std::make_unique<FakeTetherDelegate>();
}
void TearDown() override {
helper_.hermes_euicc_test()->SetInteractiveDelay(base::Seconds(0));
helper_.manager_test()->SetInteractiveDelay(base::Seconds(0));
auto_connect_handler_.reset();
client_cert_resolver_.reset();
managed_config_handler_.reset();
network_profile_handler_.reset();
network_connection_handler_->RemoveObserver(
network_connection_observer_.get());
network_connection_observer_.reset();
network_connection_handler_.reset();
network_config_handler_.reset();
LoginState::Shutdown();
NetworkCertLoader::Shutdown();
SystemTokenCertDbStorage::Shutdown();
}
protected:
std::string ServicePathFromGuid(const std::string& guid) {
std::string service_path =
helper_.service_test()->FindServiceMatchingGUID(guid);
EXPECT_FALSE(service_path.empty());
return service_path;
}
void Connect(const std::string& service_path) {
const base::TimeDelta kProfileRefreshCallbackDelay =
base::Milliseconds(150);
network_connection_handler_->ConnectToNetwork(
service_path,
base::BindOnce(&NetworkConnectionHandlerImplTest::SuccessCallback,
base::Unretained(this)),
base::BindOnce(&NetworkConnectionHandlerImplTest::ErrorCallback,
base::Unretained(this)),
true /* check_error_state */, ConnectCallbackMode::ON_COMPLETED);
// Connect can result in two profile refresh calls before and after
// enabling profile. Fast forward by delay after refresh.
task_environment_.FastForwardBy(2 * kProfileRefreshCallbackDelay);
task_environment_.RunUntilIdle();
}
void Disconnect(const std::string& service_path) {
network_connection_handler_->DisconnectNetwork(
service_path,
base::BindOnce(&NetworkConnectionHandlerImplTest::SuccessCallback,
base::Unretained(this)),
base::BindOnce(&NetworkConnectionHandlerImplTest::ErrorCallback,
base::Unretained(this)));
task_environment_.RunUntilIdle();
}
void SuccessCallback() { result_ = kSuccessResult; }
void ErrorCallback(const std::string& error_name) { result_ = error_name; }
std::string GetResultAndReset() {
std::string result;
result.swap(result_);
return result;
}
void StartNetworkCertLoader() {
NetworkCertLoader::Get()->SetUserNSSDB(test_nsscertdb_.get());
task_environment_.RunUntilIdle();
}
void LoginToUser(LoginState::LoggedInUserType user_type) {
LoginState::Get()->SetLoggedInState(LoginState::LOGGED_IN_ACTIVE,
user_type);
task_environment_.RunUntilIdle();
}
scoped_refptr<net::X509Certificate> ImportTestClientCert() {
net::ScopedCERTCertificateList ca_cert_list =
net::CreateCERTCertificateListFromFile(
net::GetTestCertsDirectory(), "client_1_ca.pem",
net::X509Certificate::FORMAT_AUTO);
if (ca_cert_list.empty()) {
LOG(ERROR) << "No CA cert loaded.";
return nullptr;
}
net::NSSCertDatabase::ImportCertFailureList failures;
EXPECT_TRUE(test_nsscertdb_->ImportCACerts(
ca_cert_list, net::NSSCertDatabase::TRUST_DEFAULT, &failures));
if (!failures.empty()) {
LOG(ERROR) << net::ErrorToString(failures[0].net_error);
return nullptr;
}
// Import a client cert signed by that CA.
scoped_refptr<net::X509Certificate> client_cert(
net::ImportClientCertAndKeyFromFile(net::GetTestCertsDirectory(),
"client_1.pem", "client_1.pk8",
test_nssdb_.slot()));
return client_cert;
}
void SetupUserPolicy(const std::string& network_configs_json) {
base::Value::List network_configs;
if (!network_configs_json.empty()) {
auto parsed_json = base::JSONReader::ReadAndReturnValueWithError(
network_configs_json, base::JSON_ALLOW_TRAILING_COMMAS);
ASSERT_TRUE(parsed_json.has_value()) << parsed_json.error().message;
ASSERT_TRUE(parsed_json->is_list());
network_configs = std::move(parsed_json->GetList());
}
managed_config_handler_->SetPolicy(
::onc::ONC_SOURCE_USER_POLICY, helper_.UserHash(), network_configs,
/*global_network_config=*/base::Value::Dict());
task_environment_.RunUntilIdle();
}
void SetupDevicePolicy(const std::string& network_configs_json,
const base::Value::Dict& global_config) {
base::Value::List network_configs;
if (!network_configs_json.empty()) {
auto parsed_json = base::JSONReader::ReadAndReturnValueWithError(
network_configs_json, base::JSON_ALLOW_TRAILING_COMMAS);
ASSERT_TRUE(parsed_json.has_value()) << parsed_json.error().message;
ASSERT_TRUE(parsed_json->is_list());
network_configs = std::move(parsed_json->GetList());
}
managed_config_handler_->SetPolicy(::onc::ONC_SOURCE_DEVICE_POLICY,
std::string(), // no username hash
network_configs, global_config);
task_environment_.RunUntilIdle();
}
// For a user-scoped network policy (previously set through `SetupUserPolicy`)
// that configures a client certificate pattern, sets the resolved client
// certificate. Outside of unit tests, `ClientCertResolver` would do this.
void SetResolvedClientCertForUserPolicyNetwork(
const std::string& network_policy_guid,
client_cert::ResolvedCert resolved_cert) {
managed_config_handler_->SetResolvedClientCertificate(
helper_.UserHash(), network_policy_guid, std::move(resolved_cert));
}
std::string ConfigureService(const std::string& shill_json_string) {
return helper_.ConfigureService(shill_json_string);
}
std::string ConfigureVpnServiceWithProviderType(
const std::string& vpn_provider_type) {
const std::string kVpnGuid = "vpn_guid";
const std::string kShillJsonStringTemplate =
R"({"GUID": "$1", "Type": "vpn", "State": "idle",
"Provider": {"Type": "$2", "Host": "host"}})";
const std::string shill_json_string = base::ReplaceStringPlaceholders(
kShillJsonStringTemplate, {kVpnGuid, vpn_provider_type},
/*offsets=*/nullptr);
return ConfigureService(shill_json_string);
}
std::string GetServiceStringProperty(const std::string& service_path,
const std::string& key) {
return helper_.GetServiceStringProperty(service_path, key);
}
void QueueEuiccErrorStatus() {
helper_.hermes_euicc_test()->QueueHermesErrorStatus(
HermesResponseStatus::kErrorUnknown);
}
void SetCellularServiceConnectable(
const std::string& service_path = kTestCellularServicePath) {
helper_.service_test()->SetServiceProperty(
service_path, shill::kConnectableProperty, base::Value(true));
base::RunLoop().RunUntilIdle();
}
void SetCellularServiceState(const std::string& state) {
helper_.service_test()->SetServiceProperty(
kTestCellularServicePath, shill::kStateProperty, base::Value(state));
base::RunLoop().RunUntilIdle();
}
void SetCellularServiceOutOfCredits() {
helper_.service_test()->SetServiceProperty(kTestCellularServicePath,
shill::kOutOfCreditsProperty,
base::Value(true));
base::RunLoop().RunUntilIdle();
}
void SetCellularSimLocked() {
// Simulate a locked SIM.
auto sim_lock_status = base::Value::Dict().Set(shill::kSIMLockTypeProperty,
shill::kSIMLockPin);
helper_.device_test()->SetDeviceProperty(
kTestCellularDevicePath, shill::kSIMLockStatusProperty,
base::Value(std::move(sim_lock_status)), /*notify_changed=*/true);
// Set the cellular service to be the active profile.
auto sim_slot_infos = base::Value::List().Append(
base::Value::Dict()
.Set(shill::kSIMSlotInfoICCID, kTestIccid)
.Set(shill::kSIMSlotInfoPrimary, true));
helper_.device_test()->SetDeviceProperty(
kTestCellularDevicePath, shill::kSIMSlotInfoProperty,
base::Value(std::move(sim_slot_infos)), /*notify_changed=*/true);
base::RunLoop().RunUntilIdle();
}
void SetCellularSimCarrierLocked() {
// Simulate a locked SIM.
base::Value::Dict sim_lock_status;
sim_lock_status.Set(shill::kSIMLockTypeProperty, shill::kSIMLockNetworkPin);
helper_.device_test()->SetDeviceProperty(
kTestCellularDevicePath, shill::kSIMLockStatusProperty,
base::Value(std::move(sim_lock_status)), /*notify_changed=*/true);
// Set the cellular service to be the active profile.
base::Value::List sim_slot_infos;
base::Value::Dict slot_info_item;
slot_info_item.Set(shill::kSIMSlotInfoICCID, kTestIccid);
slot_info_item.Set(shill::kSIMSlotInfoPrimary, true);
sim_slot_infos.Append(std::move(slot_info_item));
helper_.device_test()->SetDeviceProperty(
kTestCellularDevicePath, shill::kSIMSlotInfoProperty,
base::Value(std::move(sim_slot_infos)), /*notify_changed=*/true);
base::RunLoop().RunUntilIdle();
}
void AddNonConnectablePSimService() {
AddCellularDevice();
AddCellularService(/*has_eid=*/false);
}
void AddNonConnectableESimService() {
AddCellularDevice();
AddCellularService(/*has_eid=*/true);
}
void AddCellularServiceWithESimProfile(bool is_stub = false) {
AddCellularDevice();
// Add EUICC which will hold the profile.
helper_.hermes_manager_test()->AddEuicc(dbus::ObjectPath(kTestEuiccPath),
kTestEid, /*is_active=*/true,
/*physical_slot=*/0);
HermesEuiccClient::TestInterface::AddCarrierProfileBehavior behavior =
is_stub ? HermesEuiccClient::TestInterface::AddCarrierProfileBehavior::
kAddProfileWithoutService
: HermesEuiccClient::TestInterface::AddCarrierProfileBehavior::
kAddProfileWithService;
helper_.hermes_euicc_test()->AddCarrierProfile(
dbus::ObjectPath(kTestCellularServicePath),
dbus::ObjectPath(kTestEuiccPath), kTestIccid, kTestCellularName,
"nickname", "service_provider", "activation_code",
kTestCellularServicePath, hermes::profile::State::kInactive,
hermes::profile::ProfileClass::kOperational, behavior);
base::RunLoop().RunUntilIdle();
}
void AddCellularService(
bool has_eid,
const std::string& service_path = kTestCellularServicePath,
const std::string& iccid = kTestIccid) {
// Add idle, non-connectable network.
helper_.service_test()->AddService(service_path, kTestCellularGuid,
kTestCellularName, shill::kTypeCellular,
shill::kStateIdle, /*visible=*/true);
if (has_eid) {
helper_.service_test()->SetServiceProperty(
service_path, shill::kEidProperty, base::Value(kTestEid));
}
helper_.service_test()->SetServiceProperty(
service_path, shill::kIccidProperty, base::Value(iccid));
base::RunLoop().RunUntilIdle();
}
// Used when testing a code that accesses NetworkHandler::Get() directly (e.g.
// when checking if VPN is disabled by policy when attempting to connect to a
// VPN network). NetworkStateTestHelper can not be used here. That's because
// NetworkStateTestHelper initializes a NetworkStateHandler for testing, but
// NetworkHandler::Initialize() constructs its own NetworkStateHandler
// instance and NetworkHandler::Get() uses it.
// Note: Tests using this method must call NetworkHandler::Shutdown() before
// returning.
void ProhibitVpnForNetworkHandler() {
NetworkHandler::Initialize();
NetworkHandler::Get()
->prohibited_technologies_handler()
->AddGloballyProhibitedTechnology(shill::kTypeVPN);
}
void AdvanceClock(base::TimeDelta time_delta) {
task_environment_.FastForwardBy(time_delta);
}
void SetShillConnectError(const std::string& error_name) {
helper_.service_test()->SetErrorForNextConnectionAttempt(error_name);
}
void TriggerPolicyAutoConnectOverrideRequest(
const std::string& service_path_to_override) {
auto_connect_handler_->NotifyAutoConnectInitiatedForTest(
AutoConnectHandler::AUTO_CONNECT_REASON_POLICY_APPLIED);
// Simulate the policy autoconnection override the manual connection
// request.
helper_.service_test()->SetServiceProperty(service_path_to_override,
shill::kStateProperty,
base::Value(shill::kStateIdle));
base::RunLoop().RunUntilIdle();
}
NetworkStateHandler* network_state_handler() {
return helper_.network_state_handler();
}
TestNetworkConnectionObserver* network_connection_observer() {
return network_connection_observer_.get();
}
NetworkConnectionHandler* network_connection_handler() {
return network_connection_handler_.get();
}
FakeTetherDelegate* fake_tether_delegate() {
return fake_tether_delegate_.get();
}
std::string UserProfilePath() {
return helper_.ProfilePathUser();
}
private:
void AddCellularDevice() {
helper_.device_test()->AddDevice(
kTestCellularDevicePath, shill::kTypeCellular, kTestCellularDeviceName);
base::RunLoop().RunUntilIdle();
}
base::test::TaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
NetworkStateTestHelper helper_{/*use_default_devices_and_services=*/false};
std::unique_ptr<NetworkConfigurationHandler> network_config_handler_;
std::unique_ptr<NetworkConnectionHandler> network_connection_handler_;
std::unique_ptr<TestNetworkConnectionObserver> network_connection_observer_;
std::unique_ptr<ManagedNetworkConfigurationHandlerImpl>
managed_config_handler_;
std::unique_ptr<CellularInhibitor> cellular_inhibitor_;
std::unique_ptr<TestCellularESimProfileHandler>
cellular_esim_profile_handler_;
std::unique_ptr<StubCellularNetworksProvider>
stub_cellular_networks_provider_;
std::unique_ptr<AutoConnectHandler> auto_connect_handler_;
std::unique_ptr<ClientCertResolver> client_cert_resolver_;
std::unique_ptr<CellularConnectionHandler> cellular_connection_handler_;
std::unique_ptr<NetworkProfileHandler> network_profile_handler_;
crypto::ScopedTestNSSDB test_nssdb_;
std::unique_ptr<net::NSSCertDatabaseChromeOS> test_nsscertdb_;
std::string result_;
std::unique_ptr<FakeTetherDelegate> fake_tether_delegate_;
};
namespace {
const char* kNoNetwork = "no-network";
const char* kConfigWifi0Connectable =
"{ \"GUID\": \"wifi0\", \"Type\": \"wifi\", \"State\": \"idle\", "
" \"Connectable\": true }";
const char* kConfigWifi1Connected =
"{ \"GUID\": \"wifi1\", \"Type\": \"wifi\", \"State\": \"online\" }";
const char* kConfigWifi2Connecting =
"{ \"GUID\": \"wifi2\", \"Type\": \"wifi\", \"State\": \"association\" }";
const char* kConfigWifi3RequiresPassphrase =
"{ \"GUID\": \"wifi3\", \"Type\": \"wifi\", "
" \"PassphraseRequired\": true }";
const char* kPolicyWifi0 =
"[{ \"GUID\": \"wifi0\", \"IPAddressConfigType\": \"DHCP\", "
" \"Type\": \"WiFi\", \"Name\": \"My WiFi Network\","
" \"WiFi\": { \"SSID\": \"wifi0\"}}]";
} // namespace
TEST_F(NetworkConnectionHandlerImplTest,
NetworkConnectionHandlerConnectSuccess) {
Init();
std::string wifi0_service_path = ConfigureService(kConfigWifi0Connectable);
ASSERT_FALSE(wifi0_service_path.empty());
Connect(wifi0_service_path);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
EXPECT_EQ(
shill::kStateOnline,
GetServiceStringProperty(wifi0_service_path, shill::kStateProperty));
// Observer expectations
EXPECT_TRUE(network_connection_observer()->GetRequested(wifi0_service_path));
EXPECT_EQ(kSuccessResult,
network_connection_observer()->GetResult(wifi0_service_path));
EXPECT_EQ("wifi0",
GetServiceStringProperty(wifi0_service_path, shill::kGuidProperty));
}
TEST_F(NetworkConnectionHandlerImplTest,
NetworkConnectionHandlerConnectSuccess_GuestUser) {
Init();
ProhibitVpnForNetworkHandler();
LoginToUser(LoginState::LOGGED_IN_USER_GUEST);
std::string wifi0_service_path = ConfigureService(kConfigWifi0Connectable);
ASSERT_FALSE(wifi0_service_path.empty());
Connect(wifi0_service_path);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
// Observer expectations
EXPECT_TRUE(network_connection_observer()->GetRequested(wifi0_service_path));
EXPECT_EQ(kSuccessResult,
network_connection_observer()->GetResult(wifi0_service_path));
EXPECT_EQ(
UserProfilePath(),
GetServiceStringProperty(wifi0_service_path, shill::kProfileProperty));
NetworkHandler::Shutdown();
}
TEST_F(NetworkConnectionHandlerImplTest,
NetworkConnectionHandlerConnectBlockedByManagedOnly) {
Init();
std::string wifi0_service_path = ConfigureService(kConfigWifi0Connectable);
ASSERT_FALSE(wifi0_service_path.empty());
auto global_config = base::Value::Dict().Set(
::onc::global_network_config::kAllowOnlyPolicyWiFiToConnect, true);
SetupDevicePolicy("[]", global_config);
SetupUserPolicy("[]");
LoginToUser(LoginState::LOGGED_IN_USER_REGULAR);
Connect(wifi0_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorBlockedByPolicy,
GetResultAndReset());
SetupDevicePolicy(kPolicyWifi0, global_config);
Connect(wifi0_service_path);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest,
NetworkConnectionHandlerConnectBlockedBySSID) {
Init();
std::string wifi0_service_path = ConfigureService(kConfigWifi0Connectable);
ASSERT_FALSE(wifi0_service_path.empty());
// Set a device policy which blocks wifi0.
auto blocked =
base::Value::List().Append("7769666930"); // hex(wifi0) = 7769666930
auto global_config = base::Value::Dict().Set(
::onc::global_network_config::kBlockedHexSSIDs, std::move(blocked));
SetupDevicePolicy("[]", global_config);
SetupUserPolicy("[]");
LoginToUser(LoginState::LOGGED_IN_USER_REGULAR);
Connect(wifi0_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorBlockedByPolicy,
GetResultAndReset());
// Set a user policy, which configures wifi0 (==allowed).
SetupUserPolicy(kPolicyWifi0);
Connect(wifi0_service_path);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
// Handles basic failure cases.
TEST_F(NetworkConnectionHandlerImplTest,
NetworkConnectionHandlerConnectFailure) {
Init();
Connect(kNoNetwork);
EXPECT_EQ(NetworkConnectionHandler::kErrorConfigureFailed,
GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(kNoNetwork));
EXPECT_EQ(NetworkConnectionHandler::kErrorConfigureFailed,
network_connection_observer()->GetResult(kNoNetwork));
std::string wifi1_service_path = ConfigureService(kConfigWifi1Connected);
ASSERT_FALSE(wifi1_service_path.empty());
Connect(wifi1_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorConnected, GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(wifi1_service_path));
EXPECT_EQ(NetworkConnectionHandler::kErrorConnected,
network_connection_observer()->GetResult(wifi1_service_path));
std::string wifi2_service_path = ConfigureService(kConfigWifi2Connecting);
ASSERT_FALSE(wifi2_service_path.empty());
Connect(wifi2_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorConnecting, GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(wifi2_service_path));
EXPECT_EQ(NetworkConnectionHandler::kErrorConnecting,
network_connection_observer()->GetResult(wifi2_service_path));
std::string wifi3_service_path =
ConfigureService(kConfigWifi3RequiresPassphrase);
Connect(wifi3_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorPassphraseRequired,
GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(wifi3_service_path));
EXPECT_EQ(NetworkConnectionHandler::kErrorPassphraseRequired,
network_connection_observer()->GetResult(wifi3_service_path));
}
TEST_F(NetworkConnectionHandlerImplTest,
IgnoreConnectInProgressError_Succeeds) {
Init();
AddCellularServiceWithESimProfile();
// Verify the result is not returned and observers are not called if shill
// returns InProgress error.
SetShillConnectError(shill::kErrorResultInProgress);
Connect(kTestCellularServicePath);
EXPECT_TRUE(GetResultAndReset().empty());
EXPECT_TRUE(network_connection_observer()
->GetResult(kTestCellularServicePath)
.empty());
// Verify that connect request returns when service state changes to
// connected.
SetCellularServiceState(shill::kStateOnline);
EXPECT_EQ(kSuccessResult,
network_connection_observer()->GetResult(kTestCellularServicePath));
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, IgnoreConnectInProgressError_Fails) {
Init();
AddNonConnectablePSimService();
SetCellularServiceConnectable();
SetShillConnectError(shill::kErrorResultInProgress);
Connect(kTestCellularServicePath);
EXPECT_TRUE(GetResultAndReset().empty());
EXPECT_TRUE(network_connection_observer()
->GetResult(kTestCellularServicePath)
.empty());
// Set cellular service to connecting state.
SetCellularServiceState(shill::kStateAssociation);
// Verify the connect request fails with error when returned and observers are
// not called if shill returns InProgress error.
SetCellularServiceState(shill::kStateIdle);
EXPECT_EQ(NetworkConnectionHandler::kErrorConnectFailed,
network_connection_observer()->GetResult(kTestCellularServicePath));
EXPECT_EQ(NetworkConnectionHandler::kErrorConnectFailed, GetResultAndReset());
}
namespace {
constexpr char kPolicyWithCertPatternTemplate[] =
"[ { \"GUID\": \"wifi4\","
" \"Name\": \"wifi4\","
" \"Type\": \"WiFi\","
" \"WiFi\": {"
" \"Security\": \"WPA-EAP\","
" \"SSID\": \"wifi_ssid\","
" \"EAP\": {"
" \"Outer\": \"EAP-TLS\","
" \"ClientCertType\": \"Pattern\","
" \"ClientCertPattern\": {"
" \"Subject\": {"
" \"CommonName\" : \"%s\""
" }"
" }"
" }"
" }"
"} ]";
constexpr char kPolicyWithCertPatternGuid[] = "wifi4";
} // namespace
// Handle certificates.
TEST_F(NetworkConnectionHandlerImplTest, ConnectCertificateMissing) {
Init();
StartNetworkCertLoader();
SetupUserPolicy(
base::StringPrintf(kPolicyWithCertPatternTemplate, "unknown"));
// Simulate that ClientCertResolver finished its run and marked that no
// certificate matched the pattern.
SetResolvedClientCertForUserPolicyNetwork(
kPolicyWithCertPatternGuid, client_cert::ResolvedCert::NothingMatched());
Connect(ServicePathFromGuid(kPolicyWithCertPatternGuid));
EXPECT_EQ(NetworkConnectionHandler::kErrorCertificateRequired,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, ConnectWithCertificateSuccess) {
Init();
StartNetworkCertLoader();
scoped_refptr<net::X509Certificate> cert = ImportTestClientCert();
ASSERT_TRUE(cert.get());
SetupUserPolicy(base::StringPrintf(kPolicyWithCertPatternTemplate,
cert->subject().common_name.c_str()));
Connect(ServicePathFromGuid(kPolicyWithCertPatternGuid));
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectWithCertificateRequestedWhenCertsCanNotBeAvailable) {
Init();
scoped_refptr<net::X509Certificate> cert = ImportTestClientCert();
ASSERT_TRUE(cert.get());
SetupUserPolicy(base::StringPrintf(kPolicyWithCertPatternTemplate,
cert->subject().common_name.c_str()));
Connect(ServicePathFromGuid(kPolicyWithCertPatternGuid));
// Connect request came when no client certificates can exist because
// NetworkCertLoader doesn't have a NSSCertDatabase configured and also has
// not notified that a NSSCertDatabase is being initialized.
EXPECT_EQ(NetworkConnectionHandler::kErrorCertificateRequired,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectWithCertificateRequestedBeforeCertsAreLoaded) {
Init();
scoped_refptr<net::X509Certificate> cert = ImportTestClientCert();
ASSERT_TRUE(cert.get());
SetupUserPolicy(base::StringPrintf(kPolicyWithCertPatternTemplate,
cert->subject().common_name.c_str()));
// Mark that a user slot NSSCertDatabase is being initialized so that
// NetworkConnectionHandler attempts to wait for certificates to be loaded.
NetworkCertLoader::Get()->MarkUserNSSDBWillBeInitialized();
Connect(ServicePathFromGuid(kPolicyWithCertPatternGuid));
// Connect request came before the cert loader loaded certificates, so the
// connect request should have been throttled until the certificates are
// loaded.
EXPECT_EQ("", GetResultAndReset());
StartNetworkCertLoader();
// |StartNetworkCertLoader| should have triggered certificate loading.
// When the certificates got loaded, the connection request should have
// proceeded and eventually succeeded.
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectWithCertificateRequestedBeforeCertsAreLoaded_NeverLoaded) {
const base::TimeDelta kMaxCertLoadTimeSeconds = base::Seconds(15);
Init();
scoped_refptr<net::X509Certificate> cert = ImportTestClientCert();
ASSERT_TRUE(cert.get());
SetupUserPolicy(base::StringPrintf(kPolicyWithCertPatternTemplate,
cert->subject().common_name.c_str()));
// Mark that a user slot NSSCertDatabase is being initialized so that
// NetworkConnectionHandler attempts to wait for certificates to be loaded.
NetworkCertLoader::Get()->MarkUserNSSDBWillBeInitialized();
Connect(ServicePathFromGuid(kPolicyWithCertPatternGuid));
// Connect request came before the cert loader loaded certificates, so the
// connect request should have been throttled until the certificates are
// loaded.
EXPECT_EQ("", GetResultAndReset());
AdvanceClock(kMaxCertLoadTimeSeconds);
// The result should indicate a certificate load timeout.
EXPECT_EQ(NetworkConnectionHandler::kErrorCertLoadTimeout,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest,
NetworkConnectionHandlerDisconnectSuccess) {
Init();
std::string wifi1_service_path = ConfigureService(kConfigWifi1Connected);
ASSERT_FALSE(wifi1_service_path.empty());
Disconnect(wifi1_service_path);
EXPECT_TRUE(network_connection_observer()->GetRequested(wifi1_service_path));
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest,
NetworkConnectionHandlerDisconnectFailure) {
Init();
Connect(kNoNetwork);
EXPECT_EQ(NetworkConnectionHandler::kErrorConfigureFailed,
GetResultAndReset());
std::string wifi0_service_path = ConfigureService(kConfigWifi0Connectable);
ASSERT_FALSE(wifi0_service_path.empty());
Disconnect(wifi0_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorNotConnected, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, ConnectToTetherNetwork_Success) {
Init();
network_state_handler()->SetTetherTechnologyState(
NetworkStateHandler::TECHNOLOGY_ENABLED);
network_state_handler()->AddTetherNetworkState(
kTetherGuid, "TetherNetwork", "Carrier", 100 /* battery_percentage */,
100 /* signal_strength */, true /* has_connected_to_host */);
network_connection_handler()->SetTetherDelegate(fake_tether_delegate());
// For tether networks, guid == service_path.
Connect(kTetherGuid /* service_path */);
EXPECT_EQ(FakeTetherDelegate::DelegateFunctionType::CONNECT,
fake_tether_delegate()->last_delegate_function_type());
EXPECT_EQ(kTetherGuid, fake_tether_delegate()->last_service_path());
std::move(fake_tether_delegate()->last_success_callback()).Run();
EXPECT_EQ(kSuccessResult, GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(kTetherGuid));
EXPECT_EQ(kSuccessResult,
network_connection_observer()->GetResult(kTetherGuid));
}
TEST_F(NetworkConnectionHandlerImplTest, ConnectToTetherNetwork_Failure) {
Init();
network_state_handler()->SetTetherTechnologyState(
NetworkStateHandler::TECHNOLOGY_ENABLED);
network_state_handler()->AddTetherNetworkState(
kTetherGuid, "TetherNetwork", "Carrier", 100 /* battery_percentage */,
100 /* signal_strength */, true /* has_connected_to_host */);
network_connection_handler()->SetTetherDelegate(fake_tether_delegate());
// For tether networks, guid == service_path.
Connect(kTetherGuid /* service_path */);
EXPECT_EQ(FakeTetherDelegate::DelegateFunctionType::CONNECT,
fake_tether_delegate()->last_delegate_function_type());
EXPECT_EQ(kTetherGuid, fake_tether_delegate()->last_service_path());
std::move(fake_tether_delegate()->last_error_callback())
.Run(NetworkConnectionHandler::kErrorConnectFailed);
EXPECT_EQ(NetworkConnectionHandler::kErrorConnectFailed, GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(kTetherGuid));
EXPECT_EQ(NetworkConnectionHandler::kErrorConnectFailed,
network_connection_observer()->GetResult(kTetherGuid));
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectToIkev2VpnNetworkWhenProhibited_Failure) {
Init();
ProhibitVpnForNetworkHandler();
const std::string vpn_service_path =
ConfigureVpnServiceWithProviderType(shill::kProviderIKEv2);
ASSERT_FALSE(vpn_service_path.empty());
Connect(/*service_path=*/vpn_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorBlockedByPolicy,
GetResultAndReset());
NetworkHandler::Shutdown();
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectToL2tpIpsecVpnNetworkWhenProhibited_Failure) {
Init();
ProhibitVpnForNetworkHandler();
const std::string vpn_service_path =
ConfigureVpnServiceWithProviderType(shill::kProviderL2tpIpsec);
ASSERT_FALSE(vpn_service_path.empty());
Connect(/*service_path=*/vpn_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorBlockedByPolicy,
GetResultAndReset());
NetworkHandler::Shutdown();
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectToOpenVpnNetworkWhenProhibited_Failure) {
Init();
ProhibitVpnForNetworkHandler();
const std::string vpn_service_path =
ConfigureVpnServiceWithProviderType(shill::kProviderOpenVpn);
ASSERT_FALSE(vpn_service_path.empty());
Connect(/*service_path=*/vpn_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorBlockedByPolicy,
GetResultAndReset());
NetworkHandler::Shutdown();
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectToWireGuardNetworkWhenProhibited_Failure) {
Init();
ProhibitVpnForNetworkHandler();
const std::string vpn_service_path =
ConfigureVpnServiceWithProviderType(shill::kProviderWireGuard);
ASSERT_FALSE(vpn_service_path.empty());
Connect(/*service_path=*/vpn_service_path);
EXPECT_EQ(NetworkConnectionHandler::kErrorBlockedByPolicy,
GetResultAndReset());
NetworkHandler::Shutdown();
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectToThirdPartyVpnNetworkWhenProhibited_Success) {
Init();
ProhibitVpnForNetworkHandler();
const std::string vpn_service_path =
ConfigureVpnServiceWithProviderType(shill::kProviderThirdPartyVpn);
ASSERT_FALSE(vpn_service_path.empty());
Connect(/*service_path=*/vpn_service_path);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
NetworkHandler::Shutdown();
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectToArcVpnNetworkWhenProhibited_Success) {
Init();
ProhibitVpnForNetworkHandler();
const std::string vpn_service_path =
ConfigureVpnServiceWithProviderType(shill::kProviderArcVpn);
ASSERT_FALSE(vpn_service_path.empty());
Connect(/*service_path=*/vpn_service_path);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
NetworkHandler::Shutdown();
}
TEST_F(NetworkConnectionHandlerImplTest,
ConnectToTetherNetwork_NoTetherDelegate) {
Init();
network_state_handler()->SetTetherTechnologyState(
NetworkStateHandler::TECHNOLOGY_ENABLED);
network_state_handler()->AddTetherNetworkState(
kTetherGuid, "TetherNetwork", "Carrier", 100 /* battery_percentage */,
100 /* signal_strength */, true /* has_connected_to_host */);
// Do not set a tether delegate.
// For tether networks, guid == service_path.
Connect(kTetherGuid /* service_path */);
EXPECT_EQ(FakeTetherDelegate::DelegateFunctionType::NONE,
fake_tether_delegate()->last_delegate_function_type());
EXPECT_EQ(NetworkConnectionHandler::kErrorTetherAttemptWithNoDelegate,
GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(kTetherGuid));
EXPECT_EQ(NetworkConnectionHandler::kErrorTetherAttemptWithNoDelegate,
network_connection_observer()->GetResult(kTetherGuid));
}
TEST_F(NetworkConnectionHandlerImplTest, DisconnectFromTetherNetwork_Success) {
Init();
network_state_handler()->SetTetherTechnologyState(
NetworkStateHandler::TECHNOLOGY_ENABLED);
network_state_handler()->AddTetherNetworkState(
kTetherGuid, "TetherNetwork", "Carrier", 100 /* battery_percentage */,
100 /* signal_strength */, true /* has_connected_to_host */);
network_state_handler()->SetTetherNetworkStateConnecting(kTetherGuid);
network_connection_handler()->SetTetherDelegate(fake_tether_delegate());
// For tether networks, guid == service_path.
Disconnect(kTetherGuid /* service_path */);
EXPECT_EQ(FakeTetherDelegate::DelegateFunctionType::DISCONNECT,
fake_tether_delegate()->last_delegate_function_type());
EXPECT_EQ(kTetherGuid, fake_tether_delegate()->last_service_path());
std::move(fake_tether_delegate()->last_success_callback()).Run();
EXPECT_EQ(kSuccessResult, GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(kTetherGuid));
EXPECT_EQ(kSuccessResult,
network_connection_observer()->GetResult(kTetherGuid));
}
TEST_F(NetworkConnectionHandlerImplTest, DisconnectFromTetherNetwork_Failure) {
Init();
network_state_handler()->SetTetherTechnologyState(
NetworkStateHandler::TECHNOLOGY_ENABLED);
network_state_handler()->AddTetherNetworkState(
kTetherGuid, "TetherNetwork", "Carrier", 100 /* battery_percentage */,
100 /* signal_strength */, true /* has_connected_to_host */);
network_state_handler()->SetTetherNetworkStateConnecting(kTetherGuid);
network_connection_handler()->SetTetherDelegate(fake_tether_delegate());
// For tether networks, guid == service_path.
Disconnect(kTetherGuid /* service_path */);
EXPECT_EQ(FakeTetherDelegate::DelegateFunctionType::DISCONNECT,
fake_tether_delegate()->last_delegate_function_type());
EXPECT_EQ(kTetherGuid, fake_tether_delegate()->last_service_path());
std::move(fake_tether_delegate()->last_error_callback())
.Run(NetworkConnectionHandler::kErrorConnectFailed);
EXPECT_EQ(NetworkConnectionHandler::kErrorConnectFailed, GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(kTetherGuid));
EXPECT_EQ(NetworkConnectionHandler::kErrorConnectFailed,
network_connection_observer()->GetResult(kTetherGuid));
}
TEST_F(NetworkConnectionHandlerImplTest,
DisconnectFromTetherNetwork_NoTetherDelegate) {
Init();
network_state_handler()->SetTetherTechnologyState(
NetworkStateHandler::TECHNOLOGY_ENABLED);
network_state_handler()->AddTetherNetworkState(
kTetherGuid, "TetherNetwork", "Carrier", 100 /* battery_percentage */,
100 /* signal_strength */, true /* has_connected_to_host */);
network_state_handler()->SetTetherNetworkStateConnecting(kTetherGuid);
// Do not set a tether delegate.
// For tether networks, guid == service_path.
Disconnect(kTetherGuid /* service_path */);
EXPECT_EQ(FakeTetherDelegate::DelegateFunctionType::NONE,
fake_tether_delegate()->last_delegate_function_type());
EXPECT_EQ(NetworkConnectionHandler::kErrorTetherAttemptWithNoDelegate,
GetResultAndReset());
EXPECT_TRUE(network_connection_observer()->GetRequested(kTetherGuid));
EXPECT_EQ(NetworkConnectionHandler::kErrorTetherAttemptWithNoDelegate,
network_connection_observer()->GetResult(kTetherGuid));
}
// Regression test for b/186381398.
TEST_F(NetworkConnectionHandlerImplTest,
PSimProfile_NoCellularConnectionHandler) {
Init(/*use_cellular_connection_handler=*/false);
AddNonConnectablePSimService();
SetCellularServiceConnectable();
Connect(kTestCellularServicePath);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, PSimProfile_NotConnectable) {
Init();
AddNonConnectablePSimService();
Connect(kTestCellularServicePath);
SetCellularServiceConnectable();
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, PSimProfile_OutOfCredits) {
Init();
AddNonConnectablePSimService();
SetCellularServiceOutOfCredits();
Connect(kTestCellularServicePath);
EXPECT_EQ(NetworkConnectionHandler::kErrorCellularOutOfCredits,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, SimLocked) {
Init();
AddNonConnectablePSimService();
SetCellularSimLocked();
SetCellularServiceConnectable();
Connect(kTestCellularServicePath);
EXPECT_EQ(NetworkConnectionHandler::kErrorSimPinPukLocked,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, SimCarrierLocked) {
Init();
AddNonConnectablePSimService();
SetCellularSimCarrierLocked();
SetCellularServiceConnectable();
Connect(kTestCellularServicePath);
EXPECT_EQ(NetworkConnectionHandler::kErrorSimCarrierLocked,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, ESimProfile_AlreadyConnectable) {
Init();
AddCellularServiceWithESimProfile();
// Set the service to be connectable before trying to connect. This does not
// invoke the CellularConnectionHandler flow since the profile is already
// enabled.
SetCellularServiceConnectable();
Connect(kTestCellularServicePath);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest,
ESimProfile_EnableProfileAndWaitForAutoconnect) {
Init();
AddCellularServiceWithESimProfile();
// Do not set the service to be connectable before trying to connect. When a
// connection is initiated, we attempt to enable the profile via Hermes.
Connect(kTestCellularServicePath);
SetCellularServiceConnectable();
// Set cellular service to connected state.
SetCellularServiceState(shill::kStateOnline);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest,
ESimProfile_EnableProfileAndAutoconnectTimeout) {
Init();
AddCellularServiceWithESimProfile();
// Do not set the service to be connectable before trying to connect. When a
// connection is initiated, we attempt to enable the profile via Hermes.
Connect(kTestCellularServicePath);
SetCellularServiceConnectable();
EXPECT_TRUE(GetResultAndReset().empty());
AdvanceClock(kCellularAutoConnectTimeout);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, ESimProfile_StubToShillBacked) {
Init();
AddCellularServiceWithESimProfile(/*is_stub=*/true);
// Connect to a stub path. Internally, this should wait until a connectable
// Shill-backed service is created.
Connect(cellular_utils::GenerateStubCellularServicePath(kTestIccid));
// Now, create a non-stub service and make it connectable.
AddNonConnectableESimService();
SetCellularServiceConnectable();
// Set cellular service to connected state.
SetCellularServiceState(shill::kStateOnline);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
// A connection was requested to the stub service path, not the actual one.
EXPECT_TRUE(network_connection_observer()->GetRequested(
cellular_utils::GenerateStubCellularServicePath(kTestIccid)));
EXPECT_FALSE(
network_connection_observer()->GetRequested(kTestCellularServicePath));
// However, the connection success was part of the actual service path, not
// the stub one.
EXPECT_EQ(std::string(),
network_connection_observer()->GetResult(
cellular_utils::GenerateStubCellularServicePath(kTestIccid)));
EXPECT_EQ(kSuccessResult,
network_connection_observer()->GetResult(kTestCellularServicePath));
}
TEST_F(NetworkConnectionHandlerImplTest, ESimProfile_EnableProfile_Fails) {
Init();
AddCellularServiceWithESimProfile();
// Queue an error which should cause enabling the profile to fail.
QueueEuiccErrorStatus();
// Do not set the service to be connectable before trying to connect. When a
// connection is initiated, we attempt to enable the profile via Hermes.
Connect(kTestCellularServicePath);
base::RunLoop().RunUntilIdle();
EXPECT_EQ(NetworkConnectionHandler::kErrorESimProfileIssue,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, MultipleCellularConnect) {
Init();
AddCellularServiceWithESimProfile();
AddCellularService(/*has_eid=*/false, kTestCellularServicePath2, kTestIccid2);
// Delay hermes operation so that first connect will be waiting in
// CellularConnectionHandler.
HermesEuiccClient::Get()->GetTestInterface()->SetInteractiveDelay(
base::Seconds(10));
Connect(kTestCellularServicePath);
Connect(kTestCellularServicePath2);
// Verify that second connect request fails with device busy.
base::RunLoop().RunUntilIdle();
EXPECT_EQ(NetworkConnectionHandler::kErrorCellularDeviceBusy,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, CellularConnect) {
Init();
AddCellularServiceWithESimProfile();
LoginToUser(LoginState::LOGGED_IN_USER_REGULAR);
Connect(kTestCellularServicePath);
SetCellularServiceConnectable();
EXPECT_TRUE(GetResultAndReset().empty());
AdvanceClock(kCellularAutoConnectTimeout);
EXPECT_EQ(kSuccessResult, GetResultAndReset());
EXPECT_EQ(shill::kStateOnline,
GetServiceStringProperty(kTestCellularServicePath,
shill::kStateProperty));
// Expect the service to be added to the shared profile even when logged in.
EXPECT_EQ(ShillProfileClient::Get()->GetSharedProfilePath(),
GetServiceStringProperty(kTestCellularServicePath,
shill::kProfileProperty));
}
TEST_F(NetworkConnectionHandlerImplTest, CellularConnectTimeout) {
const base::TimeDelta kCellularConnectTimeout = base::Seconds(150);
Init();
AddNonConnectablePSimService();
SetCellularServiceConnectable(kTestCellularServicePath);
ShillManagerClient::Get()->GetTestInterface()->SetInteractiveDelay(
base::Seconds(200));
Connect(kTestCellularServicePath);
AdvanceClock(kCellularConnectTimeout);
EXPECT_EQ(NetworkConnectionHandler::kErrorConnectTimeout,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest,
CellularConnectTimeout_StubToShillBacked) {
const base::TimeDelta kCellularConnectTimeout = base::Seconds(150);
Init();
AddCellularServiceWithESimProfile(/*is_stub=*/true);
// Connect to a stub path. Internally, this should wait until a connectable
// Shill-backed service is created.
Connect(cellular_utils::GenerateStubCellularServicePath(kTestIccid));
// Now, Create a shill backed service for the same network.
ShillManagerClient::Get()->GetTestInterface()->SetInteractiveDelay(
base::Seconds(200));
AddNonConnectableESimService();
SetCellularServiceConnectable();
// Verify that connection timesout properly even when network path
// transitioned.
AdvanceClock(kCellularConnectTimeout);
EXPECT_EQ(NetworkConnectionHandler::kErrorConnectTimeout,
GetResultAndReset());
}
TEST_F(NetworkConnectionHandlerImplTest, PolicyConnectOverride) {
const base::TimeDelta kConectDelay = base::Seconds(1);
Init();
std::string wifi0_service_path = ConfigureService(kConfigWifi0Connectable);
ShillManagerClient::Get()->GetTestInterface()->SetInteractiveDelay(
kConectDelay);
Connect(wifi0_service_path);
TriggerPolicyAutoConnectOverrideRequest(wifi0_service_path);
AdvanceClock(kConectDelay);
EXPECT_EQ(NetworkConnectionHandler::kErrorConnectCanceled,
GetResultAndReset());
}
} // namespace ash
|