blob: 242d6e9c70b90d6f3d454c8d43801eb6d691d05b [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/logging.h>
#include <base/stl_util-inl.h>
#include <chromeos/dbus/service_constants.h>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "shill/adaptor_interfaces.h"
#include "shill/error.h"
#include "shill/key_value_store.h"
#include "shill/mock_adaptors.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/mock_wifi.h"
#include "shill/property_store_unittest.h"
#include "shill/wifi_service.h"
using std::map;
using std::set;
using std::string;
using std::vector;
namespace shill {
using ::testing::_;
using ::testing::NiceMock;
using ::testing::Return;
using ::testing::Test;
class ManagerTest : public PropertyStoreTest {
public:
ManagerTest()
: mock_device_(new NiceMock<MockDevice>(control_interface(),
dispatcher(),
manager(),
"null0",
"addr0",
0)),
mock_device2_(new NiceMock<MockDevice>(control_interface(),
dispatcher(),
manager(),
"null2",
"addr2",
2)),
mock_device3_(new NiceMock<MockDevice>(control_interface(),
dispatcher(),
manager(),
"null3",
"addr3",
3)),
mock_wifi_(new NiceMock<MockWiFi>(control_interface(),
dispatcher(),
manager(),
"wifi0",
"addr4",
4))
{
}
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:
scoped_refptr<MockDevice> mock_device_;
scoped_refptr<MockDevice> mock_device2_;
scoped_refptr<MockDevice> mock_device3_;
scoped_refptr<MockWiFi> mock_wifi_;
};
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));
ON_CALL(*mock_device3_.get(), TechnologyIs(Device::kCellular))
.WillByDefault(Return(true));
manager()->RegisterDevice(mock_device_);
manager()->RegisterDevice(mock_device2_);
manager()->RegisterDevice(mock_device3_);
EXPECT_TRUE(IsDeviceRegistered(mock_device_, Device::kEthernet));
EXPECT_TRUE(IsDeviceRegistered(mock_device2_, Device::kWifi));
EXPECT_TRUE(IsDeviceRegistered(mock_device3_, Device::kCellular));
}
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));
EXPECT_CALL(*mock_device_.get(), Stop());
manager()->DeregisterDevice(mock_device_.get());
EXPECT_FALSE(IsDeviceRegistered(mock_device_, Device::kEthernet));
EXPECT_CALL(*mock_device2_.get(), Stop());
manager()->DeregisterDevice(mock_device2_.get());
EXPECT_FALSE(IsDeviceRegistered(mock_device2_, Device::kWifi));
}
TEST_F(ManagerTest, ServiceRegistration) {
// It's much easier and safer to use a real GLib for this test.
GLib glib;
Manager manager(control_interface(),
dispatcher(),
&glib,
run_path(),
storage_path(),
string());
scoped_refptr<MockService> mock_service(
new NiceMock<MockService>(control_interface(),
dispatcher(),
&manager));
scoped_refptr<MockService> mock_service2(
new NiceMock<MockService>(control_interface(),
dispatcher(),
&manager));
string service1_name(mock_service->UniqueName());
string service2_name(mock_service2->UniqueName());
EXPECT_CALL(*mock_service.get(), GetRpcIdentifier())
.WillRepeatedly(Return(service1_name));
EXPECT_CALL(*mock_service2.get(), GetRpcIdentifier())
.WillRepeatedly(Return(service2_name));
// TODO(quiche): make this EXPECT_CALL work (crosbug.com/20154)
// EXPECT_CALL(*dynamic_cast<ManagerMockAdaptor *>(manager.adaptor_.get()),
// EmitRpcIdentifierArrayChanged(flimflam::kServicesProperty, _));
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(2, ids.size());
EXPECT_TRUE(ContainsKey(ids, mock_service->GetRpcIdentifier()));
EXPECT_TRUE(ContainsKey(ids, mock_service2->GetRpcIdentifier()));
EXPECT_TRUE(manager.FindService(service1_name).get() != NULL);
EXPECT_TRUE(manager.FindService(service2_name).get() != NULL);
manager.Stop();
}
TEST_F(ManagerTest, GetProperties) {
map<string, ::DBus::Variant> props;
Error error(Error::kInvalidProperty, "");
{
::DBus::Error dbus_error;
string expected("portal_list");
manager()->mutable_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()->mutable_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) {
// It's much easier and safer to use a real GLib for this test.
GLib glib;
Manager manager(control_interface(),
dispatcher(),
&glib,
run_path(),
storage_path(),
string());
// 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(), &manager, ""));
string service_name;
{
scoped_refptr<MockService> s2(
new MockService(control_interface(),
dispatcher(),
&manager));
EXPECT_CALL(*s2.get(), Save(_)).WillOnce(Return(true));
profile->AdoptService(s2);
s2->set_profile(profile);
service_name = s2->UniqueName();
}
// Now, move the |service| to another profile.
ASSERT_TRUE(manager.MoveToActiveProfile(profile,
profile->FindService(service_name)));
// 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(service_name));
ASSERT_TRUE(serv.get() != NULL);
Error error(Error::kInvalidProperty, "");
::DBus::Error dbus_error;
map<string, ::DBus::Variant> props;
bool expected = true;
serv->mutable_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);
}
manager.Stop();
}
TEST_F(ManagerTest, Dispatch) {
{
::DBus::Error error;
EXPECT_TRUE(DBusAdaptor::DispatchOnType(manager()->mutable_store(),
flimflam::kOfflineModeProperty,
PropertyStoreTest::kBoolV,
&error));
}
{
::DBus::Error error;
EXPECT_TRUE(DBusAdaptor::DispatchOnType(manager()->mutable_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()->mutable_store(),
flimflam::kCountryProperty,
PropertyStoreTest::kBoolV,
&error));
EXPECT_EQ(invalid_args(), error.name());
}
{
::DBus::Error error;
EXPECT_FALSE(DBusAdaptor::DispatchOnType(manager()->mutable_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()->mutable_store(),
flimflam::kEnabledTechnologiesProperty,
PropertyStoreTest::kStringsV,
&error));
EXPECT_EQ(invalid_args(), error.name());
}
}
TEST_F(ManagerTest, RequestScan) {
{
Error error;
manager()->RegisterDevice(mock_device_.get());
manager()->RegisterDevice(mock_device2_.get());
EXPECT_CALL(*mock_device_, TechnologyIs(Device::kWifi))
.WillRepeatedly(Return(true));
EXPECT_CALL(*mock_device_, Scan(_));
EXPECT_CALL(*mock_device2_, TechnologyIs(Device::kWifi))
.WillRepeatedly(Return(false));
EXPECT_CALL(*mock_device2_, Scan(_)).Times(0);
manager()->RequestScan(flimflam::kTypeWifi, &error);
}
{
Error error;
manager()->RequestScan("bogus_device_type", &error);
EXPECT_EQ(Error::kInvalidArguments, error.type());
}
}
TEST_F(ManagerTest, GetWifiServiceNoDevice) {
KeyValueStore args;
Error e;
manager()->GetWifiService(args, &e);
EXPECT_EQ(Error::kInvalidArguments, e.type());
EXPECT_EQ("no wifi devices available", e.message());
}
TEST_F(ManagerTest, GetWifiService) {
KeyValueStore args;
Error e;
WiFiServiceRefPtr wifi_service;
manager()->RegisterDevice(mock_wifi_);
EXPECT_CALL(*mock_wifi_, GetService(_, _))
.WillRepeatedly(Return(wifi_service));
manager()->GetWifiService(args, &e);
}
} // namespace shill