Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include <base/logging.h> |
| 6 | #include <chromeos/dbus/service_constants.h> |
| 7 | #include <gtest/gtest.h> |
| 8 | #include <string> |
| 9 | |
| 10 | #include "update_engine/connection_manager.h" |
| 11 | #include "update_engine/mock_dbus_interface.h" |
| 12 | #include "update_engine/mock_system_state.h" |
| 13 | |
| 14 | using std::set; |
| 15 | using std::string; |
| 16 | using testing::_; |
| 17 | using testing::AnyNumber; |
| 18 | using testing::Return; |
| 19 | using testing::SetArgumentPointee; |
| 20 | using testing::StrEq; |
| 21 | |
| 22 | namespace chromeos_update_engine { |
| 23 | |
| 24 | class ConnectionManagerTest : public ::testing::Test { |
| 25 | public: |
| 26 | ConnectionManagerTest() |
| 27 | : kMockFlimFlamManagerProxy_(NULL), |
| 28 | kMockFlimFlamServiceProxy_(NULL), |
| 29 | kServicePath_(NULL), |
| 30 | cmut_(&mock_system_state_) { |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 31 | mock_system_state_.set_connection_manager(&cmut_); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | protected: |
| 35 | void SetupMocks(const char* service_path); |
| 36 | void SetManagerReply(gconstpointer value, const GType& type); |
Alex Deymo | 1c4e638 | 2013-07-15 12:09:51 -0700 | [diff] [blame] | 37 | |
| 38 | // Sets the |service_type| Type and the |physical_technology| |
| 39 | // PhysicalTechnology properties in the mocked service. If a NULL |
| 40 | // |physical_technology| is passed, the property is not set (not present). |
| 41 | void SetServiceReply(const char* service_type, |
| 42 | const char* physical_technology); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 43 | void TestWithServiceType( |
Alex Deymo | 1c4e638 | 2013-07-15 12:09:51 -0700 | [diff] [blame] | 44 | const char* service_type, |
| 45 | const char* physical_technology, |
| 46 | NetworkConnectionType expected_type); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 47 | |
| 48 | static const char* kGetPropertiesMethod; |
| 49 | DBusGProxy* kMockFlimFlamManagerProxy_; |
| 50 | DBusGProxy* kMockFlimFlamServiceProxy_; |
| 51 | DBusGConnection* kMockSystemBus_; |
| 52 | const char* kServicePath_; |
| 53 | MockDbusGlib dbus_iface_; |
| 54 | ConnectionManager cmut_; // ConnectionManager under test. |
| 55 | MockSystemState mock_system_state_; |
| 56 | }; |
| 57 | |
| 58 | // static |
| 59 | const char* ConnectionManagerTest::kGetPropertiesMethod = "GetProperties"; |
| 60 | |
| 61 | void ConnectionManagerTest::SetupMocks(const char* service_path) { |
| 62 | int number = 1; |
| 63 | kMockSystemBus_ = reinterpret_cast<DBusGConnection*>(number++); |
| 64 | kMockFlimFlamManagerProxy_ = reinterpret_cast<DBusGProxy*>(number++); |
| 65 | kMockFlimFlamServiceProxy_ = reinterpret_cast<DBusGProxy*>(number++); |
| 66 | ASSERT_NE(kMockSystemBus_, reinterpret_cast<DBusGConnection*>(NULL)); |
| 67 | |
| 68 | kServicePath_ = service_path; |
| 69 | |
| 70 | ON_CALL(dbus_iface_, BusGet(DBUS_BUS_SYSTEM, _)) |
| 71 | .WillByDefault(Return(kMockSystemBus_)); |
| 72 | EXPECT_CALL(dbus_iface_, BusGet(DBUS_BUS_SYSTEM, _)) |
| 73 | .Times(AnyNumber()); |
| 74 | } |
| 75 | |
| 76 | void ConnectionManagerTest::SetManagerReply(gconstpointer reply_value, |
| 77 | const GType& reply_type) { |
| 78 | // Initialize return value for D-Bus call to Manager object. |
| 79 | // TODO (jaysri): Free the objects allocated here. |
| 80 | GHashTable* manager_hash_table = g_hash_table_new(g_str_hash, g_str_equal); |
| 81 | |
| 82 | GArray* array = g_array_new(FALSE, FALSE, sizeof(const char*)); |
| 83 | ASSERT_TRUE(array != NULL); |
| 84 | |
| 85 | EXPECT_EQ(array, g_array_append_val(array, reply_value)); |
| 86 | GValue* array_as_value = g_new0(GValue, 1); |
| 87 | EXPECT_EQ(array_as_value, g_value_init(array_as_value, reply_type)); |
| 88 | g_value_take_boxed(array_as_value, array); |
| 89 | g_hash_table_insert(manager_hash_table, |
| 90 | const_cast<char*>("Services"), |
| 91 | array_as_value); |
| 92 | |
| 93 | // Plumb return value into mock object. |
| 94 | EXPECT_CALL(dbus_iface_, ProxyCall(kMockFlimFlamManagerProxy_, |
| 95 | StrEq(kGetPropertiesMethod), |
| 96 | _, |
| 97 | G_TYPE_INVALID, |
| 98 | dbus_g_type_get_map("GHashTable", |
| 99 | G_TYPE_STRING, |
| 100 | G_TYPE_VALUE), |
| 101 | _, |
| 102 | G_TYPE_INVALID)) |
| 103 | .WillOnce(DoAll(SetArgumentPointee<5>(manager_hash_table), Return(TRUE))); |
| 104 | |
| 105 | // Set other expectations. |
| 106 | EXPECT_CALL(dbus_iface_, |
| 107 | ProxyNewForNameOwner(kMockSystemBus_, |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 108 | StrEq(shill::kFlimflamServiceName), |
| 109 | StrEq(shill::kFlimflamServicePath), |
| 110 | StrEq(shill::kFlimflamManagerInterface), |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 111 | _)) |
| 112 | .WillOnce(Return(kMockFlimFlamManagerProxy_)); |
| 113 | EXPECT_CALL(dbus_iface_, ProxyUnref(kMockFlimFlamManagerProxy_)); |
| 114 | EXPECT_CALL(dbus_iface_, BusGet(DBUS_BUS_SYSTEM, _)) |
| 115 | .RetiresOnSaturation(); |
| 116 | } |
| 117 | |
Alex Deymo | 1c4e638 | 2013-07-15 12:09:51 -0700 | [diff] [blame] | 118 | void ConnectionManagerTest::SetServiceReply(const char* service_type, |
| 119 | const char* physical_technology) { |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 120 | // Initialize return value for D-Bus call to Service object. |
| 121 | // TODO (jaysri): Free the objects allocated here. |
| 122 | GHashTable* service_hash_table = g_hash_table_new(g_str_hash, g_str_equal); |
| 123 | |
| 124 | GValue* service_type_value = g_new0(GValue, 1); |
| 125 | EXPECT_EQ(service_type_value, |
| 126 | g_value_init(service_type_value, G_TYPE_STRING)); |
| 127 | g_value_set_static_string(service_type_value, service_type); |
| 128 | |
| 129 | g_hash_table_insert(service_hash_table, |
| 130 | const_cast<char*>("Type"), |
| 131 | service_type_value); |
| 132 | |
Alex Deymo | 1c4e638 | 2013-07-15 12:09:51 -0700 | [diff] [blame] | 133 | if (physical_technology != NULL) { |
| 134 | GValue* physical_technology_value = g_new0(GValue, 1); |
| 135 | EXPECT_EQ(physical_technology_value, |
| 136 | g_value_init(physical_technology_value, G_TYPE_STRING)); |
| 137 | g_value_set_static_string(physical_technology_value, physical_technology); |
| 138 | |
| 139 | g_hash_table_insert(service_hash_table, |
| 140 | const_cast<char*>("PhysicalTechnology"), |
| 141 | physical_technology_value); |
| 142 | } |
| 143 | |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 144 | // Plumb return value into mock object. |
| 145 | EXPECT_CALL(dbus_iface_, ProxyCall(kMockFlimFlamServiceProxy_, |
| 146 | StrEq(kGetPropertiesMethod), |
| 147 | _, |
| 148 | G_TYPE_INVALID, |
| 149 | dbus_g_type_get_map("GHashTable", |
| 150 | G_TYPE_STRING, |
| 151 | G_TYPE_VALUE), |
| 152 | _, |
| 153 | G_TYPE_INVALID)) |
| 154 | .WillOnce(DoAll(SetArgumentPointee<5>(service_hash_table), Return(TRUE))); |
| 155 | |
| 156 | // Set other expectations. |
| 157 | EXPECT_CALL(dbus_iface_, |
| 158 | ProxyNewForNameOwner(kMockSystemBus_, |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 159 | StrEq(shill::kFlimflamServiceName), |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 160 | StrEq(kServicePath_), |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 161 | StrEq(shill::kFlimflamServiceInterface), |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 162 | _)) |
| 163 | .WillOnce(Return(kMockFlimFlamServiceProxy_)); |
| 164 | EXPECT_CALL(dbus_iface_, ProxyUnref(kMockFlimFlamServiceProxy_)); |
| 165 | EXPECT_CALL(dbus_iface_, BusGet(DBUS_BUS_SYSTEM, _)) |
| 166 | .RetiresOnSaturation(); |
| 167 | } |
| 168 | |
| 169 | void ConnectionManagerTest::TestWithServiceType( |
| 170 | const char* service_type, |
Alex Deymo | 1c4e638 | 2013-07-15 12:09:51 -0700 | [diff] [blame] | 171 | const char* physical_technology, |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 172 | NetworkConnectionType expected_type) { |
| 173 | |
| 174 | SetupMocks("/service/guest-network"); |
| 175 | SetManagerReply(kServicePath_, DBUS_TYPE_G_OBJECT_PATH_ARRAY); |
Alex Deymo | 1c4e638 | 2013-07-15 12:09:51 -0700 | [diff] [blame] | 176 | SetServiceReply(service_type, physical_technology); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 177 | |
| 178 | NetworkConnectionType type; |
| 179 | EXPECT_TRUE(cmut_.GetConnectionType(&dbus_iface_, &type)); |
| 180 | EXPECT_EQ(expected_type, type); |
| 181 | } |
| 182 | |
| 183 | TEST_F(ConnectionManagerTest, SimpleTest) { |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 184 | TestWithServiceType(shill::kTypeEthernet, NULL, kNetEthernet); |
| 185 | TestWithServiceType(shill::kTypeWifi, NULL, kNetWifi); |
| 186 | TestWithServiceType(shill::kTypeWimax, NULL, kNetWimax); |
| 187 | TestWithServiceType(shill::kTypeBluetooth, NULL, kNetBluetooth); |
| 188 | TestWithServiceType(shill::kTypeCellular, NULL, kNetCellular); |
Alex Deymo | 1c4e638 | 2013-07-15 12:09:51 -0700 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | TEST_F(ConnectionManagerTest, PhysicalTechnologyTest) { |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 192 | TestWithServiceType(shill::kTypeVPN, NULL, kNetUnknown); |
| 193 | TestWithServiceType(shill::kTypeVPN, shill::kTypeVPN, kNetUnknown); |
| 194 | TestWithServiceType(shill::kTypeVPN, shill::kTypeWifi, kNetWifi); |
| 195 | TestWithServiceType(shill::kTypeVPN, shill::kTypeWimax, kNetWimax); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | TEST_F(ConnectionManagerTest, UnknownTest) { |
Alex Deymo | 1c4e638 | 2013-07-15 12:09:51 -0700 | [diff] [blame] | 199 | TestWithServiceType("foo", NULL, kNetUnknown); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | TEST_F(ConnectionManagerTest, AllowUpdatesOverEthernetTest) { |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 203 | EXPECT_CALL(mock_system_state_, device_policy()).Times(0); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 204 | |
| 205 | // Updates over Ethernet are allowed even if there's no policy. |
| 206 | EXPECT_TRUE(cmut_.IsUpdateAllowedOver(kNetEthernet)); |
| 207 | } |
| 208 | |
| 209 | TEST_F(ConnectionManagerTest, AllowUpdatesOverWifiTest) { |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 210 | EXPECT_CALL(mock_system_state_, device_policy()).Times(0); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 211 | EXPECT_TRUE(cmut_.IsUpdateAllowedOver(kNetWifi)); |
| 212 | } |
| 213 | |
| 214 | TEST_F(ConnectionManagerTest, AllowUpdatesOverWimaxTest) { |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 215 | EXPECT_CALL(mock_system_state_, device_policy()).Times(0); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 216 | EXPECT_TRUE(cmut_.IsUpdateAllowedOver(kNetWimax)); |
| 217 | } |
| 218 | |
| 219 | TEST_F(ConnectionManagerTest, BlockUpdatesOverBluetoothTest) { |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 220 | EXPECT_CALL(mock_system_state_, device_policy()).Times(0); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 221 | EXPECT_FALSE(cmut_.IsUpdateAllowedOver(kNetBluetooth)); |
| 222 | } |
| 223 | |
| 224 | TEST_F(ConnectionManagerTest, AllowUpdatesOnlyOver3GPerPolicyTest) { |
| 225 | policy::MockDevicePolicy allow_3g_policy; |
| 226 | |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 227 | EXPECT_CALL(mock_system_state_, device_policy()) |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 228 | .Times(1) |
| 229 | .WillOnce(Return(&allow_3g_policy)); |
| 230 | |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 231 | // This test tests cellular (3G) being the only connection type being allowed. |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 232 | set<string> allowed_set; |
| 233 | allowed_set.insert(cmut_.StringForConnectionType(kNetCellular)); |
| 234 | |
| 235 | EXPECT_CALL(allow_3g_policy, GetAllowedConnectionTypesForUpdate(_)) |
| 236 | .Times(1) |
| 237 | .WillOnce(DoAll(SetArgumentPointee<0>(allowed_set), Return(true))); |
| 238 | |
| 239 | EXPECT_TRUE(cmut_.IsUpdateAllowedOver(kNetCellular)); |
| 240 | } |
| 241 | |
| 242 | TEST_F(ConnectionManagerTest, AllowUpdatesOver3GAndOtherTypesPerPolicyTest) { |
| 243 | policy::MockDevicePolicy allow_3g_policy; |
| 244 | |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 245 | EXPECT_CALL(mock_system_state_, device_policy()) |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 246 | .Times(1) |
| 247 | .WillOnce(Return(&allow_3g_policy)); |
| 248 | |
| 249 | // This test tests multiple connection types being allowed, with |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 250 | // 3G one among them. Only Cellular is currently enforced by the policy |
| 251 | // setting, the others are ignored (see Bluetooth for example). |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 252 | set<string> allowed_set; |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 253 | allowed_set.insert(cmut_.StringForConnectionType(kNetCellular)); |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 254 | allowed_set.insert(cmut_.StringForConnectionType(kNetBluetooth)); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 255 | |
| 256 | EXPECT_CALL(allow_3g_policy, GetAllowedConnectionTypesForUpdate(_)) |
| 257 | .Times(1) |
| 258 | .WillOnce(DoAll(SetArgumentPointee<0>(allowed_set), Return(true))); |
| 259 | |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 260 | EXPECT_TRUE(cmut_.IsUpdateAllowedOver(kNetEthernet)); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 261 | EXPECT_TRUE(cmut_.IsUpdateAllowedOver(kNetCellular)); |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 262 | EXPECT_TRUE(cmut_.IsUpdateAllowedOver(kNetWifi)); |
| 263 | EXPECT_TRUE(cmut_.IsUpdateAllowedOver(kNetWimax)); |
| 264 | EXPECT_FALSE(cmut_.IsUpdateAllowedOver(kNetBluetooth)); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 267 | TEST_F(ConnectionManagerTest, BlockUpdatesOverCellularByDefaultTest) { |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 268 | EXPECT_CALL(mock_system_state_, device_policy()).Times(1); |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 269 | EXPECT_FALSE(cmut_.IsUpdateAllowedOver(kNetCellular)); |
| 270 | } |
| 271 | |
| 272 | TEST_F(ConnectionManagerTest, BlockUpdatesOver3GPerPolicyTest) { |
| 273 | policy::MockDevicePolicy block_3g_policy; |
| 274 | |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 275 | EXPECT_CALL(mock_system_state_, device_policy()) |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 276 | .Times(1) |
| 277 | .WillOnce(Return(&block_3g_policy)); |
| 278 | |
| 279 | // Test that updates for 3G are blocked while updates are allowed |
| 280 | // over several other types. |
| 281 | set<string> allowed_set; |
| 282 | allowed_set.insert(cmut_.StringForConnectionType(kNetEthernet)); |
| 283 | allowed_set.insert(cmut_.StringForConnectionType(kNetWifi)); |
| 284 | allowed_set.insert(cmut_.StringForConnectionType(kNetWimax)); |
| 285 | |
| 286 | EXPECT_CALL(block_3g_policy, GetAllowedConnectionTypesForUpdate(_)) |
| 287 | .Times(1) |
| 288 | .WillOnce(DoAll(SetArgumentPointee<0>(allowed_set), Return(true))); |
| 289 | |
| 290 | EXPECT_FALSE(cmut_.IsUpdateAllowedOver(kNetCellular)); |
| 291 | } |
| 292 | |
| 293 | TEST_F(ConnectionManagerTest, BlockUpdatesOver3GIfErrorInPolicyFetchTest) { |
| 294 | policy::MockDevicePolicy allow_3g_policy; |
| 295 | |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 296 | EXPECT_CALL(mock_system_state_, device_policy()) |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 297 | .Times(1) |
| 298 | .WillOnce(Return(&allow_3g_policy)); |
| 299 | |
| 300 | set<string> allowed_set; |
| 301 | allowed_set.insert(cmut_.StringForConnectionType(kNetCellular)); |
| 302 | |
| 303 | // Return false for GetAllowedConnectionTypesForUpdate and see |
| 304 | // that updates are still blocked for 3G despite the value being in |
| 305 | // the string set above. |
| 306 | EXPECT_CALL(allow_3g_policy, GetAllowedConnectionTypesForUpdate(_)) |
| 307 | .Times(1) |
| 308 | .WillOnce(DoAll(SetArgumentPointee<0>(allowed_set), Return(false))); |
| 309 | |
| 310 | EXPECT_FALSE(cmut_.IsUpdateAllowedOver(kNetCellular)); |
| 311 | } |
| 312 | |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 313 | TEST_F(ConnectionManagerTest, UseUserPrefForUpdatesOverCellularIfNoPolicyTest) { |
| 314 | policy::MockDevicePolicy no_policy; |
| 315 | testing::NiceMock<PrefsMock>* prefs = mock_system_state_.mock_prefs(); |
| 316 | |
| 317 | EXPECT_CALL(mock_system_state_, device_policy()) |
| 318 | .Times(3) |
| 319 | .WillRepeatedly(Return(&no_policy)); |
| 320 | |
| 321 | // No setting enforced by the device policy, user prefs should be used. |
| 322 | EXPECT_CALL(no_policy, GetAllowedConnectionTypesForUpdate(_)) |
| 323 | .Times(3) |
| 324 | .WillRepeatedly(Return(false)); |
| 325 | |
| 326 | // No user pref: block. |
| 327 | EXPECT_CALL(*prefs, Exists(kPrefsUpdateOverCellularPermission)) |
| 328 | .Times(1) |
| 329 | .WillOnce(Return(false)); |
| 330 | EXPECT_FALSE(cmut_.IsUpdateAllowedOver(kNetCellular)); |
| 331 | |
| 332 | // Allow per user pref. |
| 333 | EXPECT_CALL(*prefs, Exists(kPrefsUpdateOverCellularPermission)) |
| 334 | .Times(1) |
| 335 | .WillOnce(Return(true)); |
Alex Deymo | efb7c4c | 2013-07-09 14:34:00 -0700 | [diff] [blame] | 336 | EXPECT_CALL(*prefs, GetBoolean(kPrefsUpdateOverCellularPermission, _)) |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 337 | .Times(1) |
Alex Deymo | efb7c4c | 2013-07-09 14:34:00 -0700 | [diff] [blame] | 338 | .WillOnce(DoAll(SetArgumentPointee<1>(true), Return(true))); |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 339 | EXPECT_TRUE(cmut_.IsUpdateAllowedOver(kNetCellular)); |
| 340 | |
| 341 | // Block per user pref. |
| 342 | EXPECT_CALL(*prefs, Exists(kPrefsUpdateOverCellularPermission)) |
| 343 | .Times(1) |
| 344 | .WillOnce(Return(true)); |
Alex Deymo | efb7c4c | 2013-07-09 14:34:00 -0700 | [diff] [blame] | 345 | EXPECT_CALL(*prefs, GetBoolean(kPrefsUpdateOverCellularPermission, _)) |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 346 | .Times(1) |
Alex Deymo | efb7c4c | 2013-07-09 14:34:00 -0700 | [diff] [blame] | 347 | .WillOnce(DoAll(SetArgumentPointee<1>(false), Return(true))); |
Alex Deymo | f4867c4 | 2013-06-28 14:41:39 -0700 | [diff] [blame] | 348 | EXPECT_FALSE(cmut_.IsUpdateAllowedOver(kNetCellular)); |
| 349 | } |
| 350 | |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 351 | TEST_F(ConnectionManagerTest, StringForConnectionTypeTest) { |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 352 | EXPECT_STREQ(shill::kTypeEthernet, |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 353 | cmut_.StringForConnectionType(kNetEthernet)); |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 354 | EXPECT_STREQ(shill::kTypeWifi, |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 355 | cmut_.StringForConnectionType(kNetWifi)); |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 356 | EXPECT_STREQ(shill::kTypeWimax, |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 357 | cmut_.StringForConnectionType(kNetWimax)); |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 358 | EXPECT_STREQ(shill::kTypeBluetooth, |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 359 | cmut_.StringForConnectionType(kNetBluetooth)); |
Ben Chan | c6007e4 | 2013-09-19 23:49:22 -0700 | [diff] [blame] | 360 | EXPECT_STREQ(shill::kTypeCellular, |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 361 | cmut_.StringForConnectionType(kNetCellular)); |
| 362 | EXPECT_STREQ("Unknown", |
| 363 | cmut_.StringForConnectionType(kNetUnknown)); |
| 364 | EXPECT_STREQ("Unknown", |
| 365 | cmut_.StringForConnectionType( |
| 366 | static_cast<NetworkConnectionType>(999999))); |
| 367 | } |
| 368 | |
| 369 | TEST_F(ConnectionManagerTest, MalformedServiceList) { |
| 370 | SetupMocks("/service/guest-network"); |
| 371 | string service_name(kServicePath_); |
| 372 | SetManagerReply(&service_name, DBUS_TYPE_G_STRING_ARRAY); |
| 373 | |
| 374 | NetworkConnectionType type; |
| 375 | EXPECT_FALSE(cmut_.GetConnectionType(&dbus_iface_, &type)); |
| 376 | } |
| 377 | |
| 378 | } // namespace chromeos_update_engine |