blob: ef0682a64865e74154fed296fe0095e458a302a2 [file] [log] [blame]
Chris Masoned7732e42011-05-20 11:08:56 -07001// Copyright (c) 2011 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#ifndef SHILL_MOCK_CONTROL_
6#define SHILL_MOCK_CONTROL_
7
Darin Petkove0a312e2011-07-20 13:45:28 -07008#include <base/basictypes.h>
Chris Masone95207da2011-06-29 16:50:49 -07009
Chris Masoned7732e42011-05-20 11:08:56 -070010#include "shill/control_interface.h"
11
12namespace shill {
Chris Masone95207da2011-06-29 16:50:49 -070013// An implementation of the Shill RPC-channel-interface-factory interface that
14// returns mocks.
Chris Masoned7732e42011-05-20 11:08:56 -070015class MockControl : public ControlInterface {
16 public:
Chris Masone95207da2011-06-29 16:50:49 -070017 MockControl();
18 virtual ~MockControl();
19
20 // Each of these can be called once. Ownership of the appropriate
21 // interface pointer is given up upon call.
Chris Masonec6c6c132011-06-30 11:29:52 -070022 virtual DeviceAdaptorInterface *CreateDeviceAdaptor(Device *device);
23 virtual IPConfigAdaptorInterface *CreateIPConfigAdaptor(IPConfig *config);
24 virtual ManagerAdaptorInterface *CreateManagerAdaptor(Manager *manager);
25 virtual ProfileAdaptorInterface *CreateProfileAdaptor(Profile *profile);
26 virtual ServiceAdaptorInterface *CreateServiceAdaptor(Service *service);
Chris Masone95207da2011-06-29 16:50:49 -070027
28 private:
29 DISALLOW_COPY_AND_ASSIGN(MockControl);
Chris Masoned7732e42011-05-20 11:08:56 -070030};
31
32} // namespace shill
33
34#endif // SHILL_MOCK_CONTROL_