blob: 57a75aa2618ceafe604b68a7149b8c107f40e37f [file] [log] [blame]
mukesh agrawal9da07772013-05-15 14:15:17 -07001// 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#ifndef SHILL_MOCK_PPP_DEVICE_H_
6#define SHILL_MOCK_PPP_DEVICE_H_
7
8#include <gmock/gmock.h>
9
10#include "shill/ppp_device.h"
11
12namespace shill {
13
14class MockPPPDevice : public PPPDevice {
15 public:
16 MockPPPDevice(ControlInterface *control,
17 EventDispatcher *dispatcher,
18 Metrics *metrics,
19 Manager *manager,
20 const std::string &link_name,
21 int interface_index);
22 virtual ~MockPPPDevice();
23
24 MOCK_METHOD2(Stop,
25 void(Error *error, const EnabledStateChangedCallback &callback));
26 MOCK_METHOD1(UpdateIPConfig, void(const IPConfig::Properties &properties));
27 MOCK_METHOD0(DropConnection, void());
mukesh agrawalf407d592013-07-31 11:37:57 -070028 MOCK_METHOD1(SelectService, void(const ServiceRefPtr &service));
mukesh agrawal0381f9a2013-07-11 16:41:52 -070029 MOCK_METHOD1(SetServiceState, void(Service::ConnectState));
30 MOCK_METHOD1(SetServiceFailure, void(Service::ConnectFailure));
31 MOCK_METHOD1(SetServiceFailureSilent, void(Service::ConnectFailure));
mukesh agrawal9da07772013-05-15 14:15:17 -070032 MOCK_METHOD1(SetEnabled, void(bool));
mukesh agrawalf407d592013-07-31 11:37:57 -070033 MOCK_METHOD2(UpdateIPConfigFromPPP, void(
34 const std::map<std::string, std::string> &config,
35 bool blackhole_ipv6));
mukesh agrawal9da07772013-05-15 14:15:17 -070036
37 private:
38 DISALLOW_COPY_AND_ASSIGN(MockPPPDevice);
39};
40
41} // namespace shill
42
43#endif // SHILL_MOCK_PPP_DEVICE_H_