diff options
author | fqj <fqj@chromium.org> | 2015-11-13 12:12:59 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-13 20:14:14 +0000 |
commit | fee5067aaad72d7b0525d23d5f6eb2500831feab (patch) | |
tree | ddcfce303fca05ca87b182c857723e10d1847ae6 /chromeos/network/shill_property_handler_unittest.cc | |
parent | ca1054043bbb319a687bf7214c8d206de53a07c1 (diff) | |
download | chromium_src-fee5067aaad72d7b0525d23d5f6eb2500831feab.zip chromium_src-fee5067aaad72d7b0525d23d5f6eb2500831feab.tar.gz chromium_src-fee5067aaad72d7b0525d23d5f6eb2500831feab.tar.bz2 |
Handle prohibited technologies in device policy ONC
This commit changes prohibited technologies from user policy ONC to device
policy ONC, and then handles it.
The device policy ONC will only take effect after user session starts.
After use has logged in, the prohibited technologies in ONC will take effect
and disable and prohibit specific technologies.
BUG=426390
Review URL: https://codereview.chromium.org/1431563005
Cr-Commit-Position: refs/heads/master@{#359602}
Diffstat (limited to 'chromeos/network/shill_property_handler_unittest.cc')
-rw-r--r-- | chromeos/network/shill_property_handler_unittest.cc | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/chromeos/network/shill_property_handler_unittest.cc b/chromeos/network/shill_property_handler_unittest.cc index 3f705ab..7593194 100644 --- a/chromeos/network/shill_property_handler_unittest.cc +++ b/chromeos/network/shill_property_handler_unittest.cc @@ -501,4 +501,34 @@ TEST_F(ShillPropertyHandlerTest, ShillPropertyHandlerServiceList) { shill::kServiceCompleteListProperty)[kTestServicePath2]); } +TEST_F(ShillPropertyHandlerTest, ProhibitedTechnologies) { + std::vector<std::string> prohibited_technologies; + prohibited_technologies.push_back(shill::kTypeEthernet); + EXPECT_TRUE( + shill_property_handler_->IsTechnologyEnabled(shill::kTypeEthernet)); + shill_property_handler_->SetProhibitedTechnologies( + prohibited_technologies, network_handler::ErrorCallback()); + message_loop_.RunUntilIdle(); + // Disabled + EXPECT_FALSE( + shill_property_handler_->IsTechnologyEnabled(shill::kTypeEthernet)); + + // Can not enable it back + shill_property_handler_->SetTechnologyEnabled( + shill::kTypeEthernet, true, network_handler::ErrorCallback()); + message_loop_.RunUntilIdle(); + EXPECT_FALSE( + shill_property_handler_->IsTechnologyEnabled(shill::kTypeEthernet)); + + // Can enable it back after policy changes + prohibited_technologies.clear(); + shill_property_handler_->SetProhibitedTechnologies( + prohibited_technologies, network_handler::ErrorCallback()); + shill_property_handler_->SetTechnologyEnabled( + shill::kTypeEthernet, true, network_handler::ErrorCallback()); + message_loop_.RunUntilIdle(); + EXPECT_TRUE( + shill_property_handler_->IsTechnologyEnabled(shill::kTypeEthernet)); +} + } // namespace chromeos |