blob: 47dc5d22971ed418da8e3618b48849039fd73b89 [file] [log] [blame]
// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/manager.h"
#include <set>
#include <glib.h>
#include <base/callback_old.h>
#include <base/logging.h>
#include <base/memory/ref_counted.h>
#include <base/message_loop.h>
#include <base/stl_util-inl.h>
#include <chromeos/dbus/service_constants.h>
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include "shill/mock_control.h"
#include "shill/mock_device.h"
#include "shill/mock_glib.h"
#include "shill/mock_profile.h"
#include "shill/mock_service.h"
#include "shill/property_store_unittest.h"
#include "shill/shill_event.h"
using std::map;
using std::set;
using std::string;
using std::vector;
namespace shill {
using ::testing::Test;
using ::testing::_;
using ::testing::NiceMock;
using ::testing::Return;
class ManagerTest : public PropertyStoreTest {
public:
static const char kMockServiceName[];
ManagerTest()
: factory_(this),
mock_device_(new NiceMock<MockDevice>(&control_interface_,
&dispatcher_,
&manager_,
"null0",
-1)),
mock_device2_(new NiceMock<MockDevice>(&control_interface_,
&dispatcher_,
&manager_,
"null1",
-1)) {
}
virtual ~ManagerTest() {}
bool IsDeviceRegistered(const DeviceRefPtr &device, Device::Technology tech) {
vector<DeviceRefPtr> devices;
manager_.FilterByTechnology(tech, &devices);
return (devices.size() == 1 && devices[0].get() == device.get());
}
protected:
ScopedRunnableMethodFactory<ManagerTest> factory_;
scoped_refptr<MockDevice> mock_device_;
scoped_refptr<MockDevice> mock_device2_;
};
const char ManagerTest::kMockServiceName[] = "mock-service";
TEST_F(ManagerTest, Contains) {
EXPECT_TRUE(manager_.store()->Contains(flimflam::kStateProperty));
EXPECT_FALSE(manager_.store()->Contains(""));
}
TEST_F(ManagerTest, DeviceRegistration) {
ON_CALL(*mock_device_.get(), TechnologyIs(Device::kEthernet))
.WillByDefault(Return(true));
ON_CALL(*mock_device2_.get(), TechnologyIs(Device::kWifi))
.WillByDefault(Return(true));
manager_.RegisterDevice(mock_device_.get());
manager_.RegisterDevice(mock_device2_.get());
EXPECT_TRUE(IsDeviceRegistered(mock_device_, Device::kEthernet));
EXPECT_TRUE(IsDeviceRegistered(mock_device2_, Device::kWifi));
}
TEST_F(ManagerTest, DeviceDeregistration) {
ON_CALL(*mock_device_.get(), TechnologyIs(Device::kEthernet))
.WillByDefault(Return(true));
ON_CALL(*mock_device2_.get(), TechnologyIs(Device::kWifi))
.WillByDefault(Return(true));
manager_.RegisterDevice(mock_device_.get());
manager_.RegisterDevice(mock_device2_.get());
ASSERT_TRUE(IsDeviceRegistered(mock_device_, Device::kEthernet));
ASSERT_TRUE(IsDeviceRegistered(mock_device2_, Device::kWifi));
manager_.DeregisterDevice(mock_device_.get());
EXPECT_FALSE(IsDeviceRegistered(mock_device_, Device::kEthernet));
manager_.DeregisterDevice(mock_device2_.get());
EXPECT_FALSE(IsDeviceRegistered(mock_device2_, Device::kWifi));
}
TEST_F(ManagerTest, ServiceRegistration) {
const char kService1[] = "service1";
const char kService2[] = "wifi_service2";
scoped_refptr<MockService> mock_service(
new NiceMock<MockService>(&control_interface_,
&dispatcher_,
&manager_,
kService1));
EXPECT_CALL(*mock_service.get(), GetRpcIdentifier())
.WillRepeatedly(Return(kService1));
scoped_refptr<MockService> mock_service2(
new NiceMock<MockService>(&control_interface_,
&dispatcher_,
&manager_,
kService2));
EXPECT_CALL(*mock_service2.get(), GetRpcIdentifier())
.WillRepeatedly(Return(kService2));
manager_.RegisterService(mock_service);
manager_.RegisterService(mock_service2);
vector<string> rpc_ids = manager_.EnumerateAvailableServices();
set<string> ids(rpc_ids.begin(), rpc_ids.end());
EXPECT_EQ(ids.count(mock_service->GetRpcIdentifier()), 1);
EXPECT_EQ(ids.count(mock_service2->GetRpcIdentifier()), 1);
EXPECT_TRUE(manager_.FindService(kService1).get() != NULL);
EXPECT_TRUE(manager_.FindService(kService2).get() != NULL);
}
TEST_F(ManagerTest, GetProperties) {
map<string, ::DBus::Variant> props;
Error error(Error::kInvalidProperty, "");
{
::DBus::Error dbus_error;
string expected("portal_list");
manager_.store()->SetStringProperty(flimflam::kCheckPortalListProperty,
expected,
&error);
DBusAdaptor::GetProperties(manager_.store(), &props, &dbus_error);
ASSERT_FALSE(props.find(flimflam::kCheckPortalListProperty) == props.end());
EXPECT_EQ(props[flimflam::kCheckPortalListProperty].reader().get_string(),
expected);
}
{
::DBus::Error dbus_error;
bool expected = true;
manager_.store()->SetBoolProperty(flimflam::kOfflineModeProperty,
expected,
&error);
DBusAdaptor::GetProperties(manager_.store(), &props, &dbus_error);
ASSERT_FALSE(props.find(flimflam::kOfflineModeProperty) == props.end());
EXPECT_EQ(props[flimflam::kOfflineModeProperty].reader().get_bool(),
expected);
}
}
TEST_F(ManagerTest, GetDevicesProperty) {
manager_.RegisterDevice(mock_device_.get());
manager_.RegisterDevice(mock_device2_.get());
{
map<string, ::DBus::Variant> props;
::DBus::Error dbus_error;
bool expected = true;
DBusAdaptor::GetProperties(manager_.store(), &props, &dbus_error);
ASSERT_FALSE(props.find(flimflam::kDevicesProperty) == props.end());
Strings devices =
props[flimflam::kDevicesProperty].operator vector<string>();
EXPECT_EQ(2, devices.size());
}
}
TEST_F(ManagerTest, MoveService) {
// I want to ensure that the Profiles are managing this Service object
// lifetime properly, so I can't hold a ref to it here.
ProfileRefPtr profile(
new MockProfile(&control_interface_, &glib_, &manager_, ""));
{
ServiceRefPtr s2(
new MockService(&control_interface_,
&dispatcher_,
&manager_,
kMockServiceName));
profile->AdoptService(s2);
s2->set_profile(profile);
}
// Now, move the |service| to another profile.
manager_.MoveToActiveProfile(profile, profile->FindService(kMockServiceName));
// Force destruction of the original Profile, to ensure that the Service
// is kept alive and populated with data.
profile = NULL;
{
ServiceRefPtr serv(manager_.ActiveProfile()->FindService(kMockServiceName));
ASSERT_TRUE(serv.get() != NULL);
Error error(Error::kInvalidProperty, "");
::DBus::Error dbus_error;
map<string, ::DBus::Variant> props;
bool expected = true;
serv->store()->SetBoolProperty(flimflam::kAutoConnectProperty,
expected,
&error);
DBusAdaptor::GetProperties(serv->store(), &props, &dbus_error);
ASSERT_TRUE(ContainsKey(props, flimflam::kAutoConnectProperty));
EXPECT_EQ(props[flimflam::kAutoConnectProperty].reader().get_bool(),
expected);
}
}
TEST_F(ManagerTest, Dispatch) {
{
::DBus::Error error;
EXPECT_TRUE(DBusAdaptor::DispatchOnType(manager_.store(),
flimflam::kOfflineModeProperty,
PropertyStoreTest::kBoolV,
&error));
}
{
::DBus::Error error;
EXPECT_TRUE(DBusAdaptor::DispatchOnType(manager_.store(),
flimflam::kCountryProperty,
PropertyStoreTest::kStringV,
&error));
}
// Attempt to write with value of wrong type should return InvalidArgs.
{
::DBus::Error error;
EXPECT_FALSE(DBusAdaptor::DispatchOnType(manager_.store(),
flimflam::kCountryProperty,
PropertyStoreTest::kBoolV,
&error));
EXPECT_EQ(invalid_args_, error.name());
}
{
::DBus::Error error;
EXPECT_FALSE(DBusAdaptor::DispatchOnType(manager_.store(),
flimflam::kOfflineModeProperty,
PropertyStoreTest::kStringV,
&error));
EXPECT_EQ(invalid_args_, error.name());
}
// Attempt to write R/O property should return InvalidArgs.
{
::DBus::Error error;
EXPECT_FALSE(DBusAdaptor::DispatchOnType(
manager_.store(),
flimflam::kEnabledTechnologiesProperty,
PropertyStoreTest::kStringsV,
&error));
EXPECT_EQ(invalid_args_, error.name());
}
}
} // namespace shill